HomeSort by relevance Sort by last modified time
    Searched defs:field (Results 301 - 325 of 401) sorted by null

<<11121314151617

  /frameworks/base/core/java/android/view/
ViewDebug.java 51 import java.lang.reflect.Field;
160 @Target({ ElementType.FIELD, ElementType.METHOD })
164 * When resolveId is true, and if the annotated field/method return value
329 @Target({ ElementType.FIELD, ElementType.METHOD })
343 private static HashMap<Class<?>, Field[]> mCapturedViewFieldsForClasses = null;
356 private static HashMap<Class<?>, Field[]> sFieldsForClasses;
1390 final Field field = fields[i]; local
1538 final Field field = fields[i]; local
1761 final Field field = fields[i]; local
1861 final Field field = fields[i]; local
    [all...]
  /cts/tools/signature-tools/src/signature/converter/dex/
DexToSigConverter.java 527 SigField field = elementPool.getField(qualTypeName, dexField.getName()); local
529 field.setModifiers(getModifier(dexField.getModifiers()));
531 field.setAnnotations(convertAnnotations(dexField.getAnnotations()));
543 field.setType(parser.fieldType);
547 field.setType(parser.parseNonGenericType(dexField.getType()));
550 return field;
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
DexMerger.java 679 // field index
734 ClassData.Field[] staticFields = classData.getStaticFields();
735 ClassData.Field[] instanceFields = classData.getInstanceFields();
750 private void transformFields(IndexMap indexMap, ClassData.Field[] fields) {
752 for (ClassData.Field field : fields) {
753 int outFieldIndex = indexMap.adjustField(field.getFieldIndex());
756 classDataOut.writeUleb128(field.getAccessFlags());
    [all...]
  /dalvik/libdex/
DexSwapVerify.cpp 174 * Swap a field that is known to hold an absolute DEX file offset. Note:
235 const DexFieldId* field = dexGetFieldId(state->pDexFile, fieldIdx); local
236 return field->classIdx == definingClass;
1253 const DexFieldId* field = local
1443 DexField* field = &fields[i]; local
1575 const DexFieldId* field = dexGetFieldId(state->pDexFile, fieldIdx); local
1581 const DexFieldId* field = dexGetFieldId(state->pDexFile, fieldIdx); local
1610 const DexField* field = &classData->staticFields[i]; local
1616 const DexField* field = &classData->instanceFields[i]; local
    [all...]
  /dalvik/vm/
CheckJni.cpp 20 * We want to verify types, make sure class and field IDs are valid, and
248 Field* field = (Field*) fid; local
249 const char* actualSignature = field->signature;
260 if (!printWarn && isStatic && !dvmIsStaticField(field)) {
262 LOGW("JNI WARNING: accessing non-static field %s as static", field->name);
264 LOGW("JNI WARNING: accessing static field %s as non-static", field->name)
291 Field* field = (Field*) fieldID; local
    [all...]
Debugger.cpp 337 * an enumeration index. For now we just use the Field*.
339 static FieldId fieldToFieldId(const Field* field)
341 return (FieldId)(u4) field;
343 static Field* fieldIdToField(RefTypeId refTypeId, FieldId id)
345 // TODO? verify "id" is actually a field in "refTypeId"
346 return (Field*)(u4) id;
1137 * Method and Field
1183 Field* field = &clazz->sfields[i] local
1194 Field* field = &clazz->ifields[i]; local
1449 const Field* field = fieldIdToField(classId, fieldId); local
1458 const Field* field = fieldIdToField(refTypeId, fieldId); local
1522 InstField* field = (InstField*) fieldIdToField(classId, fieldId); local
    [all...]
Jni.cpp 44 passed in when setting a field, and we don't prevent you from storing
45 new values in a "final" field. Such things are best handled in the
1292 Object* field = dvmDecodeIndirectRef(ts.self(), jfield); local
    [all...]
  /dalvik/vm/oo/
Class.cpp 185 const DexField* pDexIField, InstField* field);
1829 DexField field; local
1841 DexField field; local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest2.java 607 int field = 1; field in class:SerializationStressTest2.NonPublicClassTest
610 field = 10;
615 return field == ((NonPublicClassTest) o).field;
620 field *= 10;
798 Class[] c = { String.class }; // *** synthetic field
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
syncable.cc 99 // before updating the field.
113 // First call to ShouldInclude happens before the field is updated.
120 // Second call to ShouldInclude happens after the field is updated.
186 // field keys/values in the kernel to the given dictionary.
197 T field = static_cast<T>(i); local
198 const std::string& key = enum_key_fn(field);
199 V* value = enum_value_fn(kernel.ref(field));
545 // Update the indices that depend on the ID field.
559 // Update the indices that depend on the PARENT_ID field.
1851 const string& field = kernel->ref(static_cast<StringField>(i)); local
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp 514 FieldDecl *Field;
517 CallMemberDtor(FieldDecl *Field, CXXDestructorDecl *Dtor)
518 : Field(Field), Dtor(Dtor) {}
523 LValue LHS = CGF.EmitLValueForField(ThisPtr, Field, 0);
547 FieldDecl *Field = MemberInit->getAnyMember();
548 QualType FieldType = CGF.getContext().getCanonicalType(Field->getType());
553 // If we are initializing an anonymous union field, drill down to the field.
559 LHS = CGF.EmitLValueForFieldInitialization(ThisPtr, Field, 0)
942 const FieldDecl *field; member in class:__anon4283::DestroyField
1037 const FieldDecl *field = *I; local
    [all...]
  /external/doclava/src/com/google/doclava/
Stubs.java 388 for (FieldInfo field : enumConstants) {
389 if (!field.constantLiteralValue().equals("null")) {
390 stream.println(field.name() + "(" + field.constantLiteralValue()
393 stream.println(field.name() + "(" + (i == N - 1 ? ");" : "),"));
413 for (FieldInfo field : cl.allSelfFields()) {
414 if (!field.isDocOnly()) {
415 if (!field.isStatic() && field.isFinal() && !fieldIsInitialized(field)) {
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 156 // field uniqueness check done to detect double instrumentation:
187 // add a Fieldref for the runtime coverage collector field:
197 // note that post-4019 builds can modify this field outside of <clinit> (although
199 // to declare this field final:
203 // add declared field:
279 final Field_info field = fields.get (existing [f]); local
280 if ((field.getAccessFlags () & (IAccessFlags.ACC_STATIC | IAccessFlags.ACC_FINAL))
319 // if we get here, the class declares a 'serialVersionUID' field
324 m_log.warning ("field that is not static and final: this is likely an implementation mistake");
582 // store in the static field
    [all...]
  /external/icu4c/common/
putil.c 2015 uint8_t field; local
    [all...]
  /external/icu4c/i18n/
dtptngen.cpp 141 // patternChar, field, type, minLen, weight
451 UnicodeString field = fp->items[i]; local
452 if ( fp->isQuoteLiteral(field) ) {
460 if (fp->isPatternSeparator(field) && gotMm) {
461 mmss+=field;
464 UChar ch=field.charAt(0);
467 mmss+=field;
474 mmss+= field;
497 UnicodeString rbPattern, value, field; local
710 DateTimePatternGenerator::setAppendItemFormat(UDateTimePatternField field, const UnicodeString& value)
1003 UnicodeString field = fp->items[i]; local
1564 UnicodeString field = fp->items[i]; local
    [all...]
smpdtfmt.cpp 773 // do not use the input calendar for field calculation.
833 /* Map calendar field into calendar field level.
834 * the larger the level, the smaller the field unit.
853 /* Map calendar field LETTER into calendar field level.
854 * the larger the level, the smaller the field unit.
870 // Map index into pattern character string to Calendar field number.
890 // Map index into pattern character string to DateFormat field number
1466 UCalendarDateFields field = fgPatternIndexToCalendarField[patternCharIndex]; local
2392 UCalendarDateFields field = fgPatternIndexToCalendarField[patternCharIndex]; local
    [all...]
  /external/ipsec-tools/src/racoon/
crypto_openssl.c 140 char *field, *value; local
157 dst = field = &buf[0];
191 field, value);
194 if (!X509_NAME_add_entry_by_txt(name, field,
199 "Invalid DN field: %s=%s\n",
200 field, value);
207 dst = field = &buf[i + 1];
217 field, value);
220 if (!X509_NAME_add_entry_by_txt(name, field,
225 "Invalid DN field: %s=%s\n"
    [all...]
  /external/javassist/src/main/javassist/
CtBehavior.java 515 CtField field = new CtField(type, fname, cc); local
516 field.setModifiers(Modifier.PUBLIC | Modifier.STATIC);
517 cc.addField(field, CtField.Initializer.byNew(type));
676 * it may assign a value to an instance field directly declared in this
    [all...]
  /external/mesa3d/src/glsl/
ir.h 174 * entire variable (i.e., it's just one array element, struct field), \c NULL
343 * The precise meaning of this field depends on the nature of the variable.
350 * - Other: This field is not currently used.
617 * If any of the loop control fields are non-\c NULL, this field must be
697 * For non-vector types in the LHS, this field will be zero. For vector
1449 const char *field; member in class:ir_dereference_record
    [all...]
  /external/mksh/src/
funcs.c 876 int thing = 0, field, base, optc; local
905 * sets right justify in a field of 12). This allows options
986 field = 0;
987 if (fieldstr && !bi_getn(fieldstr, &field))
1052 } else if (!typeset(wp[i], fset, fclr, field, base)) {
1132 shprintf("-L%d ", vp->u2.field);
1134 shprintf("-R%d ", vp->u2.field);
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java 205 * because a field has an undefined type or because two messages
364 /** Look up and cross-link all field types, etc. */
477 /** Determines if the given field number is an extension. */
489 * Finds a field by name.
490 * @param name The unqualified name of the field (e.g. "foo").
491 * @return The field's descriptor, or {@code null} if not found.
504 * Finds a field by field number.
505 * @param number The field number within this message type.
506 * @return The field's descriptor, or {@code null} if not found
    [all...]
  /external/quake/quake/src/WinQuake/
snd_gus.cpp 36 void ini_fgets(FILE *f, const char *section, const char *field, char *s);
132 // Sees if the current string is field "name" (i.e. "name"=...).
133 // If "name"=="*", sees if the current string is any field
210 // Extracts the field name from a field line
242 // Returns the field data from string s.
284 // Delete any field buffers that correspond to this section
294 // Adds a field to the buffer
298 char field[MAX_FIELD_WIDTH+1]; local
300 // Extract field name
    [all...]
  /external/v8/src/
d8.js     [all...]
unicode.cc 97 int32_t field = TableGet<kEntryDist>(table, low); local
98 uchar entry = GetEntry(field);
99 bool is_start = IsStart(field);
152 int32_t field = TableGet<kEntryDist>(table, low); local
153 uchar entry = GetEntry(field);
154 bool is_start = IsStart(field);
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config.c 1382 /* STR: Define a string variable for an ASCII string; f = field name */
1929 const struct parse_data *field = &ssid_fields[i]; local
1968 const struct parse_data *field; local
2037 const struct parse_data *field = &ssid_fields[i]; local
2070 const struct parse_data *field = &ssid_fields[i]; local
2509 const struct global_parse_data *field = &global_fields[i]; local
    [all...]

Completed in 1058 milliseconds

<<11121314151617