HomeSort by relevance Sort by last modified time
    Searched defs:instance (Results 326 - 350 of 541) sorted by null

<<11121314151617181920>>

  /external/tensorflow/tensorflow/compiler/jit/kernels/
xla_ops.cc 174 static XlaExecutableClosureStore* instance = new XlaExecutableClosureStore; local
175 return instance;
  /external/testng/src/main/java/org/testng/internal/
ClassHelper.java 50 T instance = clazz.newInstance(); local
52 return instance;
281 * Create an instance for the given class.
346 // Create an instance of the enclosing class so we can instantiate
347 // the nested class (actually, we reuse the existing instance).
471 String error = "Could not create an instance of class " + declaringClass
ConfigurationMethod.java 60 Object instance)
62 super(com.getName(), com, annotationFinder, instance); local
100 Object instance)
103 isBeforeClass, isAfterClass, isBeforeMethod, isAfterMethod, beforeGroups, afterGroups, instance);
118 Object instance) {
121 true, instance);
135 Object instance)
151 instance));
159 IAnnotationFinder annotationFinder, boolean isBefore, Object instance) {
171 instance);
    [all...]
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
  /external/v8/src/runtime/
runtime-test.cc 458 Local<v8::Object> instance = local
463 return *Utils::OpenHandle(*instance);
    [all...]
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
WaltTcpConnection.java 60 private static WaltTcpConnection instance; field in class:WaltTcpConnection
65 if (instance == null) {
66 instance = new WaltTcpConnection(context.getApplicationContext());
68 return instance;
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 244 sp<NuCachedSource2> instance = new NuCachedSource2( local
246 Mutex::Autolock autoLock(instance->mLock);
247 (new AMessage(kWhatFetchMore, instance->mReflector))->post();
248 return instance;
  /art/runtime/jdwp/
jdwp_handler.cc 542 * Return the instance of java.lang.ClassLoader that loaded the specified
841 * Invoke an instance method. The invocation must occur in the specified
1325 ObjectId instance = request->ReadObjectId(); local
    [all...]
  /art/test/107-int-math2/src/
Main.java 99 Main instance = new Main(); local
100 Main base = instance;
101 int val1 = instance.tryThing();
    [all...]
  /bionic/libc/kernel/uapi/linux/
tipc.h 29 __u32 instance; member in struct:tipc_service_addr
118 __u32 instance; member in struct:tipc_group_req
  /external/adhd/cras/src/server/
cras_dsp_pipeline.c 26 * struct plugin struct instance
46 /* This represents an audio port on an instance. */
49 struct plugin *plugin; /* the plugin corresponds to the instance */
54 /* This represents a control port on an instance. */
57 struct plugin *plugin; /* the plugin corresponds to the instance */
65 /* An instance is a dynamic representation of a plugin. We only create
66 * an instance when a plugin is needed (data actually flows through it
67 * and it is not disabled). An instance also contains a pointer to a
69 struct instance { struct
70 /* The plugin this instance corresponds to *
151 struct instance *instance; local
233 struct instance *instance; local
253 struct instance *instance; local
286 struct instance *instance; local
506 struct instance *instance; local
599 struct instance *instance; local
617 struct instance *instance; local
641 struct instance *instance; local
718 struct instance *instance; local
794 struct instance *instance; local
883 struct instance *instance; local
951 struct instance *instance; local
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
LogFactoryImpl.java 43 * <li>If <em>Log4J</em> is available, return an instance of
45 * <li>If <em>JDK 1.4 or later</em> is available, return an instance of
47 * <li>Otherwise, return an instance of
53 * parameter, this method will be called on each newly created instance
55 * attributes available to the Log instance, if it so desires.</p>
99 logDiagnostic("Instance created.");
186 // ----------------------------------------------------- Instance Variables
308 * instance cannot be returned
318 * <p>Construct (if necessary) and return a <code>Log</code> instance,
323 * instance you are returned may or may not be local to the curren
336 Log instance = (Log) instances.get(name); local
603 Log instance = null; local
    [all...]
  /external/autotest/scheduler/
drone_manager.py 358 @param pidfile_id: PidfileId instance.
656 Returns a drone instance (see drones.py).
974 def instance(): function
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
RegexLogger.java 37 * Instance
39 private static RegexLoggerInterface instance = null; field in class:RegexLogger
42 if (instance == null) {
44 instance = new RegexLoggerImpl();
46 instance = new NullRegexLogger();
49 return instance;
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiDeviceInitializationTests.cpp 191 log << TestLog::Message << "Creating instance with appInfo: " << appInfo << TestLog::EndMessage;
195 const Unique<VkInstance> instance(createInstance(platformInterface, &instanceCreateInfo));
252 << ", api version used to create instance: " << invalidApiVersions[apiVersionNdx]
256 VkInstance instance = (VkInstance)0; local
257 const VkResult result = platformInterface.createInstance(&instanceCreateInfo, DE_NULL/*pAllocator*/, &instance);
258 const bool gotInstance = !!instance;
260 if (instance)
262 const InstanceDriver instanceIface(platformInterface, instance);
263 instanceIface.destroyInstance(instance, DE_NULL/*pAllocator*/);
271 log << TestLog::Message << "Pass, instance creation with invalid apiVersion is rejected" << TestLog::EndMessage
367 VkInstance instance = (VkInstance)0; local
865 const VkInstance instance = context.getInstance(); local
937 const VkInstance instance = context.getInstance(); local
1197 VkInstance instance = DE_NULL; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesImageMemoryAliasing.cpp 166 const InstanceInterface& instance = m_context.getInstanceInterface(); local
190 if (!isImageSizeSupported(instance, physicalDevice, m_imageType, m_imageSize))
194 if (!getPhysicalDeviceFeatures(instance, physicalDevice).sparseResidencyAliased)
198 if (!checkSparseSupportForImageType(instance, physicalDevice, m_imageType))
236 instance.getPhysicalDeviceImageFormatProperties(physicalDevice,
248 if (!checkSparseSupportForImageFormat(instance, physicalDevice, imageSparseInfo))
270 if (imageMemoryRequirements.size > getPhysicalDeviceProperties(instance, getPhysicalDevice(secondDeviceID)).limits.sparseAddressSpaceSize)
292 const deUint32 memoryType = findMatchingMemoryType(instance, getPhysicalDevice(secondDeviceID), imageMemoryRequirements, MemoryRequirement::Any);
300 const deUint32 heapIndex = getHeapIndexForMemoryType(instance, getPhysicalDevice(secondDeviceID), memoryType);
    [all...]
vktSparseResourcesImageSparseResidency.cpp 198 const InstanceInterface& instance = m_context.getInstanceInterface(); local
225 const VkPhysicalDeviceProperties physicalDeviceProperties = getPhysicalDeviceProperties(instance, physicalDevice);
228 if (!isImageSizeSupported(instance, physicalDevice, m_imageType, m_imageSize))
232 if (!checkSparseSupportForImageType(instance, physicalDevice, m_imageType))
258 if (!checkSparseSupportForImageFormat(instance, physicalDevice, imageCreateInfo))
297 const deUint32 memoryType = findMatchingMemoryType(instance, getPhysicalDevice(secondDeviceID), imageMemoryRequirements, MemoryRequirement::Any);
305 const deUint32 heapIndex = getHeapIndexForMemoryType(instance, getPhysicalDevice(secondDeviceID), memoryType);
    [all...]
vktSparseResourcesShaderIntrinsicsSampled.cpp 513 const InstanceInterface& instance = m_context.getInstanceInterface(); local
516 const VkPhysicalDeviceProperties deviceProperties = getPhysicalDeviceProperties(instance, physicalDevice);
526 if (!checkImageFormatFeatureSupport(instance, physicalDevice, imageSparseInfo.format, VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT))
530 if (!checkImageFormatFeatureSupport(instance, physicalDevice, imageSparseInfo.format, VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT))
534 if (!checkImageFormatFeatureSupport(instance, physicalDevice, mapTextureFormat(m_residencyFormat), VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT))
695 requireFeatures(instance, physicalDevice, FEATURE_GEOMETRY_SHADER);
    [all...]
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
Code.java 134 * <li>{@link #invokeDirect invokeDirect()} is used for private instance
153 * #sput sput()}. For instance values you'll need to specify the declaring
154 * instance; use {@link #getThis getThis()} in an instance method to use {@code
155 * this}. Read instance values using {@link #iget iget()} and write them with
274 * registers. Instance methods are passed a this reference as their
361 * {@code Code} instance.
587 * Copies the value in instance field {@code fieldId} of {@code instance} to
590 public <D, V> void iget(FieldId<D, ? extends V> fieldId, Local<V> target, Local<D> instance) {
660 invoke(Rops.opInvokeVirtual(method.prototype(true)), method, target, instance, args); local
674 invoke(Rops.opInvokeDirect(method.prototype(true)), method, target, instance, args); local
686 invoke(Rops.opInvokeSuper(method.prototype(true)), method, target, instance, args); local
699 invoke(Rops.opInvokeInterface(method.prototype(true)), method, target, instance, args); local
    [all...]
  /external/elfutils/src/
ar.c 53 int argc, long int instance);
55 long int instance);
79 { NULL, 'N', NULL, 0, N_("Use instance [COUNT] of name."), 0 },
196 long int instance = -1; local
214 if (((instance = strtol (argv[remaining], &endp, 10)) == LONG_MAX
216 || instance <= 0
256 status = do_oper_extract (operation, arfname, argv, argc, instance);
260 status = do_oper_delete (arfname, argv, argc, instance);
442 long int instance)
522 if (res != NULL && (instance < 0 || instance-- == 0
    [all...]
  /external/freetype/src/sfnt/
sfdriver.c 266 /* instance's PostScript name. */
847 /* long); this is also sufficient for a single instance */
874 FT_Long instance = ( ( face->root.face_index & 0x7FFF0000L ) >> 16 ) - 1; local
875 FT_UInt psid = mm_var->namedstyle[instance].psid;
895 FT_UInt strid = mm_var->namedstyle[instance].strid;
906 " can't construct named instance PS name;\n"
908 " trying to construct normal instance PS name\n" ));
    [all...]
  /external/googletest/googletest/test/
googletest-param-test-test.cc 555 static TestGenerationEnvironment* Instance() {
556 static TestGenerationEnvironment* instance = new TestGenerationEnvironment; local
557 return instance;
619 Environment::Instance()->FixtureConstructorExecuted();
623 Environment::Instance()->SetUpExecuted();
627 Environment::Instance()->TearDownExecuted();
674 Environment::Instance()->TestBodyExecuted();
    [all...]
  /external/guava/guava-testlib/test/com/google/common/testing/
ArbitraryInstancesTest.java 293 assertSame(SomeAbstractClass.INSTANCE, ArbitraryInstances.get(SomeAbstractClass.class));
294 assertSame(WithPrivateConstructor.INSTANCE,
297 assertSame(WithExceptionalConstructor.INSTANCE,
354 assertSame(WithPublicConstant.INSTANCE,
400 Object instance = ArbitraryInstances.get(mutableClass); local
401 assertNotNull("Expected to return non-null for: " + mutableClass, instance);
402 assertNotSame("Expected to return fresh instance for: " + mutableClass,
403 instance, ArbitraryInstances.get(mutableClass));
416 public static final SomeAbstractClass INSTANCE = new SomeAbstractClass() {};
425 public static final WithPrivateConstructor INSTANCE = new WithPrivateConstructor()
485 public static NonFinalFieldIgnored instance = field in class:ArbitraryInstancesTest.NonFinalFieldIgnored
500 public final NonStaticFieldIgnored instance = field in class:ArbitraryInstancesTest.NonStaticFieldIgnored
    [all...]
  /external/guice/core/test/com/google/inject/
BinderTestSuite.java 477 Injectable instance = injector.getInstance(injectsKey); local
478 assertEquals(value, instance.value);
814 T instance;
818 if (instance == null) {
819 instance = unscoped.get();
820 return instance;
822 T result = instance;
823 instance = null;
KeyTest.java 159 Foo instance = getClass().getDeclaredField("baz").getAnnotation(Foo.class); local
160 Key<String> keyWithInstance = Key.get(String.class, instance);

Completed in 2462 milliseconds

<<11121314151617181920>>