Searched refs:fieldId (Results 1 - 25 of 27) sorted by relevance

12

/external/icu/icu4c/source/i18n/
H A Ddigitaffix.h42 * a field type of fieldId.
47 int32_t fieldId=UNUM_FIELD_COUNT);
55 * Append value to this affix. If fieldId is present, the appended
56 * string is considered to be the type fieldId.
58 void appendUChar(UChar value, int32_t fieldId=UNUM_FIELD_COUNT);
61 * Append value to this affix. If fieldId is present, the appended
62 * string is considered to be the type fieldId.
64 void append(const UnicodeString &value, int32_t fieldId=UNUM_FIELD_COUNT);
68 * is considered to be the type fieldId.
70 void setTo(const UnicodeString &value, int32_t fieldId
[all...]
H A Ddigitaffix.cpp25 const UChar *value, int32_t charCount, int32_t fieldId)
27 fAnnotations(charCount, (UChar) fieldId, charCount) {
37 DigitAffix::appendUChar(UChar value, int32_t fieldId) { argument
39 fAnnotations.append((UChar) fieldId);
43 DigitAffix::append(const UnicodeString &value, int32_t fieldId) { argument
49 appender.append((UChar) fieldId);
55 DigitAffix::setTo(const UnicodeString &value, int32_t fieldId) { argument
62 appender.append((UChar) fieldId);
68 DigitAffix::append(const UChar *value, int32_t charCount, int32_t fieldId) { argument
73 appender.append((UChar) fieldId);
24 DigitAffix( const UChar *value, int32_t charCount, int32_t fieldId) argument
[all...]
H A Dpluralaffix.cpp39 const UChar value, int32_t fieldId) {
43 current->appendUChar(value, fieldId);
49 const UnicodeString &value, int32_t fieldId) {
53 current->append(value, fieldId);
59 const UChar *value, int32_t charCount, int32_t fieldId) {
63 current->append(value, charCount, fieldId);
69 const PluralAffix &rhs, int32_t fieldId, UErrorCode &status) {
80 current->append(rhs.affixes.get(index).toString(), fieldId);
38 appendUChar( const UChar value, int32_t fieldId) argument
48 append( const UnicodeString &value, int32_t fieldId) argument
58 append( const UChar *value, int32_t charCount, int32_t fieldId) argument
68 append( const PluralAffix &rhs, int32_t fieldId, UErrorCode &status) argument
H A Dpluralaffix.h106 * Append value to all set plural categories. If fieldId present, value
109 void appendUChar(UChar value, int32_t fieldId=UNUM_FIELD_COUNT);
112 * Append value to all set plural categories. If fieldId present, value
115 void append(const UnicodeString &value, int32_t fieldId=UNUM_FIELD_COUNT);
118 * Append value to all set plural categories. If fieldId present, value
121 void append(const UChar *value, int32_t charCount, int32_t fieldId=UNUM_FIELD_COUNT);
126 * of type fieldId.
130 int32_t fieldId,
H A Ddigitformatter.cpp81 int32_t fieldId,
88 fieldId,
80 appendField( int32_t fieldId, const UnicodeString &value, FieldPositionHandler &handler, UnicodeString &appendTo) argument
/external/autotest/frontend/client/src/autotest/moblab/wizard/
H A DFlexWizardCard.java42 protected Widget createValueFieldWidget(String fieldId, String value) { argument
43 return createStringValueFieldWidget(fieldId, value, false);
46 protected Widget createStringValueFieldWidget(String fieldId, String value, argument
51 fieldMap.put(fieldId, textBox);
85 protected TextBox getValueFieldEditor(String fieldId) { argument
86 return fieldMap.get(fieldId);
H A DWifiCard.java71 protected String getStringValueFieldValue(String fieldId) { argument
72 TextBox textBox = getValueFieldEditor(fieldId);
H A DCloudStorageCard.java179 protected String getStringValueFieldValue(String fieldId) { argument
180 TextBox textBox = getValueFieldEditor(fieldId);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DFieldWithLocationTest.java42 private long fieldId = -1; field in class:FieldWithLocationTest
92 if (fieldId == -1) {
93 fieldId = debuggeeWrapper.vmMirror.getFieldID(debuggeeClassId, FIELD_NAME);
95 builder.setFieldOnly(debuggeeClassId, fieldId);
H A DClassPrepare002Test.java74 long fieldId = checkField(classIDOfA, "field");
80 getValuesCommand.setNextValueAsFieldID(fieldId);
/external/icu/icu4c/source/test/intltest/
H A Dnumberformattesttuple.cpp344 ENumberFormatTestTupleField fieldId,
350 if (fieldId == kNumberFormatTestTupleFieldCount) {
354 gFieldData[fieldId].ops->toValue(
355 fieldValue, getMutableFieldAddress(fieldId), status);
359 setFlag(fieldId, TRUE);
365 ENumberFormatTestTupleField fieldId,
370 if (fieldId == kNumberFormatTestTupleFieldCount) {
374 setFlag(fieldId, FALSE);
429 NumberFormatTestTuple::getFieldAddress(int32_t fieldId) const {
430 return reinterpret_cast<const char *>(this) + gFieldData[fieldId]
343 setField( ENumberFormatTestTupleField fieldId, const UnicodeString &fieldValue, UErrorCode &status) argument
364 clearField( ENumberFormatTestTupleField fieldId, UErrorCode &status) argument
434 getMutableFieldAddress(int32_t fieldId) argument
439 setFlag(int32_t fieldId, UBool value) argument
[all...]
H A Dnumberformattesttuple.h226 const void *getFieldAddress(int32_t fieldId) const;
227 void *getMutableFieldAddress(int32_t fieldId);
228 void setFlag(int32_t fieldId, UBool value);
229 UBool isFlag(int32_t fieldId) const;
/external/deqp/framework/platform/android/
H A DtcuAndroidUtil.cpp222 FieldType getStaticFieldValue (JNIEnv* env, jclass cls, jfieldID fieldId);
225 int getStaticFieldValue<int> (JNIEnv* env, jclass cls, jfieldID fieldId) argument
227 DE_ASSERT(cls && fieldId);
228 return env->GetStaticIntField(cls, fieldId);
232 string getStaticFieldValue<string> (JNIEnv* env, jclass cls, jfieldID fieldId) argument
234 const jstring jniStr = (jstring)env->GetStaticObjectField(cls, fieldId);
243 vector<string> getStaticFieldValue<vector<string> > (JNIEnv* env, jclass cls, jfieldID fieldId) argument
245 const jobjectArray array = (jobjectArray)env->GetStaticObjectField(cls, fieldId);
272 const jfieldID fieldId = env->GetStaticFieldID(cls, fieldName, getJNITypeStr<FieldType>()); local
276 if (fieldId)
286 getFieldValue(JNIEnv* env, jobject obj, jfieldID fieldId) argument
293 getFieldValue(JNIEnv* env, jobject obj, jfieldID fieldId) argument
303 const jfieldID fieldId = env->GetFieldID(cls, fieldName, getJNITypeStr<FieldType>()); local
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DConfigurator.java164 protected static Method getSetter(Class clazz, final String fieldId) throws NoSuchMethodException { argument
167 String methodName = "set" + fieldId;
178 protected static Method getGetter(Class clazz, final String fieldId) throws NoSuchMethodException { argument
179 Log.d(TAG, "Attempting to find getter for " + fieldId + " in class " + clazz.getName());
180 String firstLetter = fieldId.substring(0, 1);
181 String methodName = "get" + firstLetter.toUpperCase() + fieldId.substring(1, fieldId.length());
310 String fieldId = idx > 0 ? key.substring(idx + 1, key.length()) : key;
312 Method m = getSetter(o.getClass(), fieldId);
332 fieldId
[all...]
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
H A DDexMaker.java297 public void declare(FieldId<?, ?> fieldId, int flags, Object staticValue) { argument
298 TypeDeclaration typeDeclaration = getTypeDeclaration(fieldId.declaringType);
299 if (typeDeclaration.fields.containsKey(fieldId)) {
300 throw new IllegalStateException("already declared: " + fieldId);
314 FieldDeclaration fieldDeclaration = new FieldDeclaration(fieldId, flags, staticValue);
315 typeDeclaration.fields.put(fieldId, fieldDeclaration);
566 final FieldId<?, ?> fieldId; field in class:DexMaker.FieldDeclaration
570 FieldDeclaration(FieldId<?, ?> fieldId, int accessFlags, Object staticValue) { argument
574 this.fieldId = fieldId;
[all...]
H A DCode.java587 * Copies the value in instance field {@code fieldId} of {@code instance} to
590 public <D, V> void iget(FieldId<D, ? extends V> fieldId, Local<V> target, Local<D> instance) { argument
592 RegisterSpecList.make(instance.spec()), catches, fieldId.constant));
597 * Copies the value in {@code source} to the instance field {@code fieldId}
600 public <D, V> void iput(FieldId<D, V> fieldId, Local<? extends D> instance, Local<? extends V> source) { argument
602 RegisterSpecList.make(source.spec(), instance.spec()), catches, fieldId.constant));
606 * Copies the value in the static field {@code fieldId} to {@code target}.
608 public <V> void sget(FieldId<?, ? extends V> fieldId, Local<V> target) { argument
610 RegisterSpecList.EMPTY, catches, fieldId.constant));
615 * Copies the value in {@code source} to the static field {@code fieldId}
617 sput(FieldId<?, V> fieldId, Local<? extends V> source) argument
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
H A DNewInstanceStringTest.java302 long fieldId = checkField(classId, fieldName);
303 return debuggeeWrapper.vmMirror.getReferenceTypeValue(classId, fieldId);
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
H A DDexMakerTest.java455 FieldId<G, Integer> fieldId = generated.getField(TypeId.INT, "a");
456 dexMaker.declare(fieldId, PUBLIC | FINAL, null);
462 code.iput(fieldId, thisRef, parameter);
1073 FieldId<Instance, V> fieldId = objectType.getField(valueType, fieldName);
1079 code.iget(fieldId, localOldValue, localInstance);
1080 code.iput(fieldId, localInstance, localNewValue);
1157 FieldId<Static, V> fieldId = objectType.getField(valueType, fieldName);
1162 code.sget(fieldId, localOldValue);
1163 code.sput(fieldId, localNewValue);
1211 FieldId<?, T> fieldId; field in class:DexMakerTest.StaticFieldSpec
[all...]
/external/dexmaker/lib/
H A Dlibcore-dex-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/dex/ com/android/dex/util/ ...
H A Ddalvik-dx-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/dx/ com/android/dx/cf/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 862 milliseconds

12