/external/guava/guava-gwt/src/com/google/common/collect/ |
RegularImmutableList_CustomFieldSerializer.java | 36 RegularImmutableList<?> instance) { 53 RegularImmutableList<?> instance) throws SerializationException { 54 Collection_CustomFieldSerializerBase.serialize(writer, instance);
|
RegularImmutableMap_CustomFieldSerializer.java | 35 RegularImmutableMap<?, ?> instance) { 52 RegularImmutableMap<?, ?> instance) throws SerializationException { 53 Map_CustomFieldSerializerBase.serialize(writer, instance);
|
RegularImmutableMultiset_CustomFieldSerializer.java | 33 RegularImmutableMultiset<?> instance) { 51 RegularImmutableMultiset<?> instance) throws SerializationException { 52 Collection_CustomFieldSerializerBase.serialize(writer, instance);
|
RegularImmutableSet_CustomFieldSerializer.java | 34 RegularImmutableSet<?> instance) { 51 RegularImmutableSet<?> instance) throws SerializationException { 52 Collection_CustomFieldSerializerBase.serialize(writer, instance);
|
/external/guice/core/test/com/google/inject/example/ |
ClientServiceWithFactories.java | 42 private static Service instance = new ServiceImpl(); field in class:ClientServiceWithFactories.ServiceFactory 45 return instance; 49 instance = service;
|
/external/skia/tools/viewer/sk_app/android/ |
VulkanWindowContext_android.cpp | 17 auto createVkSurface = [window] (VkInstance instance) -> VkSurfaceKHR { 19 (PFN_vkCreateAndroidSurfaceKHR)vkGetInstanceProcAddr(instance, 34 VkResult res = createAndroidSurfaceKHR(instance, &surfaceCreateInfo,
|
/frameworks/base/location/lib/java/com/android/location/provider/ |
ActivityRecognitionProviderClient.java | 41 IActivityRecognitionHardware instance) { 49 provider = isSupported ? new ActivityRecognitionProvider(instance) : null; 70 * @param instance the available provider's instance 74 ActivityRecognitionProvider instance);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
ActionListTransformState.java | 39 ActionListTransformState instance = sInstancePool.acquire(); local 40 if (instance != null) { 41 return instance;
|
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
CertPathHelper.java | 51 protected static CertPathHelper instance; field in class:CertPathHelper 64 instance.implSetPathToNames(sel, names); 68 instance.implSetDateAndTime(sel, date, skew);
|
/test/vts-testcase/hal/media/omx/V1_0/host/ |
VtsHalMediaOmxV1_0TestCase.py | 28 instance: string, name of the binderized hal server instance. 31 def __init__(self, component, role, instance, *args, **kwargs): 35 self._instance = instance 44 new_cmd = [('{cmd} -I {instance} -C {component} -R {role}').format( 46 instance=self._instance,
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothGattDescriptor.java | 97 * Instance ID for this descriptor. 140 int instance, int permissions) { 141 initDescriptor(characteristic, uuid, instance, permissions); 147 public BluetoothGattDescriptor(UUID uuid, int instance, int permissions) { 148 initDescriptor(null, uuid, instance, permissions); 152 int instance, int permissions) { 155 mInstance = instance; 215 * Returns the instance ID for this descriptor. 218 * the instance ID is used to distuinguish between descriptors. 222 * @return Instance ID of this descripto [all...] |
/frameworks/base/core/java/android/text/method/ |
DateKeyListener.java | 91 * Returns an instance of DateKeyListener appropriate for the given locale. 95 DateKeyListener instance; local 97 instance = sInstanceCache.get(locale); 98 if (instance == null) { 99 instance = new DateKeyListener(locale); 100 sInstanceCache.put(locale, instance); 103 return instance;
|
DateTimeKeyListener.java | 103 * Returns an instance of DateTimeKeyListener appropriate for the given locale. 107 DateTimeKeyListener instance; local 109 instance = sInstanceCache.get(locale); 110 if (instance == null) { 111 instance = new DateTimeKeyListener(locale); 112 sInstanceCache.put(locale, instance); 115 return instance;
|
TimeKeyListener.java | 103 * Returns an instance of TimeKeyListener appropriate for the given locale. 107 TimeKeyListener instance; local 109 instance = sInstanceCache.get(locale); 110 if (instance == null) { 111 instance = new TimeKeyListener(locale); 112 sInstanceCache.put(locale, instance); 115 return instance;
|
/frameworks/support/compat/java/android/support/v4/hardware/display/ |
DisplayManagerCompat.java | 54 * Gets an instance of the display manager given the context. 58 DisplayManagerCompat instance = sInstances.get(context); local 59 if (instance == null) { 61 instance = new DisplayManagerCompatApi17Impl(context); 63 instance = new DisplayManagerCompatApi14Impl(context); 65 sInstances.put(context, instance); 67 return instance;
|
/art/test/600-verifier-fails/smali/ |
class.smali | 22 new-instance v0, Ljava/lang/Class;
|
/cts/tests/sensor/src/android/hardware/cts/ |
SensorNativeTest.java | 35 protected native void nativeTearDown(long instance); 36 private native void nativeTest(long instance); 47 assertTrue("create native instance failed", mNativeInstance != 0);
|
/cts/tests/tests/nativehardware/src/android/hardware/cts/ |
AHardwareBufferNativeTest.java | 29 protected native void nativeTearDown(long instance); 30 private native void nativeTest(long instance, boolean vrHighPerformanceSupported); 41 assertTrue("create native instance failed", mNativeInstance != 0);
|
/external/autotest/server/site_tests/network_WiFi_VerifyRouter/ |
network_WiFi_VerifyRouter.py | 75 for instance in range(2): 77 (bitmap, instance, channel)) 81 ssid=self.context.router.get_ssid(instance=instance)) 85 instance, bitmap, signal_level) 88 (instance, bitmap, channel): 94 self.context.router.get_ssid(instance=instance))
|
/external/clang/test/Analysis/ |
qt_malloc.cpp | 8 static_cast<QApplication *>(QCoreApplication::instance())->postEvent(obj, e1); 10 QCoreApplication::instance()->postEvent(obj, e2);
|
/external/guice/extensions/grapher/src/com/google/inject/grapher/ |
ShortNameFactory.java | 74 public String getInstanceName(Object instance) { 75 if (instance instanceof ProviderMethod) { 76 return getMethodString(((ProviderMethod<?>) instance).getMethod()); 79 if (instance instanceof CharSequence) { 80 return "\"" + instance + "\""; 84 if (instance.getClass().getMethod("toString").getDeclaringClass().equals(Object.class)) { 85 return stripPackages(instance.getClass().getName()); 93 return instance.toString(); 98 * a {@link StackTraceElement} for when the binding is made to the instance,
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/java8/ |
LambdaExpressionsTest.java | 29 final Object instance = targetClass.newInstance(); local 30 ((Runnable) instance).run();
|
/external/libchrome/base/allocator/ |
allocator_extension.cc | 20 ::MallocExtension::instance()->ReleaseFreeMemory(); 26 return ::MallocExtension::instance()->GetNumericProperty(name, value);
|
/external/libxml2/python/tests/ |
dtdvalid.py | 9 instance="""<?xml version="1.0"?> 14 doc = libxml2.parseDoc(instance)
|
tstmem.py | 13 instance="""<?xml version="1.0"?> 19 doc = libxml2.parseDoc(instance)
|