HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 351 - 375 of 2454) sorted by null

<<11121314151617181920>>

  /prebuilts/gdb/linux-x86/lib/python2.7/
SimpleXMLRPCServer.py 5 class instance, or by extending the SimpleXMLRPCServer
20 2. Install an instance:
41 3. Install an instance with custom dispatch method:
171 self.instance = None
175 def register_instance(self, instance, allow_dotted_names=False):
176 """Registers an instance to respond to XML-RPC requests.
178 Only one instance can be installed at a time.
180 If the registered instance has a _dispatch method then that
183 e.g. instance._dispatch('add',(2,3))
185 If the registered instance does not have a _dispatch metho
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SimpleXMLRPCServer.py 5 class instance, or by extending the SimpleXMLRPCServer
20 2. Install an instance:
41 3. Install an instance with custom dispatch method:
171 self.instance = None
175 def register_instance(self, instance, allow_dotted_names=False):
176 """Registers an instance to respond to XML-RPC requests.
178 Only one instance can be installed at a time.
180 If the registered instance has a _dispatch method then that
183 e.g. instance._dispatch('add',(2,3))
185 If the registered instance does not have a _dispatch metho
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SimpleXMLRPCServer.py 5 class instance, or by extending the SimpleXMLRPCServer
20 2. Install an instance:
41 3. Install an instance with custom dispatch method:
171 self.instance = None
175 def register_instance(self, instance, allow_dotted_names=False):
176 """Registers an instance to respond to XML-RPC requests.
178 Only one instance can be installed at a time.
180 If the registered instance has a _dispatch method then that
183 e.g. instance._dispatch('add',(2,3))
185 If the registered instance does not have a _dispatch metho
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkWsiUtil.cpp 124 VkInstance instance,
149 return vki.createXlibSurfaceKHR(instance, &createInfo, pAllocator, pSurface);
165 return vki.createXcbSurfaceKHR(instance, &createInfo, pAllocator, pSurface);
181 return vki.createWaylandSurfaceKHR(instance, &createInfo, pAllocator, pSurface);
197 return vki.createMirSurfaceKHR(instance, &createInfo, pAllocator, pSurface);
211 return vki.createAndroidSurfaceKHR(instance, &createInfo, pAllocator, pSurface);
227 return vki.createWin32SurfaceKHR(instance, &createInfo, pAllocator, pSurface);
237 VkInstance instance,
244 VK_CHECK(createSurface(vki, instance, wsiType, nativeDisplay, nativeWindow, pAllocator, &object));
245 return Move<VkSurfaceKHR>(check<VkSurfaceKHR>(object), Deleter<VkSurfaceKHR>(vki, instance, pAllocator))
    [all...]
vkRefUtilImpl.inl 294 Move<VkSurfaceKHR> createDisplayPlaneSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkDisplaySurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator)
297 VK_CHECK(vk.createDisplayPlaneSurfaceKHR(instance, pCreateInfo, pAllocator, &object));
298 return Move<VkSurfaceKHR>(check<VkSurfaceKHR>(object), Deleter<VkSurfaceKHR>(vk, instance, pAllocator));
308 Move<VkSurfaceKHR> createXlibSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkXlibSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator)
311 VK_CHECK(vk.createXlibSurfaceKHR(instance, pCreateInfo, pAllocator, &object));
312 return Move<VkSurfaceKHR>(check<VkSurfaceKHR>(object), Deleter<VkSurfaceKHR>(vk, instance, pAllocator));
315 Move<VkSurfaceKHR> createXcbSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkXcbSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator)
318 VK_CHECK(vk.createXcbSurfaceKHR(instance, pCreateInfo, pAllocator, &object));
319 return Move<VkSurfaceKHR>(check<VkSurfaceKHR>(object), Deleter<VkSurfaceKHR>(vk, instance, pAllocator));
322 Move<VkSurfaceKHR> createWaylandSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkWaylandSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmUpdateHandler.java 76 // Create and add instance to db
85 protected void onPostExecute(AlarmInstance instance) {
86 if (instance != null) {
88 mSnackbarAnchor, instance.getAlarmTime().getTimeInMillis());
114 // just update the instance in the database and update notifications.
117 for (AlarmInstance instance : instanceList) {
118 // Make a copy of the existing instance
119 final AlarmInstance newInstance = new AlarmInstance(instance);
120 // Copy over minor change data to the instance; we don't know
125 // Since we copied the mId of the old instance and the mId is use
    [all...]
  /external/testng/src/main/java/org/testng/internal/
Invoker.java 88 private void setClassInvocationFailure(Class<?> clazz, Object instance) {
94 instances.add(instance);
97 private void setMethodInvocationFailure(ITestNGMethod method, Object instance) {
103 instances.add(getMethodInvocationToken(method, instance));
130 * If instance is non-null, the configuration will be run on it. If it is null,
140 Object instance)
142 invokeConfigurations(testClass, null, allMethods, suite, params, parameterValues, instance,
152 Object instance,
169 instance,
180 inst = instance;
356 setClassInvocationFailure(testClass.getRealClass(), instance); local
358 setClassInvocationFailure(tm.getRealClass(), instance); local
369 setClassInvocationFailure(tm.getRealClass(), instance); local
382 setClassInvocationFailure(tm.getRealClass(), instance); local
385 setClassInvocationFailure(xmlClass.getSupportClass(), instance); local
981 Object instance; local
1534 Object instance = r.getInstance() != null local
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/android/
forwarder.py 75 device: A DeviceUtils instance.
85 instance = Forwarder._GetInstanceLocked(tool)
86 instance._InitDeviceLocked(device, tool)
99 [instance._host_forwarder_path] + redirection_command)
115 '%s exited with %d:\n%s' % (instance._host_forwarder_path,
125 instance._device_to_host_port_map[serial_with_port] = host_port
126 instance._host_to_device_port_map[host_port] = serial_with_port
135 device: A DeviceUtils instance.
146 device: A DeviceUtils instance.
186 """Returns the singleton instance
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
unique_objects.h 48 VkInstance instance; member in struct:unique_objects::layer_data
74 static void createInstanceRegisterExtensions(const VkInstanceCreateInfo *pCreateInfo, VkInstance instance) {
76 VkLayerInstanceDispatchTable *pDisp = get_dispatch_table(unique_objects_instance_table_map, instance);
79 pDisp->DestroySurfaceKHR = (PFN_vkDestroySurfaceKHR)gpa(instance, "vkDestroySurfaceKHR");
81 (PFN_vkGetPhysicalDeviceSurfaceSupportKHR)gpa(instance, "vkGetPhysicalDeviceSurfaceSupportKHR");
83 (PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR)gpa(instance, "vkGetPhysicalDeviceSurfaceCapabilitiesKHR");
85 (PFN_vkGetPhysicalDeviceSurfaceFormatsKHR)gpa(instance, "vkGetPhysicalDeviceSurfaceFormatsKHR");
87 (PFN_vkGetPhysicalDeviceSurfacePresentModesKHR)gpa(instance, "vkGetPhysicalDeviceSurfacePresentModesKHR");
89 pDisp->CreateWin32SurfaceKHR = (PFN_vkCreateWin32SurfaceKHR)gpa(instance, "vkCreateWin32SurfaceKHR");
91 (PFN_vkGetPhysicalDeviceWin32PresentationSupportKHR)gpa(instance, "vkGetPhysicalDeviceWin32PresentationSupportKHR")
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/
forwarder.py 119 device: A DeviceUtils instance.
129 instance = Forwarder._GetInstanceLocked(tool)
130 instance._InitDeviceLocked(device, tool)
142 map_cmd = [instance._host_forwarder_path] + map_arg_list
156 instance._KillDeviceLocked(device, tool)
179 instance._device_to_host_port_map[serial_with_port] = host_port
180 instance._host_to_device_port_map[host_port] = serial_with_port
189 device: A DeviceUtils instance.
200 device: A DeviceUtils instance.
204 instance = Forwarder._GetInstanceLocked(None
    [all...]
  /cts/tests/tests/shortcutmanager/src/android/content/pm/cts/shortcutmanager/
ShortcutManagerNegativeTest.java 47 private static Object readField(Object instance, String field)
49 final Field f = instance.getClass().getDeclaredField(field);
51 final Object ret = f.get(instance);
58 private static void callMethodExpectingSecurityException(Object instance, String name,
63 for (Method method : instance.getClass().getDeclaredMethods()) {
75 m.invoke(instance, args);
  /external/deqp/framework/platform/win32/
tcuWGLContextFactory.cpp 68 WGLContext (HINSTANCE instance, const wgl::Core& wglCore, const glu::RenderConfig& config);
89 WGLContext::WGLContext (HINSTANCE instance, const wgl::Core& wglCore, const glu::RenderConfig& config)
91 , m_window (instance,
156 ContextFactory::ContextFactory (HINSTANCE instance)
158 , m_instance (instance)
159 , m_wglCore (instance)
tcuWin32VulkanPlatform.cpp 72 VulkanDisplay (HINSTANCE instance)
73 : vk::wsi::Win32DisplayInterface (vk::pt::Win32InstanceHandle(instance))
79 const HINSTANCE instance = (HINSTANCE)m_native.internal; local
83 return new VulkanWindow(MovePtr<win32::Window>(new win32::Window(instance, (int)width, (int)height)));
106 VulkanPlatform::VulkanPlatform (HINSTANCE instance)
107 : m_instance(instance)
  /external/lzma/CPP/Windows/
Window.cpp 53 HINSTANCE instance, LPVOID createParam)
59 idOrHMenu, instance, createParam);
64 idOrHMenu, instance, createParam);
71 HINSTANCE instance, LPVOID createParam)
77 idOrHMenu, instance, createParam);
100 idOrHMenu, instance, createParam);
  /external/skia/src/core/
