HomeSort by relevance Sort by last modified time
    Searched refs:Field (Results 726 - 750 of 955) sorted by null

<<21222324252627282930>>

  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONObject.java 29 import java.lang.reflect.Field;
388 * from the names array, and the values will be the field values associated
636 * Get an array of field names from a JSONObject.
638 * @return An array of field names, or null if there are no names.
657 * Get an array of field names from an Object.
659 * @return An array of field names, or null if there are no names.
666 Field[] fields = klass.getFields();
    [all...]
  /external/llvm/lib/Transforms/Scalar/
StraightLineStrengthReduce.cpp 267 uint64_t Field = cast<ConstantInt>(*I)->getZExtValue();
268 BaseOffset += DL->getStructLayout(STy)->getElementOffset(Field);
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 192 public static void printField(final FieldDescriptor field,
196 DEFAULT_PRINTER.printField(field, value, new TextGenerator(output));
199 public static String printFieldToString(final FieldDescriptor field,
203 printField(field, value, text);
211 * Outputs a textual representation of the value of given field value.
213 * @param field the descriptor of the field
214 * @param value the value of the field
217 * given field descriptor
220 public static void printFieldValue(final FieldDescriptor field,
445 final UnknownFieldSet.Field field = entry.getValue(); local
1314 FieldDescriptor field = null; local
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowParcel.java 18 import java.lang.reflect.Field;
834 Field f = c.getField("CREATOR");
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
AndroidFacade.java 60 import java.lang.reflect.Field;
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/nan/
WifiNanHalTest.java 48 import java.lang.reflect.Field;
758 Field field = WifiNanStateManager.class.getDeclaredField("sNanStateManagerSingleton"); local
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/
BackgroundScanSchedulerTest.java 42 import java.lang.reflect.Field;
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
BaseStaggeredGridLayoutManagerTest.java 9 import java.lang.reflect.Field;
67 Field field = Config.class.getDeclaredField(fieldName); local
71 field.set(newConfig, variation);
    [all...]
LinearLayoutManagerTest.java 39 import java.lang.reflect.Field;
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
RawContactDeltaListTests.java 44 import java.lang.reflect.Field;
99 final Field field = ContentProviderOperation.class.getDeclaredField("mValues"); local
100 field.setAccessible(true);
101 return (ContentValues) field.get(operation);
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.2/
kotlin-annotation-processing-1.0.2.jar 
  /system/tpm/trunks/
resource_manager_test.cc 34 using testing::Field;
231 // Creates a TPMS_CONTEXT with the given sequence field.
239 // Creates a serialized TPMS_CONTEXT with the given sequence field.
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
VmMirror.java 881 * Returns FieldID for specified class and field name.
884 * ClassID to find field
886 * field name
899 * @param field
900 * field name to get ID for
903 public long getFieldID(ReplyPacket request, String field) {
911 if (field.equals(fieldName)) {
2500 Field field = new Field(reply.getNextValueAsFieldID(), classID, local
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 792 class Field : public SExpr {
796 Field(SExpr *R, SExpr *B) : SExpr(COP_Field), Range(R), Body(B) {}
797 Field(const Field &C, SExpr *R, SExpr *B) // rewrite constructor
814 typename C::CType compare(const Field* E, C& Cmp) const {
1057 /// The destination is a pointer to a field, the source is the value to store.
    [all...]
  /system/connectivity/shill/vpn/
openvpn_driver_unittest.cc 63 using testing::Field;
378 UpdateIPConfig(Field(&IPConfig::Properties::address, "")));
386 UpdateIPConfig(Field(&IPConfig::Properties::address, "1.2.3.4")));
    [all...]
  /external/clang/lib/AST/
APValue.cpp 120 APValue::UnionData::UnionData() : Field(nullptr), Value(new APValue) {}
  /external/clang/lib/CodeGen/
CGDebugInfo.h 254 void CollectRecordNormalField(const FieldDecl *Field, uint64_t OffsetInBits,
277 /// Set the main CU's DwoId field to \p Signature.
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
ExecutionListBenchmark.java 497 for (java.lang.reflect.Field f : k.getDeclaredFields()) {
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 502 uint64_t Field = cast<ConstantInt>(Idx)->getZExtValue();
503 if (Field) {
505 TotalOffs += DL.getStructLayout(StTy)->getElementOffset(Field);
514 Ty = StTy->getElementType(Field);
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 98 // assigning to a field of BitsRecTy, which must have a BitsInit
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
Document.h 40 class Field;
  /external/proguard/src/proguard/classfile/editor/
ConstantPoolRemapper.java 328 public void visitConstantValueAttribute(Clazz clazz, Field field, ConstantValueAttribute constantValueAttribute)
  /external/proguard/src/proguard/optimize/evaluation/
SimpleEnumUseChecker.java 399 (member instanceof Field ?
400 ("is stored as more general type ["+parameterType+"] in field ["+clazz.getName()+"."+member.getName(clazz)+"]") :
  /external/proguard/src/proguard/shrink/
UsageMarker.java 258 // Is the field's class used?
263 // Mark the field body.
267 // Hasn't the field been marked as possibly being used yet?
270 // We can't process the field yet, because the class isn't
680 public void visitConstantValueAttribute(Clazz clazz, Field field, ConstantValueAttribute constantValueAttribute)
    [all...]
  /libcore/ojluni/src/main/java/java/security/
Security.java 713 Field f = null;
731 * field, we shouldn't try to set it. There
    [all...]

Completed in 1671 milliseconds

<<21222324252627282930>>