/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
UiCollection.java | 29 * Constructs an instance as described by the selector 44 * The returned UiObject will point at the <code>childPattern</code> instance that matched the 49 * @return {@link UiObject} pointing at and instance of <code>childPattern</code> 78 * a child UI element anywhere within its sub hierarchy that is at the <code>instance</code> 83 * @param instance int the desired matched instance of this <code>childPattern</code> 84 * @return {@link UiObject} pointing at and instance of <code>childPattern</code> 87 public UiObject getChildByInstance(UiSelector childPattern, int instance) 89 Tracer.trace(childPattern, instance); 91 UiSelector.patternBuilder(childPattern).instance(instance)) [all...] |
/hardware/intel/img/hwcomposer/merrifield/include/ |
Hwcomposer.h | 93 Hwcomposer *instance = sInstance; local 94 if (instance == 0) { 95 instance = createHwcomposer(); 96 sInstance = instance;
|
/hardware/intel/img/hwcomposer/moorefield_hdmi/include/ |
Hwcomposer.h | 86 Hwcomposer *instance = sInstance; local 87 if (instance == 0) { 88 instance = createHwcomposer(); 89 sInstance = instance;
|
/hardware/qcom/wlan/qcwcn/wifi_hal/ |
rssi_monitor.h | 51 static RSSIMonitorCommand* instance(wifi_handle handle, wifi_request_id id);
|
/packages/apps/Camera2/src/com/android/camera/util/ |
AndroidContext.java | 41 * Return a previously initialized instance, throw if it has not been 44 public static AndroidContext instance() { method in class:AndroidContext
|
/packages/apps/Camera2/src_pd/com/android/camera/stats/ |
SessionStatsCollector.java | 8 public static SessionStatsCollector instance() { method in class:SessionStatsCollector
|
/packages/apps/DeskClock/src/com/android/deskclock/alarms/ |
AlarmKlaxon.java | 52 public static void start(Context context, AlarmInstance instance) { 57 if (!AlarmInstance.NO_RINGTONE_URI.equals(instance.mRingtone)) { 59 getAsyncRingtonePlayer(context).play(instance.mRingtone, crescendoDuration); 62 if (instance.mVibrate) {
|
/prebuilts/misc/windows/sdl2/test/ |
testhotplug.c | 29 SDL_JoystickID instance = -1; local 80 instance = SDL_JoystickInstanceID(joystick); 108 if (instance == event.jdevice.which) 111 instance = -1;
|
/system/bt/service/ |
bluetooth_instance.h | 29 // A BluetoothInstance represents an application's handle to an instance 36 // Returns the app-specific unique ID used while registering this instance. 39 // Returns the HAL "interface ID" assigned to this instance by the stack. 52 // classes that handle asynchronously registering a per-application instance of 62 std::unique_ptr<BluetoothInstance> instance)>; 64 // Registers an instance for the given unique identifier |app_uuid|.
|
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/ |
VideoRendererGui.java | 51 * and then for each video stream either create instance of VideoRenderer using 53 * Only one instance of the class can be created. 56 // |instance|, |instance.surface|, |eglContext|, and |eglContextReady| are synchronized on 58 private static VideoRendererGui instance = null; field in class:VideoRendererGui 417 instance = new VideoRendererGui(surface); 427 if (instance == null){ 431 synchronized (instance.yuvImageRenderers) { 432 for (YuvImageRenderer yuvImageRenderer : instance.yuvImageRenderers) { 435 instance.yuvImageRenderers.clear() [all...] |
/external/guava/guava-gwt/src/com/google/common/collect/ |
ImmutableSortedMap_CustomFieldSerializerBase.java | 50 static void serialize(SerializationStreamWriter writer, ImmutableSortedMap<?, ?> instance) 52 writer.writeObject(instance.comparator()); 54 Map_CustomFieldSerializerBase.serialize(writer, instance);
|
/external/libcxx/test/std/containers/sequences/vector/vector.modifiers/ |
push_back_exception_safety.pass.cpp | 70 CMyClass instance(42); 73 vec.push_back(instance); 81 vec.push_back(instance);
|
/external/libxml2/python/tests/ |
nsdel.py | 9 instance="""<?xml version="1.0"?> 28 doc = libxml2.parseDoc(instance) 37 doc = libxml2.parseDoc(instance)
|
/external/testng/src/test/java/test/methodinterceptors/ |
Issue392Test.java | 26 for (IMethodInstance instance : methods) { 27 if (!instance.getMethod().getMethodName().equals("test1")) { 28 instances.add(instance);
|
Issue521Test.java | 26 for (IMethodInstance instance : methods) { 27 if (!instance.getMethod().getMethodName().equals("test1")) { 28 instances.add(instance);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
TextViewTransformState.java | 73 TextViewTransformState instance = sInstancePool.acquire(); local 74 if (instance != null) { 75 return instance;
|
/frameworks/native/services/vr/hardware_composer/ |
vr_hardware_composer_service.cpp | 29 const char instance[] = "vr"; local 31 android::dvr::HIDL_FETCH_IComposer(instance); 36 LOG_ALWAYS_FATAL_IF(service->registerAsService(instance) != android::OK,
|
/frameworks/native/vulkan/libvulkan/ |
api.h | 29 VKAPI_ATTR void DestroyInstance(VkInstance instance, const VkAllocationCallbacks* pAllocator); 38 inline InstanceData& GetData(VkInstance instance) { 39 return driver::GetData(instance).opaque_api_data;
|
/frameworks/rs/tests/lldb/tests/harness/ |
util_lldb.py | 50 '''Create an lldb debugger instance. 53 The SBDebugger instance that was created. 65 '''Destroy the lldb debugger instance. 68 dbg: Instance of SBDebugger that is to be destroyed.
|
/libcore/benchmarks/src/benchmarks/regression/ |
ReflectionBenchmark.java | 77 C instance = new C(); local 79 f.setInt(instance, 1); 86 C instance = new C(); local 88 f.getInt(instance); 95 C instance = new C(); local 97 m.invoke(instance); 112 C instance = new C(); local 114 m.invoke(instance, 1); 121 C instance = new C(); local 124 m.invoke(instance, one) 146 C instance = new C(); local [all...] |
/libcore/ojluni/src/main/java/java/security/ |
SecureRandom.java | 36 import sun.security.jca.GetInstance.Instance; 54 * <p>A caller obtains a SecureRandom instance via the 178 * The SecureRandom instance is seeded with the specified seed bytes. 297 Instance instance = GetInstance.getInstance("SecureRandom", local 299 return new SecureRandom((SecureRandomSpi)instance.impl, 300 instance.provider, algorithm); 382 Instance instance = GetInstance.getInstance("SecureRandom", local 384 return new SecureRandom((SecureRandomSpi) instance.impl 423 Instance instance = GetInstance.getInstance(service, SecureRandomSpi.class); local 466 Instance instance = GetInstance.getInstance("SecureRandom", local [all...] |
/libcore/ojluni/src/main/java/java/text/ |
AttributedCharacterIterator.java | 93 * to look up the corresponding predefined instance when deserializing 94 * an instance. 154 * an instance of {@code Attribute} 161 Attribute instance = instanceMap.get(getName()); local 162 if (instance != null) { 163 return instance;
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.modifiers/ |
push_back_exception_safety.pass.cpp | 68 CMyClass instance(42); 71 vec.push_back(instance); 76 vec.push_back(instance);
|
push_front_exception_safety.pass.cpp | 68 CMyClass instance(42); 71 vec.push_front(instance); 76 vec.push_front(instance);
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.modifiers/ |
push_back_exception_safety.pass.cpp | 70 CMyClass instance(42); 73 vec.push_back(instance); 80 vec.push_back(instance);
|