HomeSort by relevance Sort by last modified time
    Searched refs:fields (Results 76 - 100 of 280) sorted by null

1 2 34 5 6 7 8 91011>>

  /cts/apps/CtsVerifier/tests/src/com/android/cts/verifier/features/
FeatureSummaryActivityTest.java 54 Field[] fields = PackageManager.class.getFields(); local
55 for (Field field : fields) {
  /external/chromium/third_party/icu/source/test/cintltst/
sprpdata.c 47 char *fields[][2], int32_t fieldCount,
57 typeName = fields[2][0];
58 map = fields[1][0];
62 u_parseCodePointRange(fields[0][0], &rangeStart,&rangeEnd, pErrorCode);
69 u_parseCodePointRange(fields[0][0], &rangeStart,&rangeEnd, pErrorCode);
76 code=(uint32_t)uprv_strtoul(fields[0][0], &end, 16);
93 char *fields[3][2]; local
99 u_parseDelimitedFile(filename, ';', fields, 3, strprepProfileLineFn, (void*)data, pErrorCode);
  /external/chromium/third_party/icu/source/test/intltest/
ucdtest.cpp 104 char *fields[][2], int32_t /* fieldCount */,
111 u_parseCodePointRange(fields[0][0], &start, &end, pErrorCode);
113 me->errln("UnicodeTest: syntax error in DerivedCoreProperties.txt field 0 at %s\n", fields[0][0]);
118 i=getTokenIndex(derivedCorePropsNames, LENGTHOF(derivedCorePropsNames), fields[1][0]);
120 me->errln("UnicodeTest warning: unknown property name '%s' in \n", fields[1][0]);
141 char *fields[2][2]; local
159 u_parseDelimitedFile(newPath, ';', fields, 2, derivedCorePropsLineFn, this, &errorCode);
163 u_parseDelimitedFile(backupPath, ';', fields, 2, derivedCorePropsLineFn, this, &errorCode);
  /external/icu4c/test/cintltst/
sprpdata.c 47 char *fields[][2], int32_t fieldCount,
57 typeName = fields[2][0];
58 map = fields[1][0];
62 u_parseCodePointRange(fields[0][0], &rangeStart,&rangeEnd, pErrorCode);
69 u_parseCodePointRange(fields[0][0], &rangeStart,&rangeEnd, pErrorCode);
76 code=(uint32_t)uprv_strtoul(fields[0][0], &end, 16);
93 char *fields[3][2]; local
99 u_parseDelimitedFile(filename, ';', fields, 3, strprepProfileLineFn, (void*)data, pErrorCode);
  /external/icu4c/tools/toolutil/
uparse.h 49 char *fields[][2],
57 * All other lines are separated into fields with one delimiter character
58 * (semicolon for Unicode Properties files) between two fields. The last field in
64 * For each field i of the line, the start pointer in fields[i][0]
65 * points to the beginning of the field, while the limit pointer in fields[i][1]
71 * The line function may modify the contents of the fields including the
79 char *fields[][2], int32_t fieldCount,
  /external/qemu/
qemu_file.h 8 Q_FIELD_BYTE, /* for 1-byte fields */
9 Q_FIELD_INT16, /* for 2-byte fields */
10 Q_FIELD_INT32, /* for 4-byte fields */
11 Q_FIELD_INT64, /* for 8-byte fields */
12 Q_FIELD_BUFFER, /* for buffer fields */
49 extern void qemu_put_struct(QEMUFile* f, const QField* fields, const void* s);
50 extern int qemu_get_struct(QEMUFile* f, const QField* fields, void* s);
  /frameworks/base/core/jni/
android_hardware_Camera.cpp 42 static fields_t fields; variable
77 JNICameraContext* context = reinterpret_cast<JNICameraContext*>(env->GetIntField(thiz, fields.context));
129 env->CallStaticVoidMethod(mCameraJClass, fields.post_event,
195 env->CallStaticVoidMethod(mCameraJClass, fields.post_event,
220 env->CallStaticVoidMethod(mCameraJClass, fields.post_event,
308 env->SetIntField(info_obj, fields.facing, cameraInfo.facing);
309 env->SetIntField(info_obj, fields.orientation, cameraInfo.orientation);
343 env->SetIntField(thiz, fields.context, (int)context.get());
358 context = reinterpret_cast<JNICameraContext*>(env->GetIntField(thiz, fields.context));
361 env->SetIntField(thiz, fields.context, 0)
    [all...]
  /libcore/luni/src/main/java/java/lang/
StringBuffer.java 734 ObjectOutputStream.PutField fields = out.putFields(); local
735 fields.put("count", length());
736 fields.put("shared", false);
737 fields.put("value", getValue());
743 ObjectInputStream.GetField fields = in.readFields(); local
744 int count = fields.get("count", 0);
745 char[] value = (char[]) fields.get("value", null);
  /external/nist-sip/java/gov/nist/javax/sip/address/
NetObject.java 85 Field[] fields = myclass.getDeclaredFields(); local
87 for (int i = 0; i < fields.length; i++) {
88 Field f = fields[i];
103 // Primitive fields are printed with type: value
157 * and non-sip fields that are non null are matched for equality.
158 * Null in any field matches anything. Some book-keeping fields
175 Field[] fields = myclass.getDeclaredFields(); local
177 for (int i = 0; i < fields.length; i++) {
178 Field f = fields[i];
193 // Primitive fields are printed with type: valu
284 Field[] fields = myclass.getDeclaredFields(); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPObject.java 89 Field[] fields = myclass.getDeclaredFields(); local
93 for (int i = 0; i < fields.length; i++) {
94 Field f = fields[i];
109 // Primitive fields are printed with type: value
166 * and non-sip fields that are non null are matched for equality.
167 * Null in any field matches anything. Some book-keeping fields
182 Field[] fields = myclass.getDeclaredFields(); local
184 for (int i = 0; i < fields.length; i++) {
185 Field f = fields[i];
295 Field[] fields = myclass.getDeclaredFields() local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_file.cc 58 // We conservatively assume that unknown fields are extensions.
61 vector<const FieldDescriptor*> fields;
62 reflection->ListFields(message, &fields);
64 for (int i = 0; i < fields.size(); i++) {
65 if (fields[i]->is_extension()) return true;
67 if (GetJavaType(fields[i]) == JAVATYPE_MESSAGE) {
68 if (fields[i]->is_repeated()) {
69 int size = reflection->FieldSize(message, fields[i]);
72 reflection->GetRepeatedMessage(message, fields[i], j);
76 const Message& sub_message = reflection->GetMessage(message, fields[i])
    [all...]
  /libcore/luni/src/main/java/java/util/
Locale.java 629 ObjectOutputStream.PutField fields = stream.putFields(); local
630 fields.put("country", countryCode);
631 fields.put("hashcode", -1);
632 fields.put("language", languageCode);
633 fields.put("variant", variantCode);
638 ObjectInputStream.GetField fields = stream.readFields(); local
639 countryCode = (String) fields.get("country", "");
640 languageCode = (String) fields.get("language", "");
641 variantCode = (String) fields.get("variant", "");
Calendar.java 31 * {@code Date} object and a set of integer fields such as
45 * returns a calendar whose locale is based on system settings and whose time fields
57 * fields, as well as their meaning. For example, the first month of the year
83 * {@code WEEK_OF_YEAR} fields, {@code Calendar} must determine
95 * When computing a {@code Date} from time fields, two special
103 * information to specify the missing fields. This may vary by calendar; for the
108 * <strong>Inconsistent information.</strong> If fields conflict, the calendar
109 * will give preference to fields set more recently. For example, when
111 * combinations of fields. The most recent combination, as determined by the
158 * {@code Calendar} fields can be changed using three methods
308 protected int[] fields; field in class:Calendar
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageObject.java 64 Field[] fields = myclass.getDeclaredFields(); local
65 for (int i = 0; i < fields.length; i++) {
66 Field f = fields[i];
83 // Primitive fields are printed with type: value
  /external/chromium/third_party/icu/source/tools/tzcode/
zic.c 149 static void inleap(char ** fields, int nfields);
150 static void inlink(char ** fields, int nfields);
151 static void inrule(char ** fields, int nfields);
152 static int inzcont(char ** fields, int nfields);
153 static int inzone(char ** fields, int nfields);
154 static int inzsub(char ** fields, int nfields, int iscont);
222 ** Which fields are which on a Zone line.
237 ** Which fields are which on a Zone continuation line.
266 ** Which fields are which on a Link line.
274 ** Which fields are which on a Leap line
943 register char ** fields; local
    [all...]
  /external/icu4c/tools/tzcode/
zic.c 149 static void inleap(char ** fields, int nfields);
150 static void inlink(char ** fields, int nfields);
151 static void inrule(char ** fields, int nfields);
152 static int inzcont(char ** fields, int nfields);
153 static int inzone(char ** fields, int nfields);
154 static int inzsub(char ** fields, int nfields, int iscont);
222 ** Which fields are which on a Zone line.
237 ** Which fields are which on a Zone continuation line.
266 ** Which fields are which on a Link line.
274 ** Which fields are which on a Leap line
943 register char ** fields; local
    [all...]
  /external/bluetooth/glib/glib/
grel.h 52 * g_relation_new() creates a relation with FIELDS fields
62 * provide the right number of fields.
69 GRelation* g_relation_new (gint fields);
  /external/emma/core/java12/com/vladium/jcd/cls/
AbstractClassDefVisitor.java 43 public Object visit (final IFieldCollection fields, final Object ctx)
  /external/proguard/src/proguard/classfile/editor/
ClassMemberSorter.java 41 // Sort the fields.
42 Arrays.sort(programClass.fields, 0, programClass.u2fieldsCount, this);
  /external/webkit/WebCore/bridge/jni/jsc/
JavaClassJSC.cpp 58 // Get the fields
59 if (jarray fields = (jarray)callJNIMethod<jobject>(aClass, "getFields", "()[Ljava/lang/reflect/Field;")) {
60 int numFields = env->GetArrayLength(fields);
62 jobject aJField = env->GetObjectArrayElement((jobjectArray)fields, i);
70 env->DeleteLocalRef(fields);
  /frameworks/base/core/tests/coretests/src/android/os/
BinderThreadPriorityTest.java 102 String fields[] = line.trim().split(":"); local
103 if (fields.length == 3 && fields[1].equals("cpu")) return fields[2];
  /libcore/luni/src/main/java/java/security/
UnresolvedPermissionCollection.java 151 * Output fields via default mechanism.
160 ObjectOutputStream.PutField fields = out.putFields(); local
161 fields.put("permissions", permissions);
170 ObjectInputStream.GetField fields = in.readFields(); local
171 Map permissions = (Map)fields.get("permissions", null);
  /libcore/luni/src/test/java/libcore/java/net/
OldURLStreamHandlerFactoryTest.java 80 Field [] fields = URL.class.getDeclaredFields(); local
82 for (Field field : fields) {
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Output.java 64 * Prints the list of fields in a simple human-readable format.
69 FieldRef[] fields = classes[i].getFieldArray(); local
71 for (int j = 0; j < fields.length; j++) {
72 FieldRef ref = fields[j];
110 * the matching fields and methods.
145 * Prints the externally-visible fields in XML format.
148 FieldRef[] fields = cref.getFieldArray(); local
149 for (int i = 0; i < fields.length; i++) {
150 FieldRef fref = fields[i];
  /frameworks/base/graphics/java/android/renderscript/
Type.java 118 // native fields
120 Field[] fields = c.getFields(); local
121 int[] arTypes = new int[fields.length];
122 int[] arBits = new int[fields.length];
124 for(int ct=0; ct < fields.length; ct++) {
125 Field f = fields[ct];
143 rs.nTypeSetupFields(t, arTypes, arBits, fields);

Completed in 1717 milliseconds

1 2 34 5 6 7 8 91011>>