HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 426 - 450 of 1940) sorted by null

<<11121314151617181920>>

  /external/libweave/src/commands/
command_queue.cc 73 void CommandQueue::Add(std::unique_ptr<CommandInstance> instance) {
74 std::string id = instance->GetID();
76 instance->AttachToQueue(this);
77 auto pair = map_.insert(std::make_pair(id, std::move(instance)));
110 std::shared_ptr<CommandInstance> instance = p->second;
111 instance->DetachFromQueue();
114 cb.Run(instance.get());
  /external/opencv3/samples/gpu/performance/
performance.cpp 144 return TestSystem::instance().workingDir() + relpath;
152 TestSystem::instance().printError(err_msg);
207 TestSystem::instance().setTestFilter(filter);
214 TestSystem::instance().setWorkingDir(workdir);
218 TestSystem::instance().setListMode(true);
220 TestSystem::instance().setNumIters(iters);
224 TestSystem::instance().run();
  /external/testng/src/main/java/org/testng/internal/
TestNGClassFinder.java 77 Object instance = cls.newInstance(); local
79 objectFactory = (ITestObjectFactory) m.invoke(instance, testContext);
81 objectFactory = (ITestObjectFactory) m.invoke(instance);
123 Utils.log("", 5, "[WARN] Found an abstract class with no valid instance attached: " + cls);
134 Object instance= theseInstances[0]; local
142 instance,
170 throw new TestNGException("The factory " + fm + " returned a null instance" +
210 for(Object instance : entry.getValue()) {
213 ic.addInstance(instance);
  /frameworks/native/vulkan/libvulkan/
driver.h 35 // This is here so that we can embed api::{Instance,Device}Data in
36 // driver::{Instance,Device}Data to avoid pointer chasing. They are
110 VKAPI_ATTR PFN_vkVoidFunction GetInstanceProcAddr(VkInstance instance, const char* pName);
117 VKAPI_ATTR void DestroyInstance(VkInstance instance, const VkAllocationCallbacks* pAllocator);
121 VKAPI_ATTR VkResult EnumeratePhysicalDevices(VkInstance instance, uint32_t* pPhysicalDeviceCount, VkPhysicalDevice* pPhysicalDevices);
166 inline bool SetData(VkInstance instance, const InstanceData& data) {
167 return SetDataInternal(instance, &data);
195 inline InstanceData& GetData(VkInstance instance) {
196 return *reinterpret_cast<InstanceData*>(GetDataInternal(instance));
  /prebuilts/gdb/darwin-x86/lib/python2.7/
DocXMLRPCServer.py 79 # exclude the argument bound to the instance, it will be
180 elif self.instance is not None:
182 if hasattr(self.instance, '_get_method_argstring'):
183 method_info[0] = self.instance._get_method_argstring(method_name)
184 if hasattr(self.instance, '_methodHelp'):
185 method_info[1] = self.instance._methodHelp(method_name)
190 elif not hasattr(self.instance, '_dispatch'):
193 self.instance,
202 "instance installed"
  /prebuilts/gdb/linux-x86/lib/python2.7/
DocXMLRPCServer.py 79 # exclude the argument bound to the instance, it will be
180 elif self.instance is not None:
182 if hasattr(self.instance, '_get_method_argstring'):
183 method_info[0] = self.instance._get_method_argstring(method_name)
184 if hasattr(self.instance, '_methodHelp'):
185 method_info[1] = self.instance._methodHelp(method_name)
190 elif not hasattr(self.instance, '_dispatch'):
193 self.instance,
202 "instance installed"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 79 # exclude the argument bound to the instance, it will be
180 elif self.instance is not None:
182 if hasattr(self.instance, '_get_method_argstring'):
183 method_info[0] = self.instance._get_method_argstring(method_name)
184 if hasattr(self.instance, '_methodHelp'):
185 method_info[1] = self.instance._methodHelp(method_name)
190 elif not hasattr(self.instance, '_dispatch'):
193 self.instance,
202 "instance installed"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 79 # exclude the argument bound to the instance, it will be
180 elif self.instance is not None:
182 if hasattr(self.instance, '_get_method_argstring'):
183 method_info[0] = self.instance._get_method_argstring(method_name)
184 if hasattr(self.instance, '_methodHelp'):
185 method_info[1] = self.instance._methodHelp(method_name)
190 elif not hasattr(self.instance, '_dispatch'):
193 self.instance,
202 "instance installed"
  /development/samples/UiAutomator/src/com/android/test/uiautomator/demos/
LogBuildNumber.java 134 UiScrollable aboutSettingsList = new UiScrollable(SettingsHelper.LIST_VIEW.instance(1));
136 aboutSettingsList = new UiScrollable(SettingsHelper.LIST_VIEW.instance(0));
146 new UiSelector().className(android.widget.TextView.class.getName()).instance(1));
150 // we're not certain that the instance(1) or second text view inside this layout is
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
EventBuilder.java 125 * @param instance the required object ID
128 public EventBuilder setInstanceOnly(long instance) {
130 mod.instance = instance;
  /external/autotest/client/cros/tendo/n_faced_peerd/
n_faced_peerd_main.py 38 """Construct an instance.
60 for instance in self._instances:
63 if instance == other_instance:
65 instance.add_remote_peer(other_instance.self_peer)
72 instance of peerd to all other instances of peerd as a remote
81 logging.debug('Service %s modified on instance %r',
  /external/autotest/site_utils/
sync_cloudsql_access.py 7 """Tool to sync lab servers to the "Allowed Networks" of a CloudSQL instance.
9 For a lab server to access CloudSQL instance, the server's IP must be added to
10 the "Allowed Networks" list of the CloudSQL instance. This tool is to be used to
12 "Allowed Networks" of a given CloudSQL instance.
15 servers to the "Allowed Networks" list of the CloudSQL instance. This allows
16 servers that do not run Autotest code can access the CloudSQL instance.
53 def update_allowed_networks(project, instance, afe=None, extra_servers=None):
54 """Update the "Allowed Networks" list of the given CloudSQL instance.
57 @param instance: Name of the CloudSQL instance
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
list_instances 26 def get_column(name, instance=None):
29 return instance.tags.get(tag, '')
30 return HEADERS[name]['get'](instance)
  /external/deqp/framework/platform/win32/
tcuWin32Window.cpp 40 Window::Window (HINSTANCE instance, int width, int height)
55 wndClass.hInstance = instance;
69 NULL, NULL, instance, NULL);
  /external/guice/extensions/dagger-adapter/lib/
dagger-2.0.jar 
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btCollisionObjectWrapper.java 54 /** Temporary instance, use by native methods that return a btCollisionObjectWrapper instance */
64 /** Obtains a temporary instance, used for callback methods with one or more btManifoldPoint arguments */
66 btCollisionObjectWrapper instance = argumentInstances[argumentIndex = (argumentIndex + 1) & 3]; local
67 instance.reset(swigCPtr, owner);
68 return instance;
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
ImportTest.java 57 ModelInstance instance = new ModelInstance(model, nodeName, true, true); local
58 instance.transform.set(startTransform);
60 BulletEntity entity = new BulletEntity(instance, result);
  /external/objenesis/tck/src/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
113 Object instance = objenesis.newInstance(candidate); local
114 boolean success = instance != null && instance.getClass() == candidate;
  /external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/
SLF4JLogFactory.java 78 // ----------------------------------------------------- Instance Variables
129 * if a suitable <code>Log</code> instance cannot be returned
137 * Construct (if necessary) and return a <code>Log</code> instance, using
142 * Logical name of the <code>Log</code> instance to be returned
147 * if a suitable <code>Log</code> instance cannot be returned
150 Log instance = loggerMap.get(name); local
151 if (instance != null) {
152 return instance;
  /external/v8/test/cctest/wasm/
test-run-wasm-asmjs.cc 229 CHECK_EQ(1, GetMatchingRelocInfoCount(module.instance->function_code[0], \
232 0, GetMatchingRelocInfoCount(module.instance->function_code[0], \
244 CHECK_EQ(1, GetMatchingRelocInfoCount(module.instance->function_code[0], \
247 0, GetMatchingRelocInfoCount(module.instance->function_code[0], \
258 CHECK_EQ(1, GetMatchingRelocInfoCount(module.instance->function_code[0],
260 CHECK_NE(0, GetMatchingRelocInfoCount(module.instance->function_code[0],
270 CHECK_EQ(1, GetMatchingRelocInfoCount(module.instance->function_code[0],
272 CHECK_NE(0, GetMatchingRelocInfoCount(module.instance->function_code[0],
281 CHECK_EQ(1, GetMatchingRelocInfoCount(module.instance->function_code[0],
283 CHECK_NE(0, GetMatchingRelocInfoCount(module.instance->function_code[0]
    [all...]
  /frameworks/base/core/java/android/util/
Xml.java 106 return XmlSerializerFactory.instance.newSerializer();
116 static final XmlPullParserFactory instance; field in class:Xml.XmlSerializerFactory
119 instance = XmlPullParserFactory.newInstance(TYPE, null);
  /frameworks/base/core/java/android/view/
VelocityTracker.java 25 * Use {@link #obtain} to retrieve a new instance of the class when you are going
58 VelocityTracker instance = sPool.acquire(); local
59 return (instance != null) ? instance : new VelocityTracker(null);
  /frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
SubscriptionParameters.java 36 for (OMANode instance : ulNode.getChildren()) {
37 if (instance.isLeaf()) {
41 mLimits.add(new Limit(instance));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
ImageTransformState.java 108 ImageTransformState instance = sInstancePool.acquire(); local
109 if (instance != null) {
110 return instance;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NoisyVelocityTracker.java 52 NoisyVelocityTracker instance = sNoisyPool.acquire(); local
53 return (instance != null) ? instance : new NoisyVelocityTracker();

Completed in 1351 milliseconds

<<11121314151617181920>>