HomeSort by relevance Sort by last modified time
    Searched refs:fields (Results 176 - 200 of 1801) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/autotest/tko/
frontend.py 85 fields = ','.join(query_fields_list)
88 rows = db_obj.select(fields, 'tko_test_view',
169 fields = ['machine_idx', 'hostname', 'machine_group', 'owner']
171 for row in db.select(','.join(fields), 'tko_machines', where):
187 fields = ['kernel_idx', 'kernel_hash', 'base', 'printable']
188 rows = db.select(','.join(fields), 'tko_kernels', where)
204 fields = ['test_idx', 'job_idx', 'test', 'subdir',
207 for row in db.select(','.join(fields), 'tko_tests', where,
215 fields = ['test_idx', 'job_idx', 'test', 'subdir',
217 fields = ['t.'+field for field in fields
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexClassImpl.java 51 private List<DexField> fields; field in class:DexClassImpl
216 EncodedField[] fields = new EncodedField[size]; local
217 for (int i = 0; i < fields.length; i++) {
218 fields[i] = new EncodedField();
219 fields[i].field_idx_diff = buffer.readUleb128();
220 fields[i].access_flags = buffer.readUleb128();
222 return fields;
249 if (fields == null) {
250 fields = new ArrayList<DexField>();
252 fields.addAll(getDexFields(classDataItem.staticFields))
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
boto_translation.py 184 def GetBucket(self, bucket_name, provider=None, fields=None):
193 fields=fields)
197 def ListBuckets(self, project_id=None, provider=None, fields=None):
200 get_fields = self._ListToGetFields(list_fields=fields)
218 yield self._BotoBucketToBucket(bucket, fields=get_fields)
224 fields=None):
274 return self.GetBucket(bucket_name, fields=fields)
279 provider=None, fields=None)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_uuid.py 19 for (string, curly, hex, bytes, bytes_le, fields, integer, urn,
152 uuid.UUID(fields=fields), uuid.UUID(int=integer),
159 equal(u.fields, fields)
160 equal(u.time_low, fields[0])
161 equal(u.time_mid, fields[1])
162 equal(u.time_hi_version, fields[2])
163 equal(u.clock_seq_hi_variant, fields[3])
164 equal(u.clock_seq_low, fields[4]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_uuid.py 19 for (string, curly, hex, bytes, bytes_le, fields, integer, urn,
152 uuid.UUID(fields=fields), uuid.UUID(int=integer),
159 equal(u.fields, fields)
160 equal(u.time_low, fields[0])
161 equal(u.time_mid, fields[1])
162 equal(u.time_hi_version, fields[2])
163 equal(u.clock_seq_hi_variant, fields[3])
164 equal(u.clock_seq_low, fields[4]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_uuid.py 19 for (string, curly, hex, bytes, bytes_le, fields, integer, urn,
152 uuid.UUID(fields=fields), uuid.UUID(int=integer),
159 equal(u.fields, fields)
160 equal(u.time_low, fields[0])
161 equal(u.time_mid, fields[1])
162 equal(u.time_hi_version, fields[2])
163 equal(u.clock_seq_hi_variant, fields[3])
164 equal(u.clock_seq_low, fields[4]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_uuid.py 19 for (string, curly, hex, bytes, bytes_le, fields, integer, urn,
152 uuid.UUID(fields=fields), uuid.UUID(int=integer),
159 equal(u.fields, fields)
160 equal(u.time_low, fields[0])
161 equal(u.time_mid, fields[1])
162 equal(u.time_hi_version, fields[2])
163 equal(u.clock_seq_hi_variant, fields[3])
164 equal(u.clock_seq_low, fields[4]
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ProducerFactoryGenerator.java 108 ImmutableMap<BindingKey, FrameworkField> fields = local
116 fields.get(binding.monitorRequest().get().bindingKey()).name(),
147 for (FrameworkField bindingField : fields.values()) {
174 String name = fields.get(dependency.bindingKey()).name();
190 FutureTransform futureTransform = FutureTransform.create(fields, binding, asyncDependencies);
225 protected final ImmutableMap<BindingKey, FrameworkField> fields; field in class:ProducerFactoryGenerator.FutureTransform
228 FutureTransform(ImmutableMap<BindingKey, FrameworkField> fields, ProductionBinding binding) {
229 this.fields = fields;
251 ImmutableMap<BindingKey, FrameworkField> fields,
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/
ICUDurationTest.java 44 private final Map<Field, Number> fields; field in class:ICUDurationTest.ICUTestDuration
47 fields = new HashMap<Field, Number>();
60 fields.put(DatatypeConstants.DAYS, d);
65 fields.put(DatatypeConstants.HOURS, h);
70 fields.put(DatatypeConstants.MINUTES, m);
72 fields.put(DatatypeConstants.SECONDS, (float)millis / 1000);
76 * Pass in negative values for fields not to be set.
80 fields = new HashMap<Field, Number>();
81 if (y >= 0) { fields.put(DatatypeConstants.YEARS, y); }
82 if (months >= 0) { fields.put(DatatypeConstants.MONTHS, months);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
ICUDurationTest.java 40 private final Map<Field, Number> fields; field in class:ICUDurationTest.ICUTestDuration
43 fields = new HashMap<Field, Number>();
56 fields.put(DatatypeConstants.DAYS, d);
61 fields.put(DatatypeConstants.HOURS, h);
66 fields.put(DatatypeConstants.MINUTES, m);
68 fields.put(DatatypeConstants.SECONDS, (float)millis / 1000);
72 * Pass in negative values for fields not to be set.
76 fields = new HashMap<Field, Number>();
77 if (y >= 0) { fields.put(DatatypeConstants.YEARS, y); }
78 if (months >= 0) { fields.put(DatatypeConstants.MONTHS, months);
    [all...]
  /frameworks/base/core/jni/android/graphics/
SurfaceTexture.cpp 54 static fields_t fields; member in namespace:android
83 (GLConsumer*)env->GetLongField(thiz, fields.surfaceTexture);
90 env->SetLongField(thiz, fields.surfaceTexture, (jlong)surfaceTexture.get());
97 (IGraphicBufferProducer*)env->GetLongField(thiz, fields.producer);
104 env->SetLongField(thiz, fields.producer, (jlong)producer.get());
112 env->GetLongField(thiz, fields.frameAvailableListener);
119 env->SetLongField(thiz, fields.frameAvailableListener, (jlong)listener.get());
123 return (GLConsumer*)env->GetLongField(thiz, fields.surfaceTexture);
127 return (IGraphicBufferProducer*)env->GetLongField(thiz, fields.producer);
210 env->CallStaticVoidMethod(mClazz, fields.postEvent, mWeakThiz)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
generate_proto_test.py 50 def MakeMessage(self, name='MyMessage', fields=[]):
53 message.fields = fields
55 messages_list = getattr(self.file_descriptor, 'fields', [])
76 self.MakeMessage(fields=[field])
93 self.MakeMessage(fields=[field])
110 self.MakeMessage(fields=[field])
127 self.MakeMessage(fields=[field])
144 self.MakeMessage(fields=[field])
162 self.MakeMessage(fields=[field]
    [all...]
  /external/iproute2/misc/
lnstat_util.c 45 lf->fields[j].values[i] = 0;
62 lf->fields[j].values[i] = f;
64 lf->fields[j].values[i] += f;
99 for (i = 0, lfi = &lf->fields[i];
100 i < lf->num_fields; i++, lfi = &lf->fields[i]) {
123 lf->fields[i].file = lf;
124 strncpy(lf->fields[i].name, tok, LNSTAT_MAX_FIELD_NAME_LEN);
204 /* lnstat_scan_dir - find and parse all available statistics files/fields */
292 fprintf(outfd, "\t%2u: %s\n", i+1, lf->fields[i].name);
322 if (!strcmp(field, lf->fields[i].name))
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
FieldProviderTransformer.java 49 private Map fields; field in class:FieldProviderTransformer
56 fields = new HashMap();
64 fields.put(name, type);
82 final String[] names = (String[])fields.keySet().toArray(new String[fields.size()]);
113 Type type = (Type)fields.get(names[i]);
141 Type type = (Type)fields.get(names[key]);
159 Type type = (Type)fields.get(names[key]);
179 Type type = (Type)fields.get(key);
198 Type type = (Type)fields.get(key)
    [all...]
  /libcore/ojluni/src/main/java/java/text/
DecimalFormat.java 1458 ObjectOutputStream.PutField fields = stream.putFields(); local
1529 ObjectInputStream.GetField fields = stream.readFields(); local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
ls.py 272 fields = {'bucket': bucket_blr.url_string,
279 fields['versioning'] = bucket.versioning and bucket.versioning.enabled
280 fields['website_config'] = 'Present' if bucket.website else 'None'
281 fields['logging_config'] = 'Present' if bucket.logging else 'None'
282 fields['cors_config'] = 'Present' if bucket.cors else 'None'
283 fields['lifecycle_config'] = 'Present' if bucket.lifecycle else 'None'
287 for key in fields:
288 previous_value = fields[key]
296 fields[key] = new_value
307 '\tDefault ACL:\t\t\t{default_acl}'.format(**fields))
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DumpFields.java 74 String outFile = "fields.txt";
121 SparseArray<FieldReference> fields = classProto.getInstanceFields(); local
122 String className = "Class " + classDef.getType() + " : " + fields.size() + " instance fields\n";
124 for (int i=0;i<fields.size();i++) {
125 String field = fields.keyAt(i) + ":" + fields.valueAt(i).getType() + " " + fields.valueAt(i).getName() + "\n";
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/net/
ChartDataLoader.java 42 private static final String KEY_FIELDS = "fields";
51 public static Bundle buildArgs(NetworkTemplate template, AppItem app, int fields) {
55 args.putInt(KEY_FIELDS, fields);
75 final int fields = mArgs.getInt(KEY_FIELDS); local
78 return loadInBackground(template, app, fields);
86 private ChartData loadInBackground(NetworkTemplate template, AppItem app, int fields)
89 data.network = mSession.getHistoryForNetwork(template, fields);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
JDWPClassTypeTestCase.java 109 * Returns for specified class array with information about fields of this class.
113 * @return array with information about fields.
125 FieldInfo[] fields = new FieldInfo[declared]; local
127 fields[i] =
133 return fields;
  /external/guice/extensions/grapher/src/com/google/inject/grapher/graphviz/
GraphvizNode.java 48 private Map<String, String> fields = Maps.newLinkedHashMap(); field in class:GraphvizNode
109 fields.put(portId, title);
113 return ImmutableMap.copyOf(fields);
  /frameworks/base/core/java/com/android/internal/util/
MessageUtils.java 45 * accessible static integer fields whose names begin with one of the specified {@prefixes}.
48 * @prefixes only consider fields names starting with one of these prefixes.
57 Field[] fields; local
59 fields = c.getDeclaredFields();
61 Log.e(TAG, "Can't list fields of class " + className);
65 for (Field field : fields) {
125 * @prefixes only consider fields names starting with one of these prefixes.
  /external/icu/android_icu4j/src/main/java/android/icu/util/
CECalendar.java 262 public static void jdToCE(int julianDay, int jdEpochOffset, int[] fields) {
269 fields[0] = 4 * c4 + (r4[0]/365 - r4[0]/1460); // 4 * <number of 4year cycle> + <years within the last cycle>
274 fields[1] = doy / 30; // 30 -> Coptic/Ethiopic month length up to 12th month
276 fields[2] = (doy % 30) + 1; // 1-based days in a month
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CECalendar.java 258 public static void jdToCE(int julianDay, int jdEpochOffset, int[] fields) {
265 fields[0] = 4 * c4 + (r4[0]/365 - r4[0]/1460); // 4 * <number of 4year cycle> + <years within the last cycle>
270 fields[1] = doy / 30; // 30 -> Coptic/Ethiopic month length up to 12th month
272 fields[2] = (doy % 30) + 1; // 1-based days in a month
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
Header.java 47 private List<Field> fields = new LinkedList<Field>(); field in class:Header
77 * Adds a field to the end of the list of fields.
88 fields.add(field);
92 * Gets the fields of this header. The returned list will not be
98 return Collections.unmodifiableList(fields);
103 * such fields defined in this header the first one will be returned.
120 * @return the list of fields.
136 for (Iterator<Field> it = fields.iterator(); it.hasNext();) {
  /development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnService.java 299 String[] fields = parameter.split(","); local
301 switch (fields[0].charAt(0)) {
303 builder.setMtu(Short.parseShort(fields[1]));
306 builder.addAddress(fields[1], Integer.parseInt(fields[2]));
309 builder.addRoute(fields[1], Integer.parseInt(fields[2]));
312 builder.addDnsServer(fields[1]);
315 builder.addSearchDomain(fields[1]);

Completed in 1914 milliseconds

1 2 3 4 5 6 78 91011>>