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

1 23 4 5 6 7 8 91011>>

  /art/test/090-loop-formation/
info.txt 3 in the loop region, and the JIT compiler won't choke on unresolved fields.
  /cts/apps/CtsVerifier/
proguard.flags 6 private <fields>;
  /dalvik/tests/003-omnibus-opcodes/src/
UnresStuff.java 2 * Unresolved classes / fields / methods in a resolved class.
  /dalvik/tests/064-field-access/src/other/
OtherPackage.java 6 * Declare a few fields to reflect upon.
  /dalvik/tests/090-loop-formation/
info.txt 3 in the loop region, and the JIT compiler won't choke on unresolved fields.
  /external/chromium/chrome/browser/sync/protocol/
theme_specifics.proto 8 // any fields in this file.
21 // If set, we're using a custom theme and all custom_* fields should be
23 // and all custom_* fields should be omitted.
36 // Custom-theme-specific fields.
  /external/chromium_org/chrome/common/extensions/docs/templates/private/permissions/
tabs.html 1 Gives your {{platform}} access to privileged fields of the <code>$ref:[tabs.Tab Tab]</code> objects used by several APIs including $ref:[tabs chrome.tabs] and $ref:[windows chrome.windows]. In many circumstances your {{platform}} will not need to declare the <code>"tabs"</code> permission to make use of these APIs.
  /external/chromium_org/chrome_frame/test/data/test_dlls/
README 6 numbers in the FileVersion and ProductVersion fields of their
  /external/chromium_org/sync/protocol/
theme_specifics.proto 8 // any fields in this file.
19 // If set, we're using a custom theme and all custom_* fields should be
21 // and all custom_* fields should be omitted.
34 // Custom-theme-specific fields.
  /external/clang/test/Index/
targeted-top.h 16 #include "targeted-fields.h"
  /external/mockito/src/org/mockito/internal/util/reflection/
LenientCopyTool.java 31 Field[] fields = classFrom.getDeclaredFields(); local
33 for (int i = 0; i < fields.length; i++) {
34 // ignore static fields
35 Field field = fields[i];
Fields.java 18 * Small fluent reflection tools to work with fields.
23 public abstract class Fields {
26 * Instance fields declared in the class and superclasses of the given instance.
28 * @param instance Instance from which declared fields will be retrieved.
40 * Instance fields declared in the class of the given instance.
42 * @param instance Instance from which declared fields will be retrieved.
51 private static List<InstanceField> instanceFieldsIn(Object instance, Field[] fields) {
53 for (Field field : fields) {
61 * Accept fields annotated by the given annotations.
82 * Accept fields with non null value
    [all...]
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/de-DE/
de-DE_dbg.txt 3 # header fields:
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/en-GB/
en-GB_dbg.txt 3 # header fields:
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/en-US/
en-US_dbg.txt 3 # header fields:
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/es-ES/
es-ES_dbg.txt 3 # header fields:
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/fr-FR/
fr-FR_dbg.txt 3 # header fields:
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/it-IT/
it-IT_dbg.txt 3 # header fields:
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
readme.txt 2 (by using the four corners trick in the Donut Welcome Screen). The contacts have different fields
  /external/junit/src/org/junit/internal/runners/rules/
RuleFieldValidator.java 13 * A RuleFieldValidator validates the rule fields of a
18 * validates fields with a {@link ClassRule} annotation and the
19 * {@link #RULE_VALIDATOR} validates fields with a {@link Rule} annotation.
23 * Validates fields with a {@link ClassRule} annotation.
27 * Validates fields with a {@link Rule} annotation.
48 List<FrameworkField> fields= target.getAnnotatedFields(fAnnotation); local
49 for (FrameworkField each : fields)
  /external/chromium_org/components/autofill/core/browser/
form_structure_unittest.cc 47 form.fields.begin();
48 iter != form.fields.end(); ++iter) {
74 form.fields.push_back(field);
79 form.fields.push_back(field);
84 form.fields.push_back(field);
90 form.fields.push_back(field);
92 // The render process sends all fields to browser including fields with
107 form.fields.push_back(field);
112 form.fields.push_back(field)
    [all...]
personal_data_manager_unittest.cc 600 form.fields.push_back(field);
603 form.fields.push_back(field);
606 form.fields.push_back(field);
609 form.fields.push_back(field);
611 form.fields.push_back(field);
613 form.fields.push_back(field);
615 form.fields.push_back(field);
642 form.fields.push_back(field);
645 form.fields.push_back(field);
647 form.fields.push_back(field)
    [all...]
  /frameworks/base/core/jni/
android_media_ToneGenerator.cpp 39 static fields_t fields; variable
45 fields.context);
58 fields.context);
70 fields.context);
80 fields.context);
83 env->SetIntField(thiz, fields.context, 0);
92 env->SetIntField(thiz, fields.context, 0);
106 env->SetIntField(thiz, fields.context, (int)lpToneGen);
108 ALOGV("ToneGenerator fields.context: %x", env->GetIntField(thiz, fields.context))
    [all...]
  /external/chromium/chrome/browser/autofill/
personal_data_manager_unittest.cc 525 form.fields.push_back(field);
528 form.fields.push_back(field);
531 form.fields.push_back(field);
534 form.fields.push_back(field);
537 form.fields.push_back(field);
540 form.fields.push_back(field);
543 form.fields.push_back(field);
572 form.fields.push_back(field);
575 form.fields.push_back(field);
578 form.fields.push_back(field)
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
FieldSet.java 43 * A class which represents an arbitrary set of fields of some message type.
71 private final SmallSortedMap<FieldDescriptorType, Object> fields; field in class:FieldSet
77 this.fields = SmallSortedMap.newFieldMap(16);
85 this.fields = SmallSortedMap.newFieldMap(0);
110 fields.makeImmutable();
132 // We can't just call fields.clone because List objects in the map
135 for (int i = 0; i < fields.getNumArrayEntries(); i++) {
136 Map.Entry<FieldDescriptorType, Object> entry = fields.getArrayEntryAt(i);
141 fields.getOverflowEntries()) {
153 fields.clear()
    [all...]

Completed in 897 milliseconds

1 23 4 5 6 7 8 91011>>