Home
last modified time | relevance | path

Searched refs:array (Results 1 – 25 of 184) sorted by relevance

12345678

/trunk/main/offapi/com/sun/star/sdbc/
H A DXArray.idl49 reference to an SQL array. By default, an
53 is implemented using a SQL LOCATOR(array) internally.
59 the array designated by this
114 of the SQL array designated by this object.
124 /** returns an array containing a slice of the SQL array, beginning with the
129 successive elements of the SQL array.
132 is the array index of the first element to retrieve;
146 an array containing up to
149 of the SQL array, beginning with element
168 to map the array elements. If the base
[all …]
/trunk/main/oox/inc/oox/helper/
H A Dhelper.hxx41 #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 DArrayWrapper.idl37 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 DXArrayTypeDescription.idl38 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 DXIdlClass.idl116 /** 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 DXIdlArray.idl57 @param array
63 [inout] any array,
69 @param array
74 long getLen( [in] any array )
/trunk/main/i18npool/source/localedata/
H A Dfilewriter.cxx64 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 DLocaleNode.hxx63 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 DXCellRangeData.idl35 /** 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 DXArrayFormulaRange.idl37 /** 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 DXCellRangeFormula.idl41 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 DFunctionAccess.idl60 /** 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 DXFunctionAccess.idl70 <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 DDataFlavorMapping.cxx711 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/test/testgui/source/testlib/gui/
H A DSCTool.java231 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/src/
H A Dscfuncs.src4353 Text [ en-US ] = "array" ;
4377 Text [ en-US ] = "array" ;
4381 Text [ en-US ] = "The first array for the array product." ;
4385 Text [ en-US ] = "array" ;
4389 …Text [ en-US ] = "The second array having the same number of rows as the first array has columns."…
4409 Text [ en-US ] = "array" ;
4433 Text [ en-US ] = "array" ;
7652 Text [ en-US ] = "array" ;
7676 Text [ en-US ] = "array" ;
7732 Text [ en-US ] = "array" ;
[all …]
/trunk/main/sc/source/ui/vba/testvba/
H A DtimestampsClean.pl28 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 DNumericalHelper.java1407 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 DDecompressor.hxx100 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 DConceptList.hxx47 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 DTools.java114 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 Dtestwriter.cxx506 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/main/solenv/bin/modules/par2script/
H A Dconverter.pm60 my @array = ();
67 push(@array ,$input);
70 return \@array
/trunk/test/testuno/source/fvt/uno/sd/chart/
H A DChartData.java191 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/offapi/com/sun/star/awt/
H A DXImageConsumer.idl72 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>

Completed in 96 milliseconds

12345678