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

<<21222324252627282930>>

  /external/autotest/server/site_tests/network_WiFi_Prefer5Ghz/
network_WiFi_Prefer5Ghz.py 22 ssid = self.context.router.get_ssid(instance=0)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/
server.py 160 prop = StringProperty(name='instance_type', verbose_name='Instance Type',
240 instance_id = StringProperty(verbose_name="EC2 Instance ID")
250 instance_type = CalculatedProperty(verbose_name="Instance Type", calculated_type=str, use_method=True)
272 Create a new instance based on the specified configuration file or the specified
327 instance = instances[0]
328 print('Waiting for instance to start so we can set its elastic IP address...')
329 # Sometimes we get a message from ec2 that says that the instance does not exist.
332 while instance.update() != 'running':
334 instance.use_ip(elastic_ip)
335 print('set the elastic IP of the first instance to %s' % elastic_ip
    [all...]
  /external/chromium-trace/catapult/tracing/third_party/css-element-queries/src/
ElementQueries.js 276 ElementQueries.instance.update(withTracking);
298 if (!ElementQueries.instance) {
299 ElementQueries.instance = new ElementQueries();
302 ElementQueries.instance.init(ElementQueries.withTracking);
  /external/deqp/external/vulkancts/framework/vulkan/
vkDebugReportUtil.hpp 77 DebugReportRecorder (const InstanceInterface& vki, VkInstance instance);
vkPlatform.hpp 67 InstanceDriver (const PlatformInterface& platformInterface, VkInstance instance);
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderDiscardTests.cpp 49 virtual void setup (ShaderRenderCaseInstance& instance, const tcu::Vec4&) const
51 instance.useUniform(0u, UI_ONE);
52 instance.useUniform(1u, UI_TWO);
54 instance.useSampler2D(2u, 0u); // To the uniform binding location 2 bind the texture 0
  /external/guava/guava/src/com/google/common/collect/
Serialization.java 215 void set(T instance, Object value) {
217 field.set(instance, value);
223 void set(T instance, int value) {
225 field.set(instance, value);
  /external/guice/core/src/com/google/inject/
Injector.java 35 * <li>This {@link Injector} instance itself
59 * Injects dependencies into the fields and methods of {@code instance}. Ignores the presence or
62 * <p>Whenever Guice creates an instance, it performs this injection automatically (after first
66 * @param instance to inject members on
71 void injectMembers(Object instance);
183 * Returns the appropriate instance for the given injection key; equivalent to {@code
188 * @throws ProvisionException if there was a runtime failure while providing an instance.
193 * Returns the appropriate instance for the given injection type; equivalent to {@code
198 * @throws ProvisionException if there was a runtime failure while providing an instance.
  /external/guice/core/src/com/google/inject/binder/
LinkedBindingBuilder.java 52 void toInstance(T instance);
  /external/guice/core/src/com/google/inject/internal/
BindingBuilder.java 77 public void toInstance(T instance) {
82 if (instance != null) {
84 injectionPoints = InjectionPoint.forInstanceMethodsAndFields(instance.getClass());
96 base.getSource(), base.getKey(), Scoping.EAGER_SINGLETON, injectionPoints, instance));
  /external/jmdns/src/javax/jmdns/impl/
DNSTaskStarter.java 34 * DNSTaskStarter.Factory enable the creation of new instance of DNSTaskStarter.
50 * jmDNS instance
89 * Returns a new instance of DNSTaskStarter using the class delegate if it exists.
92 * jmDNS instance
93 * @return new instance of DNSTaskStarter
96 DNSTaskStarter instance = null; local
99 instance = delegate.newDNSTaskStarter(jmDNSImpl);
101 return (instance != null ? instance : new DNSTaskStarterImpl(jmDNSImpl));
105 * Return the instance of the DNSTaskStarter Factory
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/
SimpleOrthoGroupStrategy.java 82 Sort.instance().sort(contents, comparator);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
TextureRegion3DTest.java 34 ModelInstance instance; field in class:TextureRegion3DTest
65 instance = new ModelInstance(model);
66 attribute = instance.materials.get(0).get(TextureAttribute.class, TextureAttribute.Diffuse);
85 modelBatch.render(instance, environment);
  /external/libxml2/include/libxml/
schematron.h 135 xmlDocPtr instance);
  /external/testng/src/main/java/org/testng/internal/
TestNGMethod.java 41 public TestNGMethod(Method method, IAnnotationFinder finder, XmlTest xmlTest, Object instance) {
42 this(method, finder, true, xmlTest, instance);
46 XmlTest xmlTest, Object instance) {
47 super(method.getName(), method, finder, instance); local
TestResult.java 42 Object instance,
49 init(testClass, instance, method, throwable, start, end, context);
55 * @param instance
62 Object instance,
80 m_instance = instance;
123 * If this result's related instance implements ITest or use @Test(testName=...), returns its test name,
  /external/v8/test/mjsunit/regress/
regress-crbug-306220.js 38 assertEquals("Error: instance", String(new CustomError("instance")));
  /external/vulkan-validation-layers/tests/
vktestframework.h 73 VkFormat GetFormat(VkInstance instance, vk_testing::Device *device);
  /external/webrtc/webrtc/base/
dbus.cc 90 // Forwards the message to the given instance.
93 void *instance) {
94 ASSERT(instance);
95 if (instance) {
96 return static_cast<DBusSigFilter *>(instance)->Callback(message);
314 // Creates an instance of DBusMonitor
dbus.h 77 void *instance);
79 // Handles callback on DBus messages to each DBusSigFilter instance.
133 // Creates an instance of DBusMonitor.
  /external/webrtc/webrtc/examples/peerconnection/client/
main.cc 20 int PASCAL wWinMain(HINSTANCE instance, HINSTANCE prev_instance,
24 rtc::ThreadManager::Instance()->SetCurrentThread(&w32_thread);
  /frameworks/av/include/media/
mediascanner.h 50 static void init(MediaAlbumArt* instance, int32_t size, const void* data);
  /frameworks/base/core/java/android/hardware/camera2/
CameraMetadata.java 119 * Optionally, if {@code instance} is not null, then filter out any keys with null values.
131 CameraMetadata<TKey> instance,
155 key = (TKey) field.get(instance);
162 if (instance == null || instance.getProtected(key) != null) {
    [all...]
  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
ButtonActivity.java 39 final ButtonActivity instance = this; local
  /frameworks/native/vulkan/libvulkan/
driver_gen.h 32 INSTANCE,
85 bool InitDriverTable(VkInstance instance,

Completed in 1229 milliseconds

<<21222324252627282930>>