/external/webrtc/webrtc/modules/desktop_capture/win/ |
cursor_unittest.cc | 24 // Loads |left| from resources, converts it to a |MouseCursor| instance and 28 HMODULE instance = GetModuleHandle(NULL); local 32 LoadImage(instance, MAKEINTRESOURCE(left), IMAGE_CURSOR, 0, 0, 0))); 45 LoadImage(instance, MAKEINTRESOURCE(right), IMAGE_CURSOR, 0, 0, 0)));
|
/frameworks/av/services/audioflinger/ |
BufLog.h | 62 * BUFLOG_EXISTS returns true if there is an instance of BufLog 64 * BUFLOG_RESET If an instance of BufLog exists, it stops the capture and closes all 82 BufLogSingleton::instance()->write(STREAMID, TAG, FORMAT, CHANNELS, SAMPLINGRATE, MAXBYTES, \ 99 BufLogSingleton::instance()->reset(); } } while (0) 191 static BufLog *instance();
|
/hardware/intel/common/omx-components/videocodec/ |
OMXComponentDefines.h | 106 OMX_ERRORTYPE CreateInstance(OMX_PTR *instance) {\ 107 *instance = NULL;\ 112 *instance = inst;\
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/ |
CursorAnchorInfoCompatWrapper.java | 55 public static CursorAnchorInfoCompatWrapper wrap(@Nullable final CursorAnchorInfo instance) { 59 if (instance == null) { 62 return new RealWrapper(instance);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/ |
AudioRecordHelper.java | 26 private static AudioRecordHelper instance; field in class:AudioRecordHelper 63 if (instance == null) { 64 instance = new AudioRecordHelper(); 66 return instance;
|
/external/ImageMagick/Magick++/lib/ |
ImageRef.cpp | 104 *instance; local 110 instance=imgRef; 118 // We don't own the image, create a new ImageRef instance. 119 instance=new ImageRef(replacement_,imgRef->_options); 123 return(instance);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/ |
GetValues006Debuggee.java | 31 GetValues006Interface instance = new GetValues006Implementer(); local
|
GetValues007Debuggee.java | 31 GetValues007Interface instance = new GetValues007Implementer(); local
|
/external/autotest/server/site_tests/network_WiFi_RoamSuspendEndToEnd/ |
network_WiFi_RoamSuspendEndToEnd.py | 48 self.context.router.deconfig_aps(instance=0) 52 self.context.router.deconfig_aps(instance=0) 74 ssid = self.context.router.get_ssid(instance=0) 81 ssid = self.context.router.get_ssid(instance=1)
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkDebugReportUtil.cpp | 54 "Instance", 129 VkInstance instance, 147 return createDebugReportCallbackEXT(vki, instance, &createInfo); 152 DebugReportRecorder::DebugReportRecorder (const InstanceInterface& vki, VkInstance instance) 154 , m_callback (createCallback(vki, instance, &m_messages))
|
vkRefUtil.inl | 25 Move<VkSurfaceKHR> createDisplayPlaneSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkDisplaySurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL); 27 Move<VkSurfaceKHR> createXlibSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkXlibSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL); 28 Move<VkSurfaceKHR> createXcbSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkXcbSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL); 29 Move<VkSurfaceKHR> createWaylandSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkWaylandSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL); 30 Move<VkSurfaceKHR> createMirSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkMirSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL); 31 Move<VkSurfaceKHR> createAndroidSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkAndroidSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL); 32 Move<VkSurfaceKHR> createWin32SurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkWin32SurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL); 33 Move<VkDebugReportCallbackEXT> createDebugReportCallbackEXT (const InstanceInterface& vk, VkInstance instance, const VkDebugReportCallbackCreateInfoEXT* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
|
/external/guice/extensions/spring/src/com/google/inject/spring/ |
SpringIntegration.java | 114 volatile T instance; field in class:SpringIntegration.SpringProvider 117 if (instance == null) { 118 instance = type.cast(beanFactory.getBean(name)); 120 return instance;
|
/external/libbrillo/brillo/dbus/ |
dbus_object_test_helpers.h | 37 // instance of D-Bus method call response message. We use this in tests 41 // callback to the object instance via a weak pointer. 83 // |instance| and passes the |args| to it. The method's return value provided 93 Class* instance, 105 (instance->*method)(std::move(method_response), args...); 121 Class* instance, 132 (instance->*method)(std::move(method_response), args...);
|
/external/libxml2/ |
check-xsddata-test-suite.py | 54 # handle a valid instance 61 instance = node.prop("dtd") 62 if instance == None: 63 instance = "" 67 instance = instance + child.serialize() 72 doc = libxml2.parseDoc(instance) 77 log.write("\nFailed to parse correct instance:\n-----\n") 78 log.write(instance) 84 print "instance line %d" % (node.lineNo() [all...] |
/external/llvm/bindings/python/llvm/ |
common.py | 85 def __get__(self, instance, instance_type=None): 86 if instance is None: 89 value = self.wrapped(instance) 90 setattr(instance, self.wrapped.__name__, value)
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
HtmlToken.java | 39 static HtmlToken instance(int start, int end, HtmlTokenType type) { method in class:HtmlToken
|
/external/vulkan-validation-layers/demos/smoke/ |
ShellXcb.h | 38 VkSurfaceKHR create_surface(VkInstance instance);
|
/external/vulkan-validation-layers/libs/vkjson/ |
vkjson_unittest.cc | 48 VkJsonInstance instance; local 49 instance.devices.resize(1); 50 VkJsonDevice& device = instance.devices[0]; 66 std::string json = VkJsonInstanceToJson(instance);
|
/external/vulkan-validation-layers/tests/ |
vktestframeworkandroid.h | 45 VkFormat GetFormat(VkInstance instance, vk_testing::Device *device);
|
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/ |
serializable.h | 38 // Resolves a pointer to member with the given instance, yielding a 39 // reference to the member in that instance. 40 static Type& Resolve(Class& instance) { return (instance.*Pointer); } 41 static const Type& Resolve(const Class& instance) { 42 return (instance.*Pointer);
|
/frameworks/native/vulkan/include/vulkan/ |
vk_layer_interface.h | 44 typedef VkResult(VKAPI_PTR* PFN_vkSetInstanceLoaderData)(VkInstance instance,
|
/frameworks/native/vulkan/libvulkan/ |
stubhal.cpp | 69 VkInstance* instance) { 75 *instance = reinterpret_cast<VkInstance>(&g_instances[i]); 83 VKAPI_ATTR void DestroyInstance(VkInstance instance, 87 reinterpret_cast<hwvulkan_dispatch_t*>(instance) - &g_instances[0]; 89 "DestroyInstance: invalid instance handle"); 93 VKAPI_ATTR VkResult EnumeratePhysicalDevices(VkInstance /*instance*/, 100 VKAPI_ATTR PFN_vkVoidFunction GetInstanceProcAddr(VkInstance /*instance*/,
|
/packages/apps/Dialer/java/com/android/dialer/compat/ |
CompatUtils.java | 170 * @param instance The instance of the class to invoke the method on. 174 * @return The result of the invocation or {@code null} if instance or methodName are empty, or if 179 @Nullable Object instance, 183 if (instance == null || TextUtils.isEmpty(methodName)) { 187 String className = instance.getClass().getName(); 191 .invoke(instance, parameters);
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/ |
SimpleDialog.java | 155 SimpleDialog instance = new SimpleDialog(); local 175 instance.setCancelable(mCancelable); 178 instance.setArguments(args); 179 return instance;
|
/external/guice/core/test/com/google/inject/ |
OptionalBindingTest.java | 29 * injectMembers(), bind to instance, and bind to provider instance) for all 103 HasOptionalInjections instance = new HasOptionalInjections(); local 104 Guice.createInjector(everythingModule).injectMembers(instance); 105 instance.assertEverythingInjected(); 109 HasOptionalInjections instance = new HasOptionalInjections(); local 110 Guice.createInjector(partialModule).injectMembers(instance); 111 instance.assertNothingInjected(); 115 HasOptionalInjections instance = new HasOptionalInjections(); local 116 Guice.createInjector().injectMembers(instance); [all...] |