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

1 2 3 4 5 67 8 91011>>

  /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...]
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
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...]
  /cts/tests/tests/graphics/jni/
android_graphics_cts_VulkanFeaturesTest.cpp 53 VkInstance instance; local
54 result = vkCreateInstance(&instance_info, nullptr, &instance);
61 result = vkEnumeratePhysicalDevices(instance, &ngpu, nullptr);
64 vkDestroyInstance(instance, nullptr);
68 result = vkEnumeratePhysicalDevices(instance, &ngpu, gpus.data());
71 vkDestroyInstance(instance, nullptr);
84 vkDestroyInstance(instance, nullptr);
  /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/skia/tools/viewer/sk_app/unix/
VulkanWindowContext_unix.cpp 23 auto createVkSurface = [&info](VkInstance instance) -> VkSurfaceKHR {
27 (PFN_vkCreateXcbSurfaceKHR) vkGetInstanceProcAddr(instance,
41 VkResult res = createXcbSurfaceKHR(instance, &surfaceCreateInfo, nullptr, &surface);
49 auto canPresent = [&info](VkInstance instance, VkPhysicalDevice physDev,
56 vkGetInstanceProcAddr(instance,
  /external/skia/tools/viewer/sk_app/win/
VulkanWindowContext_win.cpp 22 auto createVkSurface = [hwnd] (VkInstance instance) -> VkSurfaceKHR {
26 vkGetInstanceProcAddr(instance, "vkCreateWin32SurfaceKHR");
39 VkResult res = createWin32SurfaceKHR(instance, &surfaceCreateInfo, nullptr, &surface);
47 auto canPresent = [hwnd] (VkInstance instance, VkPhysicalDevice physDev,
54 vkGetInstanceProcAddr(instance,
  /external/testng/src/test/java/test/pholser/
Demo.java 20 Captor.instance().capture( "Demo.setUpFixture" );
25 Captor.instance().capture( "Demo.setUp" );
30 Captor.instance().capture( "Demo.tearDown" );
36 final List<String> actual = Captor.instance().captives();
43 final List<String> actual = Captor.instance().captives();
  /external/v8/tools/clang/plugins/
FindBadConstructsAction.cpp 20 PluginConsumer(CompilerInstance* instance, const Options& options)
21 : visitor_(*instance, options) {}
37 CompilerInstance& instance,
39 return llvm::make_unique<PluginConsumer>(&instance, options_);
42 bool FindBadConstructsAction::ParseArgs(const CompilerInstance& instance,
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
VeiledAddressMatcher.java 118 final VeiledAddressMatcher instance = new VeiledAddressMatcher(); local
119 instance.mVeiledMatchingEnabled = resources.getBoolean(VEILED_MATCHING_ENABLED);
120 if (instance.mVeiledMatchingEnabled) {
121 instance.loadPattern(resources.getString(VEILED_RESOURCE));
123 return instance;
  /bionic/libc/private/
CachedProperty.h 83 CachedProperty* instance = reinterpret_cast<CachedProperty*>(data); local
84 instance->cached_property_serial_ = serial;
85 strcpy(instance->cached_value_, value);
  /external/guava/guava-gwt/src/com/google/common/base/
PairwiseEquivalence_CustomFieldSerializer.java 33 PairwiseEquivalence<?> instance) {}
44 public static void serialize(SerializationStreamWriter writer, PairwiseEquivalence<?> instance)
46 writer.writeObject(instance.elementEquivalence);
Present_CustomFieldSerializer.java 31 public static void deserialize(SerializationStreamReader reader, Present<?> instance) {}
38 public static void serialize(SerializationStreamWriter writer, Present<?> instance)
40 writer.writeObject(instance.get());
  /external/guava/guava-gwt/src/com/google/common/collect/
ComparatorOrdering_CustomFieldSerializer.java 33 ComparatorOrdering<?> instance) {
44 ComparatorOrdering<?> instance) throws SerializationException {
45 writer.writeObject(instance.comparator);
CompoundOrdering_CustomFieldSerializer.java 33 CompoundOrdering<?> instance) {
44 CompoundOrdering<?> instance) throws SerializationException {
45 writer.writeObject(instance.comparators);
EmptyImmutableSortedSet_CustomFieldSerializer.java 33 EmptyImmutableSortedSet<?> instance) {
56 EmptyImmutableSortedSet<?> instance) throws SerializationException {
57 writer.writeObject(instance.comparator());
ImmutableEnumMap_CustomFieldSerializer.java 34 ImmutableEnumMap<?, ?> instance) {
50 ImmutableEnumMap<?, ?> instance) throws SerializationException {
51 Map_CustomFieldSerializerBase.serialize(writer, instance);
ImmutableEnumSet_CustomFieldSerializer.java 34 ImmutableEnumSet<?> instance) {
50 ImmutableEnumSet<?> instance) throws SerializationException {
51 Collection_CustomFieldSerializerBase.serialize(writer, instance);
Multiset_CustomFieldSerializerBase.java 45 static void serialize(SerializationStreamWriter writer, Multiset<?> instance)
47 int entryCount = instance.entrySet().size();
49 for (Multiset.Entry<?> entry : instance.entrySet()) {
RegularImmutableBiMap_CustomFieldSerializer.java 35 RegularImmutableBiMap<?, ?> instance) {
53 RegularImmutableBiMap<?, ?> instance) throws SerializationException {
54 Map_CustomFieldSerializerBase.serialize(writer, instance);

Completed in 4184 milliseconds

1 2 3 4 5 67 8 91011>>