HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 151 - 175 of 2592) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/guava/guava-gwt/src/com/google/common/collect/
EmptyImmutableListMultimap_CustomFieldSerializer.java 31 EmptyImmutableListMultimap instance) {
36 return EmptyImmutableListMultimap.INSTANCE;
40 EmptyImmutableListMultimap instance) {
EmptyImmutableSetMultimap_CustomFieldSerializer.java 31 EmptyImmutableSetMultimap instance) {
36 return EmptyImmutableSetMultimap.INSTANCE;
40 EmptyImmutableSetMultimap instance) {
EmptyImmutableSet_CustomFieldSerializer.java 30 EmptyImmutableSet instance) {
35 return EmptyImmutableSet.INSTANCE;
39 EmptyImmutableSet instance) {
NaturalOrdering_CustomFieldSerializer.java 30 NaturalOrdering instance) {
35 return NaturalOrdering.INSTANCE;
39 NaturalOrdering instance) {
ReverseNaturalOrdering_CustomFieldSerializer.java 31 ReverseNaturalOrdering instance) {
36 return ReverseNaturalOrdering.INSTANCE;
40 ReverseNaturalOrdering instance) {
UsingToStringOrdering_CustomFieldSerializer.java 30 UsingToStringOrdering instance) {
35 return UsingToStringOrdering.INSTANCE;
39 UsingToStringOrdering instance) {
  /external/webrtc/webrtc/system_wrappers/include/
static_instance.h 40 static T* volatile instance = NULL; local
70 instance = T::CreateInstance();
72 T* old_instance = instance;
73 instance = NULL;
96 // The instance has been destroyed by some other thread. Rollback.
102 if (instance == NULL) {
113 // updated just yet (that's done when the instance is created).
126 // Create instance and let whichever thread finishes first assign its
127 // local copy to the global instance. All other threads reclaim their
131 InterlockedExchangePointer(reinterpret_cast<void * volatile*>(&instance),
    [all...]
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
EngineInstance.cpp 35 static EngineInstance instance; local
36 return &instance;
  /frameworks/base/location/lib/java/com/android/location/provider/
FusedProvider.java 35 public void onFusedLocationHardwareChange(IFusedLocationHardware instance) {
36 setFusedLocationHardware(new FusedLocationHardware(instance));
45 * @return The IBinder instance associated with the provider.
52 * Sets the FusedLocationHardware instance in the provider..
53 * @param value The instance to set. This can be null in cases where the service connection
  /frameworks/layoutlib/create/tests/com/android/tools/layoutlib/create/dataclass/
OuterClass_StaticInnerClass_Delegate.java 26 public static void constructor_after(StaticInnerClass instance) {
27 instance.mStaticInnerId = 42;
  /frameworks/rs/
rsFallbackAdaptation.cpp 47 // This function-local-static guarantees the instance is a singleton. The
50 static RsFallbackAdaptation instance; local
51 return instance;
  /external/mesa3d/src/amd/vulkan/
radv_wsi_x11.c 47 &device->instance->alloc,
61 &device->instance->alloc,
71 RADV_FROM_HANDLE(radv_instance, instance, _instance);
78 alloc = &instance->alloc;
89 RADV_FROM_HANDLE(radv_instance, instance, _instance);
97 alloc = &instance->alloc;
  /external/mesa3d/src/intel/vulkan/
anv_wsi_x11.c 43 &device->instance->alloc,
57 &device->instance->alloc,
67 ANV_FROM_HANDLE(anv_instance, instance, _instance);
74 alloc = &instance->alloc;
85 ANV_FROM_HANDLE(anv_instance, instance, _instance);
93 alloc = &instance->alloc;
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
Log4jLoggerFactory.java 57 org.apache.log4j.Logger instance = log4jLoggers.get(name); local
58 if (instance != null) {
59 return instance;
68 org.apache.log4j.Logger instance = log4jLoggers.get(name); local
69 if (instance != null) {
70 return instance;
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmStateManager.java 69 * is in charge of changing the alarm instance state to a LOW_NOTIFICATION_STATE.
87 * also increments the alarm time in the instance to reflect the new snooze time.
96 * it. At this point the alarm instance is dead and we check the parent alarm to see if we need
102 * This is really a transient state that will properly delete the alarm instance. Use this state,
103 * whenever you want to get rid of the alarm instance. This state will also check the alarm
104 * parent to see if it should disable or schedule a new alarm instance.
107 // Intent action to trigger an instance state change.
110 // Intent action to show the alarm and dismiss the instance
178 * Returns an alarm instance of an alarm that's going to fire next.
181 * @return an alarm instance that will fire earliest relative to current time
492 AlarmInstance.updateInstance(context.getContentResolver(), instance); local
905 AlarmInstance instance = AlarmInstance.getInstance(context.getContentResolver(), local
941 AlarmInstance instance = AlarmInstance.getInstance(context.getContentResolver(), local
    [all...]
AlarmNotifications.java 86 AlarmInstance instance) {
87 LogUtils.v("Displaying low priority notification for alarm instance: " + instance.mId);
93 .setContentText(AlarmUtils.getAlarmText(context, instance, true /* includeLabel */))
97 .setSortKey(createSortKey(instance))
109 AlarmStateManager.ALARM_DELETE_TAG, instance,
111 final int id = instance.hashCode();
117 AlarmStateManager.ALARM_DISMISS_TAG, instance, AlarmInstance.PREDISMISSED_STATE);
123 // Setup content action if instance is owned by alarm
124 Intent viewAlarmIntent = createViewAlarmIntent(context, instance);
    [all...]
  /external/valgrind/drd/tests/
thread_name.stderr.exp 3 thread_func instance 1
5 Thread 2 (thread_func instance 1):
12 thread_func instance 2
14 Thread 3 (thread_func instance 2):
21 thread_func instance 3
23 Thread 4 (thread_func instance 3):
30 thread_func instance 4
32 Thread 5 (thread_func instance 4):
39 thread_func instance 5
41 Thread 6 (thread_func instance 5)
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
MockMethodAdvice.java 65 public Callable<?> handle(Object instance, Method origin, Object[] arguments) throws Throwable {
66 MockMethodInterceptor interceptor = interceptors.get(instance);
71 if (instance instanceof Serializable) {
72 superMethod = new SerializableSuperMethodCall(identifier, origin, instance, arguments);
74 superMethod = new SuperMethodCall(selfCallInfo, origin, instance, arguments);
76 return new ReturnValueWrapper(interceptor.doIntercept(instance,
83 public boolean isMock(Object instance) {
84 return interceptors.containsKey(instance);
88 public boolean isMocked(Object instance) {
89 return selfCallInfo.checkSuperCall(instance) && isMock(instance)
111 private final Object instance; field in class:MockMethodAdvice.SuperMethodCall
144 private final Object instance; field in class:MockMethodAdvice.SerializableSuperMethodCall
    [all...]
  /external/guice/extensions/testlib/test/com/google/inject/testing/fieldbinder/
BoundFieldModuleTest.java 46 Object instance = new Object() {}; local
48 BoundFieldModule module = BoundFieldModule.of(instance);
56 Object instance = new Object() { local
60 BoundFieldModule module = BoundFieldModule.of(instance);
68 Object instance = new Object() { local
72 BoundFieldModule module = BoundFieldModule.of(instance);
93 FieldBindableSubclass instance = new FieldBindableSubclass(1024); local
95 BoundFieldModule module = BoundFieldModule.of(instance);
98 assertEquals(instance.anInt, injector.getInstance(Integer.class));
104 Object instance = new Object() local
118 Object instance = new Object() { local
130 Object instance = new Object() { local
148 Object instance = new Object() { local
175 Object instance = new Object() { local
198 Object instance = new Object() { local
218 Object instance = new Object() { local
242 Object instance = new Object() { local
262 Object instance = new Object() { local
276 FieldBindableClass instance = new FieldBindableClass(testValue); local
288 Object instance = new Object() { local
306 Object instance = new Object() { local
324 Object instance = new Object() { local
338 Object instance = new Object() { local
353 Object instance = new Object() { local
370 Object instance = new Object() { local
400 Object instance = new Object() { local
412 Object instance = new Object() { local
432 @Bind private T instance; field in class:BoundFieldModuleTest.ParameterizedObject
436 ParameterizedObject<Integer> instance = new ParameterizedObject<Integer>(0); local
450 ParameterizedObject<Integer> instance = new ParameterizedObject<Integer>(testValue) {}; local
460 Object instance = new Object() { local
472 Object instance = new Object() { local
494 Object instance = new Object() { local
510 Object instance = new Object() { local
525 Object instance = new Object() { local
540 Object instance = new Object() { local
551 Object instance = new Object() { local
570 Object instance = new Object() { local
589 Object instance = new Object() { local
608 Object instance = new InvalidBindableClass(); local
630 Object instance = new Object() { local
644 Object instance = new Object() { local
658 Object instance = new InvalidBindableSubclass(); local
683 FieldBindableSubclass2 instance = new FieldBindableSubclass2(testValue1, testValue2); local
    [all...]
  /libcore/ojluni/src/main/java/java/security/cert/
CertStore.java 38 import sun.security.jca.GetInstance.Instance;
91 * CRL while simultaneously searching for further certificates, for instance.
140 * {@code Certificate}s that match the selector. For instance,
170 * {@code CRL}s that match the selector. For instance,
237 Instance instance = GetInstance.getInstance("CertStore", local
239 return new CertStore((CertStoreSpi)instance.impl,
240 instance.provider, type, params);
307 Instance instance = GetInstance.getInstance("CertStore" local
361 Instance instance = GetInstance.getInstance("CertStore", local
    [all...]
CertificateFactory.java 40 import sun.security.jca.GetInstance.Instance;
55 * instance of {@code java.security.cert.X509Certificate}, and CRLs
56 * that are an instance of {@code java.security.cert.X509CRL}.
206 Instance instance = GetInstance.getInstance("CertificateFactory", local
208 return new CertificateFactory((CertificateFactorySpi)instance.impl,
209 instance.provider, type);
253 Instance instance = GetInstance.getInstance("CertificateFactory", local
255 return new CertificateFactory((CertificateFactorySpi)instance.impl
294 Instance instance = GetInstance.getInstance("CertificateFactory", local
    [all...]
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLContext.java 189 GetInstance.Instance instance = GetInstance.getInstance local
191 return new SSLContext((SSLContextSpi)instance.impl, instance.provider,
232 GetInstance.Instance instance = GetInstance.getInstance local
234 return new SSLContext((SSLContextSpi)instance.impl, instance.provider,
254 * @param provider an instance of the provider.
269 GetInstance.Instance instance = GetInstance.getInstanc local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
Simple.py 10 """Create a new instance."""
11 return Instance(self)
13 class Instance:
26 def __init__(self, function, instance):
28 self.instance = instance
30 print "calling", self.function, "for", self.instance, "with", args
31 return apply(self.function, (self.instance,) + args)
  /external/mockito/src/main/java/org/mockito/internal/configuration/injection/
SpyOnInjectedFieldsHandler.java 37 Object instance = fieldReader.read(); local
38 if (MockUtil.isMock(instance)) {
39 // A. instance has been spied earlier
41 Mockito.reset(instance);
43 Object mock = Mockito.mock(instance.getClass(), withSettings()
44 .spiedInstance(instance)
  /external/python/cpython2/Demo/metaclasses/
Simple.py 10 """Create a new instance."""
11 return Instance(self)
13 class Instance:
26 def __init__(self, function, instance):
28 self.instance = instance
30 print "calling", self.function, "for", self.instance, "with", args
31 return apply(self.function, (self.instance,) + args)

Completed in 884 milliseconds

1 2 3 4 5 67 8 91011>>