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

<<21222324252627282930>>

  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiConfigManagerTest.java 66 import java.lang.reflect.Field;
170 final Field configuredNetworksField =
184 final Field writerField = WifiConfigManager.class.getDeclaredField("mWriter");
187 final Field networkHistoryField =
192 final Field networkHistoryWriterField =
198 final Field moManagerField = WifiConfigManager.class.getDeclaredField("mMOManager");
606 Field wifiNetworkHistoryConfigFile =
689 final Field lastSelectedConfigurationField =
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
CallManagerTest.java 32 import java.lang.reflect.Field;
298 Field field = CallManager.class.getDeclaredField("EVENT_CALL_WAITING"); local
299 field.setAccessible(true);
300 int mEvent = (Integer) field.get(CallManager.getInstance());
304 field = CallManager.class.getDeclaredField("EVENT_PRECISE_CALL_STATE_CHANGED");
305 field.setAccessible(true);
306 mEvent = (Integer) field.get(CallManager.getInstance());
310 field = CallManager.class.getDeclaredField("EVENT_RINGBACK_TONE");
311 field.setAccessible(true)
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
ImsPhoneConnectionTest.java 44 import java.lang.reflect.Field;
231 Field field = ImsPhoneConnection.class.getDeclaredField("PAUSE_DELAY_MILLIS"); local
232 field.setAccessible(true);
233 waitForMs((Integer) field.get(null) + 50);
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ProxyTest.java 21 import java.lang.reflect.Field;
409 for (Field field : proxy.getClass().getDeclaredFields()) {
410 field.setAccessible(true);
411 assertFalse(field.isAnnotationPresent(Deprecated.class));
  /libcore/luni/src/test/java/libcore/java/nio/channels/
SocketChannelTest.java 22 import java.lang.reflect.Field;
274 Field f_impl = Socket.class.getDeclaredField("impl");
  /external/clang/lib/AST/
ExprConstant.cpp 88 /// field or base class.
97 /// field declaration.
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 597 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
607 if (!Field) {
612 SemaRef.InstantiateAttrs(TemplateArgs, D, Field, LateAttrs, StartingScope);
614 if (Field->hasAttrs())
615 SemaRef.CheckAlignasUnderalignment(Field);
618 Field->setInvalidDecl();
620 if (!Field->getDeclName()) {
622 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
624 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
627 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
    [all...]
SemaLambda.cpp     [all...]
  /external/gmock/test/
gmock-matchers_test.cc 92 using testing::Field;
    [all...]
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 83 out.println(location() + ": field reference " + dex.fieldIds().get(fieldId)
127 for (ClassData.Field field : classData.allFields()) {
128 int fieldIndex = field.getFieldIndex();
130 out.println(location() + " field declared " + dex.fieldIds().get(fieldIndex));
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/
protorpc.js 325 // TODO: Have option for using key's as field number vs. field name.
335 var field = fields[i];
337 if (message.has(field)) {
338 if (field['label'] == 'REPEATED') {
340 obj[field.toString()] = arr;
342 var repeatedValues = message.get(field);
344 arr.push(this.serialize_(field, repeatedValues[j]));
347 obj[field.toString()] = message.get(field);
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
definition.py 44 # Map variant back to message field classes.
49 Dictionary mapping field variant to its associated field type.
54 if isinstance(value, type) and issubclass(value, messages.Field):
109 """Define Field instance from descriptor.
112 field_descriptor: FieldDescriptor class to build field instance from.
115 New field instance as described by enum_descriptor.
161 for field in message_descriptor.fields or []:
162 field_instance = define_field(field)
163 class_dict[field.name] = field_instanc
    [all...]
  /external/clang/lib/Serialization/
ASTCommon.cpp 307 case Decl::Field:
  /external/clang/tools/libclang/
CXCursor.h 125 /// \brief Create a reference to a field at the given location.
126 CXCursor MakeCursorMemberRef(const FieldDecl *Field, SourceLocation Loc,
129 /// \brief Unpack a MemberRef cursor into the field it references and the
  /external/dexmaker/src/main/java/com/google/dexmaker/stock/
ProxyBuilder.java 30 import java.lang.reflect.Field;
297 Field handlerField = instance.getClass().getDeclaredField(FIELD_NAME_HANDLER);
301 // Should not be thrown, generated proxy class has been generated with this field.
304 // Should not be thrown, we just set the field to accessible.
311 Field methodArrayField = proxyClass.getDeclaredField(FIELD_NAME_METHODS);
315 // Should not be thrown, generated proxy class has been generated with this field.
318 // Should not be thrown, we just set the field to accessible.
330 Field field = instance.getClass().getDeclaredField(FIELD_NAME_HANDLER); local
331 field.setAccessible(true)
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ReflectionUtils.java 17 import java.lang.reflect.Field;
273 * @return the {@link Object} that should be used as argument for {@link Field#get(Object)} and
  /external/tpm2/generator/
tpm_table.py 16 from structure_generator import Field
208 In yet some other cases, say in Table 126 where the type field does not
278 .h file, by making sure that each field's name starts in the same column,
283 elements, the first one the field or constant type, the
284 second one the field name or constant value.
385 # A dictionary describing a request or response structure field.
386 field = {}
388 field_type, field['name'] = row[0], row[1].lstrip('@')
389 # The '+' decoration means this field can be conditional.
392 field['has_conditional'] = 'TRUE
    [all...]
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZoneInfo.java 28 import java.lang.reflect.Field;
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Type.java 20 import java.lang.reflect.Field;
  /system/connectivity/shill/cellular/
modem_manager_unittest.cc 174 Pointee(Field(&Modem::path_, StrEq(kModemPath)))));
  /external/v8/src/mips64/
macro-assembler-mips64.h 135 // Generate a MemOperand for loading a field from an object.
    [all...]
  /external/littlemock/src/com/google/testing/littlemock/
LittleMock.java 22 import java.lang.reflect.Field;
343 for (Field field : clazz.getDeclaredFields()) {
344 if (field.getAnnotation(Mock.class) != null) {
345 setField(field, instance, mock(field.getType(), field.getName()));
346 } else if (field.getAnnotation(Captor.class) != null) {
347 setField(field, instance, createCaptor());
443 * <p>Also if you use this method to create your mock, the field in the error messages wil
    [all...]
  /external/nanopb-c/generator/
nanopb_generator.py 104 '''Class used to represent the encoded size of a field or a message.
161 class Field:
174 # Parse field options
184 # Check field rules, i.e. required/optional/repeated.
199 # Check if the field can be implemented with static allocation
207 # Decide how the field data will be allocated
215 raise Exception("Field %s is defined as static, but max_size or "
285 '''Return definitions for any special types this field might need.'''
296 '''Return definition for this field's default value.'''
331 '''Return the #define for the tag number of this field.''
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
ViewInflater.java 51 import java.lang.reflect.Field;
626 Field f = target.getClass().getField(fieldName);
629 mErrors.add("set field)" + fieldName + " failed. " + e.toString());
797 Field f = clazz.getField(value.toUpperCase());
831 Field f = clazz.getField(value);
    [all...]
  /external/clang/lib/CodeGen/
CGOpenMPRuntime.cpp 175 /// \brief Lookup the captured field decl for a variable.
328 static CharUnits getOffsetOfIdentField(CGOpenMPRuntime::IdentFieldIndex Field) {
330 return unsigned(Field) * CharUnits::fromQuantity(4);
333 CGOpenMPRuntime::IdentFieldIndex Field,
335 auto Offset = getOffsetOfIdentField(Field);
336 return CGF.Builder.CreateStructGEP(Addr, Field, Offset, Name);
378 // Initialize default location for psource field of ident_t structure of
    [all...]

Completed in 593 milliseconds

<<21222324252627282930>>