HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 126 - 150 of 1940) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/guava/guava-gwt/src/com/google/common/collect/
EmptyImmutableBiMap_CustomFieldSerializer.java 29 public static void deserialize(SerializationStreamReader reader, EmptyImmutableBiMap instance) {
33 return EmptyImmutableBiMap.INSTANCE;
36 public static void serialize(SerializationStreamWriter writer, EmptyImmutableBiMap instance) {
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/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
ExplicitInitialFrameTest.java 29 final Object instance = targetClass.newInstance(); local
30 ((Runnable) instance).run();
  /external/skia/src/pdf/
SkPDFMetadata.h 28 static SkPDFObject* CreatePdfId(const UUID& doc, const UUID& instance);
29 SkPDFObject* createXMPObject(const UUID& doc, const UUID& instance) const;
  /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
  /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;
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gwtref/client/
ReflectionCache.java 24 private static IReflectionCache instance = GWT.create(IReflectionCache.class); field in class:ReflectionCache
27 Type type = instance.forName(convert(name));
36 Type type = instance.forName(convert(clazz.getName()));
82 return instance.newArray(getType(componentType), size);
86 return instance.get(field, obj);
90 instance.set(field, obj, value);
94 return instance.invoke(method, obj, params);
98 return instance.getArrayLength(type, obj);
102 return instance.getArrayElement(type, obj, i);
106 instance.setArrayElement(type, obj, i, value);
    [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...]
  /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/autotest/frontend/tko/
resources.py 22 return {'test_id': self.instance.pk}
27 rep.update(id=self.instance.test_idx,
28 test_name=self.instance.test,
29 status=self.instance.status.word,
30 reason=self.instance.reason,
31 afe_job_id=self.instance.job.afe_job_id,
40 in self.instance.testattribute_set.all())
  /external/autotest/frontend/afe/
resources.py 13 if self.instance.invalid:
14 raise http.Http404('%s has been deleted' % self.instance)
19 if self.instance.invalid:
20 raise http.Http404('%s has already been deleted' % self.instance)
34 return {'ag_name': self.instance.name}
39 rep['name'] = self.instance.name
46 self.instance.max_number_of_machines,
62 self.instance.update_object(**data)
87 return {'label_name': self.instance.name}
92 rep.update({'name': self.instance.name
    [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...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkInstanceDriverImpl.inl 5 void InstanceDriver::destroyInstance (VkInstance instance, const VkAllocationCallbacks* pAllocator) const
7 m_vk.destroyInstance(instance, pAllocator);
10 VkResult InstanceDriver::enumeratePhysicalDevices (VkInstance instance, deUint32* pPhysicalDeviceCount, VkPhysicalDevice* pPhysicalDevices) const
12 return m_vk.enumeratePhysicalDevices(instance, pPhysicalDeviceCount, pPhysicalDevices);
70 void InstanceDriver::destroySurfaceKHR (VkInstance instance, VkSurfaceKHR surface, const VkAllocationCallbacks* pAllocator) const
72 m_vk.destroySurfaceKHR(instance, surface, pAllocator);
125 VkResult InstanceDriver::createDisplayPlaneSurfaceKHR (VkInstance instance, const VkDisplaySurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface) const
127 return m_vk.createDisplayPlaneSurfaceKHR(instance, pCreateInfo, pAllocator, pSurface);
130 VkResult InstanceDriver::createXlibSurfaceKHR (VkInstance instance, const VkXlibSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface) const
132 return m_vk.createXlibSurfaceKHR(instance, pCreateInfo, pAllocator, pSurface)
    [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</code>s that match the selector. For instance,
170 * <code>CRL</code>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</code>, and CRLs
56 * that are an instance of <code>java.security.cert.X509CRL</code>.
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...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
Select.java 34 private static Select instance; field in class:Select
38 public static Select instance () { method in class:Select
39 if (instance == null) instance = new Select();
40 return instance;
Sort.java 25 static private Sort instance; field in class:Sort
60 /** Returns a Sort instance for convenience. Multiple threads must not use this instance at the same time. */
61 static public Sort instance () { method in class:Sort
62 if (instance == null) instance = new Sort();
63 return instance;

Completed in 377 milliseconds

1 2 3 4 56 7 8 91011>>