/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/ |
GetValues007Debuggee.java | 30 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 | 27 Move<VkSurfaceKHR> createDisplayPlaneSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkDisplaySurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL); 29 Move<VkSurfaceKHR> createXlibSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkXlibSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL); 30 Move<VkSurfaceKHR> createXcbSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkXcbSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL); 31 Move<VkSurfaceKHR> createWaylandSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkWaylandSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL); 32 Move<VkSurfaceKHR> createMirSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkMirSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL); 33 Move<VkSurfaceKHR> createAndroidSurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkAndroidSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL); 34 Move<VkSurfaceKHR> createWin32SurfaceKHR (const InstanceInterface& vk, VkInstance instance, const VkWin32SurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL); 35 Move<VkDebugReportCallbackEXT> createDebugReportCallbackEXT (const InstanceInterface& vk, VkInstance instance, const VkDebugReportCallbackCreateInfoEXT* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
|
/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...] |
/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/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/ |
ModelTest.java | 71 for (final ModelInstance instance : instances) {
72 if (instance.animations.size > 0) {
96 final ModelInstance instance = new ModelInstance(assets.get(currentlyLoading, Model.class));
local 97 instance.transform = transform;
98 instances.add(instance);
99 if (instance.animations.size > 0) animationControllers.put(instance, new AnimationController(instance));
102 instance.calculateBoundingBox(bounds);
|
/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/mockito/src/org/mockito/ |
MockSettings.java | 59 * @return settings instance so that you can fluently specify other settings 79 * @return settings instance so that you can fluently specify other settings 84 * Specifies the instance to spy on. Makes sense only for spies/partial mocks. 86 * Sets the instance that will be spied. Actually copies the internal fields of the passed instance to the mock. 120 * @param instance to spy on 121 * @return settings instance so that you can fluently specify other settings 123 MockSettings spiedInstance(Object instance); 141 * @return settings instance so that you can fluently specify other settings 159 * @return settings instance so that you can fluently specify other setting [all...] |
/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/testng/src/main/java/org/testng/internal/ |
ClassImpl.java | 52 public ClassImpl(ITestContext context, Class cls, XmlClass xmlClass, Object instance, 61 m_instance = instance; 63 if (instance instanceof ITest) { 64 m_testName = ((ITest) instance).getTestName(); 119 Object instance = getInstanceFromGuice(); local 121 if (instance != null) { 122 m_defaultInstance = instance; 135 * @return an instance from Guice if @Test(guiceModule) attribute was found, null otherwise 212 public void addInstance(Object instance) { 213 m_instances.add(instance); [all...] |
/external/v8/src/ |
external-reference-table.h | 20 static ExternalReferenceTable* instance(Isolate* isolate);
|
/external/vulkan-validation-layers/demos/smoke/ |
ShellXcb.h | 44 VkSurfaceKHR create_surface(VkInstance instance);
|
/external/vulkan-validation-layers/libs/vkjson/ |
vkjson_unittest.cc | 55 VkJsonInstance instance; local 56 instance.devices.resize(1); 57 VkJsonDevice& device = instance.devices[0]; 73 std::string json = VkJsonInstanceToJson(instance);
|
/external/vulkan-validation-layers/tests/ |
vktestframeworkandroid.h | 53 VkFormat GetFormat(VkInstance instance, vk_testing::Device *device);
|
/frameworks/native/vulkan/include/vulkan/ |
vk_layer_interface.h | 44 typedef VkResult(VKAPI_PTR* PFN_vkSetInstanceLoaderData)(VkInstance instance,
|
/frameworks/native/vulkan/libvulkan/ |
stubhal.cpp | 67 VkInstance* instance) { 73 *instance = reinterpret_cast<VkInstance>(&g_instances[i]); 81 VKAPI_ATTR void DestroyInstance(VkInstance instance, 85 reinterpret_cast<hwvulkan_dispatch_t*>(instance) - &g_instances[0]; 87 "DestroyInstance: invalid instance handle"); 91 VKAPI_ATTR VkResult EnumeratePhysicalDevices(VkInstance /*instance*/, 98 VKAPI_ATTR PFN_vkVoidFunction GetInstanceProcAddr(VkInstance /*instance*/,
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/editor/ |
SelectAccountDialogFragment.java | 66 final SelectAccountDialogFragment instance = new SelectAccountDialogFragment(); local 67 instance.setArguments(args); 68 instance.setTargetFragment(targetFragment, 0); 69 instance.show(fragmentManager, null);
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
AlarmUtils.java | 45 public static String getAlarmText(Context context, AlarmInstance instance, 47 String alarmTimeStr = getFormattedTime(context, instance.getAlarmTime()); 48 return (instance.mLabel.isEmpty() || !includeLabel) 50 : alarmTimeStr + " - " + instance.mLabel;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
new.py | 13 from types import InstanceType as instance namespace
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
new.py | 13 from types import InstanceType as instance namespace
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
new.py | 13 from types import InstanceType as instance namespace
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
new.py | 13 from types import InstanceType as instance namespace
|