| /trunk/main/offapi/com/sun/star/sdbc/ |
| H A D | XArray.idl | 49 reference to an SQL array. By default, an 53 is implemented using a SQL LOCATOR(array) internally. 59 the array designated by this 78 /** returns the SDBC type of the elements in the array designated 83 …a constant from the SDBC types that is the type code for the elements in the array designated by t… 91 /** retrieves the contents of the SQL array designated by this 97 If the base type of the array does not match a user-defined type 114 of the SQL array designated by this object. 117 if an error occurs while attempting to access the array. 124 /** returns an array containing a slice of the SQL array, beginning with the [all …]
|
| /trunk/main/oox/inc/oox/helper/ |
| H A D | helper.hxx | 41 #define STATIC_ARRAY_SIZE( array ) \ argument 42 (sizeof(array)/sizeof(*(array))) 46 #define STATIC_ARRAY_END( array ) \ argument 47 ((array)+STATIC_ARRAY_SIZE(array)) 51 #define STATIC_ARRAY_SELECT( array, index, def ) \ argument 52 …((static_cast<size_t>(index) < STATIC_ARRAY_SIZE(array)) ? ((array)[static_cast<size_t>(index)]) :…
|
| /trunk/main/udkapi/com/sun/star/script/ |
| H A D | ArrayWrapper.idl | 37 array with 0 or 1 based indices. UNO does not natively represent 39 themselves sequences (an array of arrays ). <p>Some languages ( example 40 BASIC ) can natively represent both Multi-Dimentional arrays and array of 43 Multi-Dimentional array or array of arrays. This structure allows a 44 preference for a Multi-Dimensional array representation to be specified.</p> 53 …ectly legal to use this structure with a single dimensioned array just to indicate the array index…
|
| /trunk/main/udkapi/com/sun/star/reflection/ |
| H A D | XArrayTypeDescription.idl | 38 Reflects a fixed-size array type. 45 /** Returns the element type of the array. 48 element type of the array 52 /** Returns the number of dimensions of the array. 55 dimension of the array 59 /** Returns dimensions of array (same length as getNumberOfDimensions()). 62 dimensions of array
|
| H A D | XIdlClass.idl | 116 /** If the reflected type is an array or sequence, then this method 121 reflection interface of the element type of an array or 181 /** If the reflected type is an array, then you get 182 a <type>XIdlArray</type> interface to modify instances of the array type. 184 If the reflected type is not an array, then a null-reference is returned. 187 inteface to modify array instances (or null-reference)
|
| H A D | XIdlArray.idl | 57 @param array 63 [inout] any array, 69 @param array 74 long getLen( [in] any array )
|
| /trunk/main/i18npool/source/localedata/ |
| H A D | filewriter.cxx | 64 void OFileWriter::writeFunction(const char *func, const char *count, const char *array) const in writeFunction() 68 fprintf(m_f, "\treturn (sal_Unicode**)%s;\n}\n", array); in writeFunction() 80 void OFileWriter::writeFunction(const char *func, const char *count, const char *array, const char … in writeFunction() argument 86 fprintf(m_f, "\treturn (sal_Unicode**)%s;\n}\n", array); in writeFunction() 100 …ter::writeFunction2(const char *func, const char *style, const char* attr, const char *array) const in writeFunction2() 105 fprintf(m_f, "\treturn %s;\n}\n", array); in writeFunction2() 117 …const char *func, const char *style, const char* levels, const char* attr, const char *array) const in writeFunction3() 123 fprintf(m_f, "\treturn %s;\n}\n", array); in writeFunction3()
|
| H A D | LocaleNode.hxx | 63 virtual void writeFunction(const char *func, const char *count, const char *array) const; 65 …virtual void writeFunction(const char *func, const char *count, const char *array, const char *fr… 67 …id writeFunction2(const char *func, const char *style, const char* attr, const char *array) const; 69 …onst char *func, const char *style, const char* levels, const char* attr, const char *array) const;
|
| /trunk/main/offapi/com/sun/star/sheet/ |
| H A D | XCellRangeData.idl | 35 /** allows to get and set an array of data from a cell range. 37 the columns of the array.</p> 42 /** gets an array from the contents of the cell range. 49 /** fills the cell range with values from an array. 51 <p>The size of the array must be the same as the size of the cell 52 range. Each element of the array must contain a <atom>double</atom> 56 If the size of the array is different from the current size.
|
| H A D | XArrayFormulaRange.idl | 37 /** provides handling of array formulas in a cell range. 43 /** returns the array formula of the range or an empty string, if the 44 range does not contain an array formula. 50 /** applies the array formula to the entire cell range. 53 the formula that will be applied as array formula. Passing an 54 empty string erases an existing array formula.
|
| H A D | XCellRangeFormula.idl | 41 the columns of the array.</p> 48 /** gets an array from the contents of the cell range. 57 /** fills the cell range with values from an array. 59 <p>The size of the array must be the same as the size of the cell 60 range. Each element of the array is interpreted the same way as 66 If the size of the array is different from the current size.
|
| H A D | FunctionAccess.idl | 60 /** specifies whether the function call is performed as array function 64 calculated similar to array formulas in a spreadsheet document. The 66 sequences containing the values of the resulting array. Example: If the 68 array containing the absolute values of the numbers contained in the 74 Of course, some functions always return an array, for example the
|
| H A D | XFunctionAccess.idl | 70 <dd>for an array of numeric values.</dd> 73 <dd>for an array of textual values.</dd> 76 <dd>for a mixed array, where each element must be of <void/>, 101 <dd>for an array result, containing <atom>double</atom> and
|
| /trunk/main/vcl/aqua/source/dtrans/ |
| H A D | DataFlavorMapping.cxx | 711 NSMutableArray* array = [[NSMutableArray alloc] initWithCapacity: 1]; in flavorSequenceToTypesArray() local 719 [array addObject: NSTIFFPboardType]; in flavorSequenceToTypesArray() 720 [array addObject: NSPICTPboardType]; in flavorSequenceToTypesArray() 729 [array addObject: str]; in flavorSequenceToTypesArray() 737 if( [array count] == 0 || bNeedDummyInternalFlavor) in flavorSequenceToTypesArray() 739 [array addObject: PBTYPE_DUMMY_INTERNAL]; in flavorSequenceToTypesArray() 742 return [array autorelease]; in flavorSequenceToTypesArray() 768 NSMutableArray* array = [[NSMutableArray alloc] initWithCapacity: SIZE_FLAVOR_MAP]; in getAllSupportedPboardTypes() local 772 [array addObject: flavorMap[i].SystemFlavor]; in getAllSupportedPboardTypes() 775 return [array autorelease]; in getAllSupportedPboardTypes()
|
| /trunk/main/sc/source/ui/src/ |
| H A D | scfuncs.src | 1960 … Text [ en-US ] = "An array or reference to cells whose contents correspond to the payments. " ; 1992 … Text [ en-US ] = "An array or reference to cells whose contents correspond to the payments." ; 2000 Text [ en-US ] = "Interest rate for investments (the negative values in the array)." ; 2008 Text [ en-US ] = "interest rate for reinvestments (the positive values in the array)." ; 2448 …of a value (1 = number, 2 = text, 4 = Boolean value, 8 = formula, 16 = error value, 64 = array)." ; 4341 Text [ en-US ] = "Array transposition. Exchanges the rows and columns of an array." ; 4353 Text [ en-US ] = "array" ; 4357 Text [ en-US ] = "The array in which the rows and columns have been transposed." ; 4377 Text [ en-US ] = "array" ; 4381 Text [ en-US ] = "The first array for the array product." ; [all …]
|
| /trunk/test/testgui/source/testlib/gui/ |
| H A D | SCTool.java | 231 private static String arrayToString(Object array) { in arrayToString() argument 232 if (array == null) in arrayToString() 234 if (!array.getClass().isArray()) in arrayToString() 235 return array.toString(); in arrayToString() 237 int len = Array.getLength(array); in arrayToString() 240 Object el = Array.get(array, i); in arrayToString()
|
| /trunk/main/sc/source/ui/vba/testvba/ |
| H A D | timestampsClean.pl | 28 my $array = shift; 29 my @lines = @{$array}; 56 my $array = shift; 57 my @lines = @{$array};
|
| /trunk/main/wizards/com/sun/star/wizards/common/ |
| H A D | NumericalHelper.java | 1407 Object array = sourceObject.aValue; in convertSequenceToObjectArray() local 1409 Class c = array.getClass(); in convertSequenceToObjectArray() 1413 byte[] vals = (byte[]) array; in convertSequenceToObjectArray() 1422 short[] vals = (short[]) array; in convertSequenceToObjectArray() 1431 int[] vals = (int[]) array; in convertSequenceToObjectArray() 1440 long[] vals = (long[]) array; in convertSequenceToObjectArray() 1449 float[] vals = (float[]) array; in convertSequenceToObjectArray() 1458 double[] vals = (double[]) array; in convertSequenceToObjectArray() 1467 boolean[] vals = (boolean[]) array; in convertSequenceToObjectArray() 1479 aShortVal = (Object[]) array; in convertSequenceToObjectArray()
|
| /trunk/main/xmlhelp/source/cxxhelp/inc/util/ |
| H A D | Decompressor.hxx | 100 ByteArrayDecompressor( sal_Int32 arrayL,sal_Int8* array,sal_Int32 index ) in ByteArrayDecompressor() argument 102 initReading(array,arrayL,index); in ByteArrayDecompressor() 131 void initReading( sal_Int8* array,sal_Int32 arrayL,sal_Int32 index ) in initReading() argument 134 array_ = array; in initReading()
|
| H A D | ConceptList.hxx | 47 ConceptList( sal_Int8* array,sal_Int32 arrl,sal_Int32 index ) in ConceptList() argument 48 : k_( array[index] ), in ConceptList() 50 list_( arrl,array,index + 1 ) { } in ConceptList()
|
| /trunk/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ |
| H A D | Tools.java | 114 Object[] array = (Object[]) AnyConverter.toArray(property.Value); in getOrDefault() local 115 ret = new NamedValue[array.length]; in getOrDefault() 116 for (int i = 0; i < array.length; i++) { in getOrDefault() 117 ret[i] = (NamedValue) array[i]; in getOrDefault()
|
| /trunk/main/sax/test/sax/ |
| H A D | testwriter.cxx | 506 sal_Char array[256]; in testSimple() local 508 array[n-32] = n; in testSimple() 510 array[254-32] = 0; in testSimple() 512 OStringToOUString( array , RTL_TEXTENCODING_SYMBOL ) in testSimple() 590 sal_Unicode array[] = { 'a' , 'b' , 4 , 9 , 10 }; in testExceptions() local 591 OUString o( array , 5 ); in testExceptions()
|
| /trunk/test/testuno/source/fvt/uno/sd/chart/ |
| H A D | ChartData.java | 191 XChartDataArray array = (XChartDataArray) UnoRuntime.queryInterface( in testDataTable() local 196 array.setData(data); in testDataTable() 202 array = (XChartDataArray) UnoRuntime.queryInterface( in testDataTable() 204 data = array.getData(); in testDataTable()
|
| /trunk/main/solenv/bin/modules/par2script/ |
| H A D | converter.pm | 60 my @array = (); 67 push(@array ,$input); 70 return \@array
|
| /trunk/main/offapi/com/sun/star/awt/ |
| H A D | XImageConsumer.idl | 72 rectangle of source pixels that are contained in the array of pixels. 75 (m,n) is stored in the pixels array at index (n * <var>nScanSize</var> 92 rectangle of source pixels that are contained in the array of pixels. 95 (m,n) is stored in the pixels array at index (n * <var>nScanSize</var>
|