Home
last modified time | relevance | path

Searched refs:fields (Results 1 – 25 of 257) sorted by relevance

1234567891011

/aoo41x/main/connectivity/source/drivers/macab/
H A DMacabHeader.cxx50 fields[i] = NULL; in MacabHeader()
57 fields[i] = new macabfield; in MacabHeader()
60 if (fields[i]->value) in MacabHeader()
61 CFRetain(fields[i]->value); in MacabHeader()
71 fields = NULL; in MacabHeader()
98 fields[i] = r->copy(i); in operator +=()
141 delete [] fields; in operator +=()
143 fields = newFields; in operator +=()
155 …if(fields[i] == NULL || fields[i]->value == NULL || CFGetTypeID(fields[i]->value) != CFStringGetTy… in getString()
186 if(compareFields(fields[_start], fields[_start+1]) > 0) in sortRecord()
[all …]
H A DMacabRecord.cxx45 fields = NULL; in MacabRecord()
55 fields[i] = NULL; in MacabRecord()
66 delete fields[i]; in ~MacabRecord()
67 fields[i] = NULL; in ~MacabRecord()
70 delete [] fields; in ~MacabRecord()
71 fields = NULL; in ~MacabRecord()
79 if(fields[_column] == NULL) in insertAtColumn()
83 if (fields[_column]->value) in insertAtColumn()
104 if(fields[i] != NULL) in contains()
151 return fields[i]; in get()
[all …]
/aoo41x/main/qadevOOo/tests/java/ifc/sheet/
H A D_XSheetFilterableEx.java74 TableFilterField[] fields = desc.getFilterFields(); in checkFilterDescriptor() local
77 if (fields.length == 0) { in checkFilterDescriptor()
81 log.println("Found "+fields.length+" TableFields"); in checkFilterDescriptor()
84 for (int k = 0; k < fields.length; k++) { in checkFilterDescriptor()
85 log.println("StringValue(" + k + "): " + fields[k].StringValue); in checkFilterDescriptor()
86 log.println("IsNumeric(" + k + "): " + fields[k].IsNumeric); in checkFilterDescriptor()
87 log.println("NumericValue(" + k + "): " + fields[k].NumericValue); in checkFilterDescriptor()
88 log.println("Field(" + k + "): " + fields[k].Field); in checkFilterDescriptor()
89 log.println("Connection(" + k + "): " + fields[k].Connection); in checkFilterDescriptor()
90 log.println("Operator(" + k + "): " + fields[k].Operator); in checkFilterDescriptor()
/aoo41x/main/wizards/com/sun/star/wizards/common/
H A DConfigGroup.java38 Field[] fields = getClass().getFields(); in writeConfiguration() local
39 for (int i = 0; i < fields.length; i++) in writeConfiguration()
41 if (fields[i].getName().startsWith((String) param)) in writeConfiguration()
45 writeField(fields[i], configurationView, (String) param); in writeConfiguration()
49 System.out.println("Error writing field: " + fields[i].getName()); in writeConfiguration()
113 Field[] fields = getClass().getFields(); in readConfiguration() local
114 for (int i = 0; i < fields.length; i++) in readConfiguration()
116 if (fields[i].getName().startsWith((String) param)) in readConfiguration()
120 readField(fields[i], configurationView, (String) param); in readConfiguration()
124 System.out.println("Error reading field: " + fields[i].getName()); in readConfiguration()
/aoo41x/main/offapi/com/sun/star/accessibility/
H A DAccessibleEventId.idl32 <member>AccessibleEventObject::NewValue</member> fields contain, where
46 <member>AccessibleEventObject::NewValue</member> fields contain the
54 <member>AccessibleEventObject::NewValue</member> fields contain the
62 <member>AccessibleEventObject::NewValue</member> fields contain the
70 <member>AccessibleEventObject::NewValue</member> fields contain the
111 <member>AccessibleEventObject::NewValue</member> fields determines
125 don't set both fields at the same. Send separate events
177 <member>AccessibleEventObject::NewValue</member> fields contain
188 <member>AccessibleEventObject::NewValue</member> fields contain
246 <member>AccessibleEventObject::NewValue</member> fields.
[all …]
/aoo41x/main/offapi/com/sun/star/sheet/
H A DXDataPilotDescriptor.idl94 /** returns the collection of all the data pilot fields.
100 /** returns the collection of the data pilot fields used as column fields.
108 /** returns the collection of the data pilot fields used as row fields.
116 /** returns the collection of the data pilot fields used as page fields.
124 /** returns the collection of the data pilot fields used as data fields.
132 /** returns the collection of the data pilot fields not used as
133 column, row, page, or data fields.
H A DTableAutoFormat.idl49 /** represents an AutoFormat, containing exactly 16 AutoFormat fields.
51 <p>Each of the 16 fields contain formatting properties for a table
71 /** provides methods to access the AutoFormat fields via index.
79 /** creates an enumeration of all 16 AutoFormat fields.
93 /** specifies whether the font settings from the fields are used.
99 /** specifies whether the justification settings from the fields
106 /** specifies whether the border settings from the fields are used.
112 /** specifies whether the background settings from the fields are used.
118 /** specifies whether the number format settings from the fields
H A DSubTotalDescriptor.idl49 <p>The descriptor contains properties and a collection of subtotal fields
56 /** provides access to the collection of subtotal fields.
62 /** creates an enumeration of all sub total fields.
70 /** provides access to the sub total fields in the collection via index.
117 /** specifies if the contents of the fields will be sorted to groups
131 /** returns the maximum number of subtotal fields the descriptor can
134 <p>This read-only property indicates the maximum count of fields the
H A DDataPilotFields.idl43 /** represents a collection of fields in a data pilot table.
46 fields are representred by the columns of the range and are named using
55 /** provides access to the data pilot fields in the collection via index.
61 /** creates an enumeration of all data pilot fields.
69 /** provides access to the data pilot fields in the collection via name.
H A DSheetFilterDescriptor.idl42 conditions (filter fields) which control the behaviour of a filter
49 /** provides access to the collection of filter fields.
55 /** provides access to the collection of filter fields.
133 /** returns the maximum number of filter fields in the descriptor.
135 <p>This read-only property indicates the maximum count of fields the
/aoo41x/main/qadevOOo/tests/java/ifc/i18n/
H A D_XCalendar.java310 short[] fields = new short[]{CalendarFieldIndex.DAY_OF_MONTH, in _setValue() local
318 for (int k=0; k<fields.length;k++) { in _setValue()
323 short[] oldValues = new short[fields.length]; in _setValue()
325 oldValues[n] = oObj.getValue(fields[n]); in _setValue()
328 short set = oObj.getValue(fields[k]); in _setValue()
329 if (fields[k] == CalendarFieldIndex.MONTH) set = newValue; in _setValue()
330 oObj.setValue(fields[k],set); in _setValue()
331 short get = oObj.getValue(fields[k]); in _setValue()
340 for (int n=0; n < fields.length;n++){ in _setValue()
341 log.println(names[n] + ":" + oObj.getValue(fields[n])); in _setValue()
/aoo41x/main/sw/
H A DLibrary_sw.mk252 sw/source/core/fields/authfld \
254 sw/source/core/fields/chpfld \
255 sw/source/core/fields/dbfld \
256 sw/source/core/fields/ddefld \
257 sw/source/core/fields/ddetbl \
259 sw/source/core/fields/expfld \
260 sw/source/core/fields/fldbas \
261 sw/source/core/fields/flddat \
263 sw/source/core/fields/fldlst \
266 sw/source/core/fields/reffld \
[all …]
/aoo41x/main/oox/source/drawingml/
H A Dtextfield.cxx157 std::list< Reference< XTextField > > fields; in insertAt() local
158 lclCreateTextFields( fields, rFilterBase.getModel(), msType ); in insertAt()
159 if( !fields.empty() ) in insertAt()
162 for( std::list< Reference< XTextField > >::iterator iter = fields.begin(); in insertAt()
163 iter != fields.end(); ++iter ) in insertAt()
/aoo41x/main/offapi/com/sun/star/document/
H A DXDocumentInfo.idl39 /** provides access to the user fields for the information regarding the
43 These fields are special one of the set of available document properties.
58 /** provides information about count of available fields
62 any of these fields. Range = [0..count-1]
103 /** changes the name of one of the user fields
121 /** changes the value of one of the user fields
H A DDocumentInfo.idl63 author, creation date and user fields
80 /** provides access to the user fields for the information regarding the
84 These fields are additional to normal properties.
101 /** provides access to the user fields, which (instead to the user fields set
105 These fields are additional to normal properties (see below) and
106 additional to the user fields set by the interface XDocumentInfo (see before).
/aoo41x/main/stoc/test/
H A Dtestcorefl.cxx124 Sequence<Reference< XIdlField > > fields = xClass->getFields(); in test_corefl() local
127 (fields.getLength() == 3) && in test_corefl()
128 (fields.getArray()[0]->getName() == OUString( RTL_CONSTASCII_USTRINGPARAM("VAL_1") )) && in test_corefl()
129 (*(EnumA*)fields.getArray()[0]->get(Any()).getValue() == EnumA_VAL_1) && in test_corefl()
130 (fields.getArray()[1]->getName() == OUString( RTL_CONSTASCII_USTRINGPARAM("VAL_2") )) && in test_corefl()
131 (*(EnumA*)fields.getArray()[1]->get(Any()).getValue() == EnumA_VAL_2) && in test_corefl()
132 (fields.getArray()[2]->getName() == OUString( RTL_CONSTASCII_USTRINGPARAM("VAL_3") )) && in test_corefl()
133 (*(EnumA*)fields.getArray()[2]->get(Any()).getValue() == EnumA_VAL_3), in test_corefl()
/aoo41x/main/wizards/source/formwizard/
H A Ddbwizres.src274 Text[ en-US ] = "Add all fields";
279 Text[ en-US ] = "Remove all fields";
355 Text [ en-US ] = "~Available fields";
566 Text [ en-US ] = "Add subform fields";
571 Text [ en-US ] = "Get joined fields";
678 Text [ en-US] = "A~vailable fields";
1378 Text [ en-US ] = "Labeling fields";
1501 Text [ en-US] = "Select fields";
1570 Text [ en-US] = "A~vailable fields";
1602 Text [ en-US] = "~Selected fields";
[all …]
/aoo41x/main/offapi/com/sun/star/text/
H A DTextField.idl66 <p>Not all available text fields are used, for example fields
77 <p>Not all available text fields are actually displayed
78 even when they are used. For example hidden fields or fields
/aoo41x/main/offapi/com/sun/star/sdb/tools/
H A DXConnectionTools.idl88 /** get fields for a result set given by a "command descriptor"
106 …If (and only if) <arg>CommandType</arg> is CommandType.COMMAND, the fields collection which is ret…
108 … created temporarily, too. To ensure that the fields you get are valid as long as you need them,
111 Your fields live as long as this component lives.<br/>
113 …ionally, you are encouraged to dispose this component as soon as you don't need the fields anymore.
118 the container of the columns (aka fields) of the object
/aoo41x/main/codemaker/source/javamaker/
H A Djavatype.cxx851 sal_uInt16 fields = reader.getFieldCount(); in handleEnumType() local
873 {for (sal_uInt16 i = 0; i < fields; ++i) { in handleEnumType()
929 {for (sal_uInt16 i = 0; i < fields; ++i) { in handleEnumType()
1001 {for (sal_uInt16 i = 0; i < fields; ++i) { in handleEnumType()
1751 sal_uInt16 fields = reader.getFieldCount(); in addBaseArguments() local
1833 sal_uInt16 fields = reader.getFieldCount(); in handleAggregatingType() local
1873 fields == 0 || in handleAggregatingType()
2115 sal_uInt16 fields = reader.getFieldCount(); in handleInterfaceType() local
2158 {for (sal_uInt16 i = 0; i < fields; ++i) { in handleInterfaceType()
2552 for (sal_uInt16 i = 0; i < fields; ++i) { in handleConstantGroup()
[all …]
/aoo41x/main/jurt/test/com/sun/star/lib/uno/protocols/urp/
H A DMarshaling_Test.java256 Field fields[] = zClass.getFields(); in compareStructs() local
258 for(int i = 0; i < fields.length && result; ++ i) { in compareStructs()
259 …if((fields[i].getModifiers() & (Modifier.STATIC | Modifier.TRANSIENT)) == 0) { // neither static n… in compareStructs()
260 result = result & compareObjects(fields[i].get(op1), fields[i].get(op2)); in compareStructs()
263 System.err.println("blabal :" + fields[i]); in compareStructs()
/aoo41x/main/qadevOOo/runner/util/
H A DValueComparer.java129 Field fields[] = zClass.getDeclaredFields(); in compareUntil() local
131 for(int i = 0; i < fields.length && result; ++ i) { in compareUntil()
132 …if((fields[i].getModifiers() & (Modifier.STATIC | Modifier.TRANSIENT)) == 0) { // neither static n… in compareUntil()
133 Object obj1 = fields[i].get(op1); in compareUntil()
134 Object obj2 = fields[i].get(op2); in compareUntil()
/aoo41x/main/offapi/com/sun/star/text/fieldmaster/
H A DBibliography.idl44 /** determins whether the bibiliography text fields are numbered. If <FALSE/> the
55 /** determins the opening bracket used to display the bibliography text fields.
59 /** determins the closing bracket used to display the bibliography text fields.
85 /** contains the name of the sort algorithm that is used to sort the text fields.
/aoo41x/main/solenv/bin/
H A Dpackmodule28 fields = line.split()
29 if len(fields) >= 3:
30 lines.append(fields[2])
/aoo41x/main/offapi/com/sun/star/form/component/
H A DDataForm.idl77 /** is used to reset controls belonging to the form, and to reset database fields to which the
95 … models might have modified the fields they're bound to (by filling them with default values).</li>
145 <p> These columns are typically the foreign key fields of the parent form.
148 it's data based on the values of the master fields.</p>
157 which are related to the master fields of the parent form.
176 fields or their aliases of the detail form.</p>

Completed in 150 milliseconds

1234567891011