/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 | 53 * Gets an instance of the display manager given the context. 57 DisplayManagerCompat instance = sInstances.get(context); local 58 if (instance == null) { 60 instance = new DisplayManagerCompatApi17Impl(context); 62 instance = new DisplayManagerCompatApi14Impl(context); 64 sInstances.put(context, instance); 66 return instance;
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
DebugCounter.h | 58 /// \brief Returns a reference to the singleton instance. 59 static DebugCounter &instance(); 70 return instance().addCounter(Name, Desc); 77 auto &Us = instance(); 107 return instance().Counters.count(ID); 112 auto &Us = instance(); 120 auto &Us = instance();
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/ |
DebugCounter.h | 58 /// \brief Returns a reference to the singleton instance. 59 static DebugCounter &instance(); 70 return instance().addCounter(Name, Desc); 77 auto &Us = instance(); 107 return instance().Counters.count(ID); 112 auto &Us = instance(); 120 auto &Us = instance();
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/ |
DebugCounter.h | 58 /// \brief Returns a reference to the singleton instance. 59 static DebugCounter &instance(); 70 return instance().addCounter(Name, Desc); 77 auto &Us = instance(); 107 return instance().Counters.count(ID); 112 auto &Us = instance(); 120 auto &Us = instance();
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/ |
DebugCounter.h | 58 /// \brief Returns a reference to the singleton instance. 59 static DebugCounter &instance(); 70 return instance().addCounter(Name, Desc); 77 auto &Us = instance(); 107 return instance().Counters.count(ID); 112 auto &Us = instance(); 120 auto &Us = instance();
|
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
DebugCounter.h | 58 /// \brief Returns a reference to the singleton instance. 59 static DebugCounter &instance(); 70 return instance().addCounter(Name, Desc); 77 auto &Us = instance(); 107 return instance().Counters.count(ID); 112 auto &Us = instance(); 120 auto &Us = instance();
|
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/ |
DebugCounter.h | 58 /// \brief Returns a reference to the singleton instance. 59 static DebugCounter &instance(); 70 return instance().addCounter(Name, Desc); 77 auto &Us = instance(); 107 return instance().Counters.count(ID); 112 auto &Us = instance(); 120 auto &Us = instance();
|
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/ |
DebugCounter.h | 58 /// \brief Returns a reference to the singleton instance. 59 static DebugCounter &instance(); 70 return instance().addCounter(Name, Desc); 77 auto &Us = instance(); 107 return instance().Counters.count(ID); 112 auto &Us = instance(); 120 auto &Us = instance();
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/ |
DebugCounter.h | 58 /// \brief Returns a reference to the singleton instance. 59 static DebugCounter &instance(); 70 return instance().addCounter(Name, Desc); 77 auto &Us = instance(); 107 return instance().Counters.count(ID); 112 auto &Us = instance(); 120 auto &Us = 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/graphics/jni/ |
android_graphics_cts_VulkanFeaturesTest.cpp | 82 VkInstance instance; local 83 result = vkCreateInstance(&instance_info, nullptr, &instance); 90 result = vkEnumeratePhysicalDevices(instance, &ngpu, nullptr); 93 vkDestroyInstance(instance, nullptr); 97 result = vkEnumeratePhysicalDevices(instance, &ngpu, gpus.data()); 100 vkDestroyInstance(instance, nullptr); 106 auto props = VkJsonGetDevice(instance, gpus[i], 114 vkDestroyInstance(instance, nullptr);
|
/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/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)
|
/external/mesa3d/src/amd/vulkan/ |
radv_wsi_wayland.c | 48 RADV_FROM_HANDLE(radv_instance, instance, _instance); 55 alloc = &instance->alloc;
|