SkConvolver.cpp 140 FilterInstance instance; local
143 instance.fDataLocation = (static_cast<int>(fFilterValues.count()) -
145 instance.fOffset = filterOffset;
146 instance.fTrimmedLength = filterLength;
147 instance.fLength = filterSize;
148 fFilters.push(instance);
  /external/swiftshader/src/OpenGL/libGL/
main.cpp 128 static void WaitForDebugger(HINSTANCE instance)
132 HRSRC dialog = FindResource(instance, MAKEINTRESOURCE(IDD_DIALOG1), RT_DIALOG);
133 DLGTEMPLATE *dialogTemplate = (DLGTEMPLATE*)LoadResource(instance, dialog);
134 DialogBoxIndirect(instance, dialogTemplate, NULL, DebuggerWaitDialogProc);
138 extern "C" BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
144 WaitForDebugger(instance);
  /external/vulkan-validation-layers/loader/
debug_report.h 29 * What happens if a layer is enabled on both the instance chain
36 * the instance chain and once via the device chain.
40 * Since the instance chain requires us iterating over the available ICDs
47 * the MsgCallback object. That needs to be an instance thing. So, since
48 * we used an instance to create it, we need a custom Destroy that also
49 * takes an instance. That way we can iterate over the ICDs properly.
52 * Loader will create instance chain with enabled extensions.
54 * the instance chain.
55 * fn = GetProcAddr(INSTANCE, "vkCreateMsgCallback") -> point to loader's
58 * Have only established the instance chain so far. Loader will call th
    [all...]
  /frameworks/minikin/libs/minikin/
FontLanguageListCache.cpp 144 static FontLanguageListCache* instance = nullptr; local
145 if (instance == nullptr) {
146 instance = new FontLanguageListCache();
150 instance->mLanguageLists.push_back(FontLanguages());
151 instance->mLanguageListLookupTable.insert(std::make_pair("", kEmptyListId));
153 return instance;
  /libcore/ojluni/src/main/java/java/util/
Currency.java 43 * <code>Currency</code> instance for any given currency. Therefore, there's
44 * no public constructor. You obtain a <code>Currency</code> instance using
61 // class data: instance map
71 * Constructs a <code>Currency</code> instance. The constructor is private
72 * so that we can insure that there's never more than one instance for a
81 * Returns the <code>Currency</code> instance for the given currency code.
84 * @return the <code>Currency</code> instance for the given currency code
91 Currency instance = instances.get(currencyCode); local
92 if (instance != null) {
93 return instance;
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/
SecretKeyFactory.java 35 import sun.security.jca.GetInstance.Instance;
388 Instance instance = JceSecurity.getInstance("SecretKeyFactory", local
390 return new SecretKeyFactory((SecretKeyFactorySpi)instance.impl,
391 instance.provider, algorithm);
428 Instance instance = JceSecurity.getInstance("SecretKeyFactory", local
430 return new SecretKeyFactory((SecretKeyFactorySpi)instance.impl,
431 instance.provider, algorithm);
  /external/autotest/server/site_tests/network_WiFi_RoamEndToEnd/
network_WiFi_RoamEndToEnd.py 54 ssid = self.context.router.get_ssid(instance=0)
61 ssid = self.context.router.get_ssid(instance=1)
64 self.context.router.deconfig_aps(instance=0)
  /external/desugar/java/com/google/devtools/common/options/
OptionsData.java 86 ExpansionFunction instance; local
89 instance = (ExpansionFunction) constructor.newInstance();
95 String[] expansion = instance.getExpansion(isolatedData);
  /external/guava/guava-gwt/src/com/google/common/collect/
Multimap_CustomFieldSerializerBase.java 69 SerializationStreamWriter writer, Multimap<?, ?> instance)
71 writer.writeInt(instance.asMap().size());
73 : instance.asMap().entrySet()) {
  /external/libxml2/
check-relaxng-test-suite.py 68 # handle a valid instance
75 instance = ""
79 instance = instance + child.serialize()
83 doc = libxml2.parseDoc(instance)
88 log.write("\nFailed to parse correct instance:\n-----\n")
89 log.write(instance)
100 log.write("\nFailed to validate correct instance:\n-----\n")
101 log.write(instance)
109 # handle an invalid instance
    [all...]
  /external/objenesis/tck/src/main/java/org/objenesis/tck/
TCK.java 72 * Register an Objenesis instance to use when attempting to instantiate a class.
74 * @param objenesis Tested Objenesis instance
75 * @param description Description of the Objenesis instance
109 Object instance = objenesis.newInstance(candidate); local
110 boolean success = instance != null && instance.getClass() == candidate;

Completed in 937 milliseconds

<<11121314151617181920>>