HomeSort by relevance Sort by last modified time
    Searched full:fields (Results 226 - 250 of 10872) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/test/intltest/
callimts.h 70 * sense to test the day fields; the time fields are not tested by this
71 * method. If null, then test all standard fields.
79 * doLimitsTest with default test duration and fields
locnmtst.h 22 * Test methods to set and get data fields
  /external/mockito/src/org/mockito/internal/configuration/
DefaultInjectionEngine.java 13 * Inject mock/spies dependencies for fields annotated with @InjectMocks
  /external/v8/tools/
logreader.js 131 * @param {Array.<string>} fields Log record.
134 LogReader.prototype.dispatchLogRow_ = function(fields) {
136 var command = fields[0];
145 // Parse fields.
150 parsedFields.push(fields[1 + i]);
152 parsedFields.push(parser(fields[1 + i]));
155 parsedFields.push(fields.slice(1 + i));
178 var fields = this.csvParser_.parseLine(line);
179 this.dispatchLogRow_(fields);
  /frameworks/base/tests/CoreTests/android/core/
HttpHeaderTest.java 36 * The HTTP specification states the following about the fields:
37 * Multiple message-header fields with the same field-name MAY be present
40 * possible to combine the multiple header fields into one "field-name:
43 * comma. The order in which header fields with the same field-name are
  /libcore/luni/src/test/java/libcore/java/io/
SerializationTest.java 33 ObjectStreamField[] fields = osc.getFields(); local
34 assertEquals(1, fields.length);
35 assertEquals("nonTransientInt", fields[0].getName());
36 assertEquals(int.class, fields[0].getType());
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
virtio_config.h 9 /* We have seen device and processed generic fields (VIRTIO_CONFIG_F_VIRTIO) */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
virtio_config.h 9 /* We have seen device and processed generic fields (VIRTIO_CONFIG_F_VIRTIO) */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
virtio_config.h 9 /* We have seen device and processed generic fields (VIRTIO_CONFIG_F_VIRTIO) */
  /frameworks/base/media/jni/audioeffect/
android_media_Visualizer.cpp 50 // these fields provide access from C++ to the...
58 static fields_t fields; variable
196 fields.midPostNativeEvent,
217 fields.midPostNativeEvent,
235 thiz, fields.fidNativeVisualizer);
253 fields.clazzEffect = NULL;
262 fields.clazzEffect = (jclass)env->NewGlobalRef(clazz);
273 fields.midPostNativeEvent = env->GetStaticMethodID(
274 fields.clazzEffect,
276 if (fields.midPostNativeEvent == NULL)
    [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 195 llvm::SmallVectorImpl<llvm::Constant *> &fields);
218 /// \brief Emits a full member pointer with the fields common to data and
659 // multiple fields. Polymorphic classes have a vfptr at offset zero, so we can
660 // use zero for null. If there are multiple fields, we can use zero even if it
662 // fields.
686 llvm::SmallVector<llvm::Type *, 4> fields; local
688 fields.push_back(CGM.VoidPtrTy); // FunctionPointerOrVirtualThunk
690 fields.push_back(CGM.IntTy); // FieldOffset
694 fields.push_back(CGM.IntTy);
696 fields.push_back(CGM.IntTy)
732 llvm::SmallVector<llvm::Constant *, 4> fields; local
908 llvm::SmallVector<llvm::Constant *, 4> fields; local
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
echo_client.py 109 # and the /origin/ value, converted to ASCII lowercase, to /fields/.
126 # character, and /hostport/, to /fields/.
145 def _get_mandatory_header(fields, name):
146 """Gets the value of the header specified by name from fields.
149 in fields. Otherwise, raises an ClientHandshakeError.
152 values = fields.get(name.lower())
162 def _validate_mandatory_header(fields, name,
165 fields.
170 expects that there's only one header with the specified name in fields.
174 value = _get_mandatory_header(fields, name
    [all...]
  /external/chromium_org/mojo/public/bindings/generators/
mojom_test.py 44 len(kind1.fields) != len(kind2.fields):
46 for i in range(len(kind1.fields)):
47 if not FieldsAreEqual(kind1.fields[i], kind2.fields[i]):
131 errors += EXPECT_EQ(2, len(module.structs[0].fields))
132 errors += EXPECT_EQ('testfield1', module.structs[0].fields[0].name)
133 errors += EXPECT_EQ(mojom.INT32, module.structs[0].fields[0].kind)
134 errors += EXPECT_EQ('testfield2', module.structs[0].fields[1].name)
135 errors += EXPECT_EQ(mojom.Array, module.structs[0].fields[1].kind.__class__
    [all...]
  /external/iproute2/misc/
lnstat_util.c 44 lf->fields[j].values[i] = 0;
58 lf->fields[j].values[i] = f;
60 lf->fields[j].values[i] += f;
101 for (i = 0, lfi = &lf->fields[i];
102 i < lf->num_fields; i++, lfi = &lf->fields[i]) {
127 lf->fields[i].file = lf;
128 strncpy(lf->fields[i].name, tok, LNSTAT_MAX_FIELD_NAME_LEN);
204 /* lnstat_scan_dir - find and parse all available statistics files/fields */
288 fprintf(outfd, "\t%2u: %s\n", i+1, lf->fields[i].name);
318 if (!strcmp(field, lf->fields[i].name))
    [all...]
  /frameworks/base/media/jni/soundpool/
android_media_SoundPool_SoundPoolImpl.cpp 34 } fields; variable in typeref:struct:fields_t
37 return (SoundPool*)env->GetIntField(thiz, fields.mNativeContext);
175 env->CallStaticVoidMethod(fields.mSoundPoolClass, fields.mPostEvent, user, event.mMsg, event.mArg1, event.mArg2, NULL);
188 env->SetIntField(thiz, fields.mNativeContext, (int)ap);
211 env->SetIntField(thiz, fields.mNativeContext, 0);
302 fields.mNativeContext = env->GetFieldID(clazz, "mNativeContext", "I");
303 if (fields.mNativeContext == NULL) {
308 fields.mPostEvent = env->GetStaticMethodID(clazz, "postEventFromNative",
310 if (fields.mPostEvent == NULL)
    [all...]
  /external/chromium/chrome/browser/autofill/
autofill_metrics_unittest.cc 163 AutofillField* field = (*fields())[i];
227 form.fields.push_back(field);
233 form.fields.push_back(field);
239 form.fields.push_back(field);
245 form.fields.push_back(field);
251 form.fields.push_back(field);
258 form.fields.push_back(field);
422 form.fields.push_back(field);
469 form.fields.push_back(field);
474 form.fields.push_back(field)
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/
ParseContext.cpp 17 // Sub- vector and matrix fields
25 bool TParseContext::parseVectorFields(const TString& compString, int vecSize, TVectorFields& fields, const TSourceLoc& line)
27 fields.num = (int) compString.size();
28 if (fields.num > 4) {
39 for (int i = 0; i < fields.num; ++i) {
42 fields.offsets[i] = 0;
46 fields.offsets[i] = 0;
50 fields.offsets[i] = 0;
54 fields.offsets[i] = 1;
58 fields.offsets[i] = 1
661 const TFieldList& fields = type.getStruct()->fields(); local
1366 const TFieldList& fields = node->getType().getStruct()->fields(); local
1487 TVectorFields fields; local
    [all...]
  /art/test/076-boolean-put/src/
Main.java 18 * Test access to private boolean fields.
20 * Accessing private boolean fields from an inner class causes the compiler
  /art/test/089-many-methods/
build 20 # Write out files with 65500 total static fields, instance fields, and methods
  /cts/tools/dex-tools/src/dex/structure/
DexClass.java 41 * Returns a list containing all fields declared by this {@code DexClass}.
43 * @return a list containing all fields declared by this {@code DexClass}
  /cts/tools/signature-tools/src/signature/model/
IAnnotatableElement.java 27 * <li>Fields (IField), including the annotation fields and enum constants
  /dalvik/dexgen/src/com/android/dexgen/rop/
FieldList.java 20 * Interface for lists of fields.
35 * Get the number of fields in the list.
  /dalvik/dx/src/com/android/dx/cf/iface/
FieldList.java 20 * Interface for lists of fields.
35 * Get the number of fields in the list.
  /dalvik/tests/076-boolean-put/src/
Main.java 18 * Test access to private boolean fields.
20 * Accessing private boolean fields from an inner class causes the compiler
  /dalvik/tests/089-many-methods/
build 20 # Write out files with 65500 total static fields, instance fields, and methods

Completed in 664 milliseconds

1 2 3 4 5 6 7 8 91011>>