HomeSort by relevance Sort by last modified time
    Searched full:fields (Results 1 - 25 of 6196) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/tests/f_bad_disconnected_inode/
name 1 Disconnected inode with bad fields
  /packages/wallpapers/Basic/
proguard.flags 2 public <fields>;
  /packages/wallpapers/MusicVisualization/
proguard.flags 2 public <fields>;
  /dalvik/tests/084-class-init/
expected.txt 7 Fields (child thread): 111222333444
8 Fields (main thread): 111222333444
  /dalvik/tests/003-omnibus-opcodes/src2/
UnresStuff.java 2 * Unresolved classes / fields / methods in a resolved class.
  /cts/apps/CtsVerifier/
proguard.flags 6 private <fields>;
  /frameworks/compile/slang/tests/F_struct_bitfield/
stderr.txt.expect 1 struct_bitfield.rs:5:9: error: bit fields are not able to be exported: 's.x'
  /dalvik/dx/tests/014-field-attrib-ConstantValue/
expected.txt 44 fields[0]:
55 end fields[0]
57 fields[1]:
68 end fields[1]
70 fields[2]:
81 end fields[2]
83 fields[3]:
94 end fields[3]
96 fields[4]:
107 end fields[4
    [all...]
small-class.txt 49 # fields[0]
59 # fields[1]
69 # fields[2]
79 # fields[3]
89 # fields[4]
99 # fields[5]
109 # fields[6]
119 # fields[7]
129 # fields[8]
  /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);
  /external/webkit/Source/WebKit/chromium/src/
WebPasswordFormData.cpp 54 bool locateSpecificPasswords(PasswordFormFields* fields,
58 ASSERT(fields);
61 switch (fields->passwords.size()) {
64 *password = fields->passwords[0];
67 if (fields->passwords[0]->value() == fields->passwords[1]->value())
69 *password = fields->passwords[0];
72 *oldPassword = fields->passwords[0];
73 *password = fields->passwords[1];
77 if (fields->passwords[0]->value() == fields->passwords[1]->value(
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
DynamicMessage.java 48 private final FieldSet<FieldDescriptor> fields; field in class:DynamicMessage
55 private DynamicMessage(Descriptor type, FieldSet<FieldDescriptor> fields,
58 this.fields = fields;
151 return fields.getAllFields();
156 return fields.hasField(field);
161 Object result = fields.getField(field);
174 return fields.getRepeatedFieldCount(field);
179 return fields.getRepeatedField(field, index);
187 FieldSet<FieldDescriptor> fields) {
254 private FieldSet<FieldDescriptor> fields; field in class:DynamicMessage.Builder
    [all...]
  /external/chromium/webkit/glue/
form_data.cc 19 fields(data.fields) {
31 fields == form.fields);
  /external/icu4c/test/intltest/
ucdtest.h 12 char *fields[][2], int32_t fieldCount,
17 char *fields[][2], int32_t fieldCount,
43 char *fields[][2], int32_t fieldCount,
48 char *fields[][2], int32_t fieldCount,
  /packages/wallpapers/MagicSmoke/
proguard.flags 2 public <fields>;
  /external/e2fsprogs/tests/f_bad_local_jnl/
expect.1 1 Found invalid V2 journal superblock fields (from V1 journal).
2 Clearing fields beyond the V1 journal superblock...
  /packages/apps/Gallery2/
proguard.flags 5 # Since we annotate on the fields and use reflection to create SQL
9 @com.android.gallery3d.common.Entry$Column <fields>;
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
MetaData.java 38 * These fields are updated atomically with the database.
39 * If fields are added or removed from the CalendarMetaData table, those
42 public class Fields {
49 * The cached copy of the meta-data fields from the database.
51 private Fields mFields = new Fields();
74 * Returns a copy of all the MetaData fields. This method grabs a
75 * database lock to read all the fields atomically.
77 * @return a copy of all the MetaData fields.
79 public Fields getFields()
80 Fields fields = new Fields(); local
110 Fields fields = new Fields(); local
    [all...]
  /libcore/luni/src/main/java/java/util/
GregorianCalendar.java 372 if (fields[ERA] == AD) {
390 int month = fields[MONTH] + value;
399 set(YEAR, fields[YEAR] + value);
400 int days = daysInMonth(isLeapYear(fields[YEAR]), fields[MONTH]);
401 if (fields[DATE] > days) {
502 fields[DAY_OF_YEAR] = dayOfYear;
503 if(fields[YEAR] == changeYear && gregorianCutover <= timeVal + zoneOffset){
507 boolean leapYear = isLeapYear(fields[YEAR]);
513 fields[DAY_OF_WEEK] = mod7(days - 3) + 1
    [all...]
  /external/clang/include/clang/Sema/
CXXFieldCollector.h 26 /// Fields - Contains all FieldDecls collected during parsing of a C++
27 /// class. When a nested class is entered, its fields are appended to the
28 /// fields of its parent class, when it is exited its fields are removed.
29 llvm::SmallVector<FieldDecl*, 32> Fields;
31 /// FieldCount - Each entry represents the number of fields collected during
42 // // At this point, Fields contains [x,y,q] decls and FieldCount contains
46 // // At this point, Fields contains [x,y,z] decls and FieldCount contains
56 Fields.push_back(D);
60 /// getCurNumField - The number of fields added to the currently parsed class
    [all...]
  /external/chromium/chrome/browser/autofill/
form_structure_unittest.cc 31 form.fields.begin();
32 iter != form.fields.end(); ++iter) {
54 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("username"),
60 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("password"),
66 form.fields.push_back(webkit_glue::FormField(string16(),
74 // All fields are counted.
81 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("username"),
87 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("password"),
93 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("state"),
99 form.fields.push_back(webkit_glue::FormField(string16()
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldObjectInputStreamGetFieldTest.java 100 ObjectInputStream.GetField fields = object.getField; local
103 fields.defaulted("noField");
108 fields.defaulted("longValue"));
110 // Now the same with defaulted fields.
114 fields = defaultedObject.getField;
117 fields.defaulted("longValue"));
124 ObjectInputStream.GetField fields = object.getField; local
128 fields.get("noValue", false);
134 fields.get("noValue", (byte) 0);
140 fields.get("noValue", (char) 0)
    [all...]
  /external/kernel-headers/original/linux/
irq_cpustat.h 14 * Simple wrappers reducing source bloat. Define all irq_stat fields
24 /* arch independent irq_stat fields */
28 /* arch dependent irq_stat fields */
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPHeaderNamesCache.java 15 Field[] fields = SIPHeaderNames.class.getFields(); typedefs
16 for (int i = 0; i < fields.length; i++) {
17 Field field = fields[i];
  /external/bluetooth/glib/tests/
gen-casefold-txt.pl 29 # Names of fields in the CaseFolding table
66 my @fields = split ('\s*;\s*', $_, 30);
68 my $raw_code = $fields[$FOLDING_CODE];
71 if ($#fields != 3)
73 printf STDERR ("Entry for $raw_code has wrong number of fields (%d)\n", $#fields);
78 next if ($fields[$FOLDING_STATUS] =~ /^[ST]$/);
80 @values = map { hex ($_) } split /\s+/, $fields[$FOLDING_MAPPING];

Completed in 582 milliseconds

1 2 3 4 5 6 7 8 91011>>