/external/testng/src/main/java/org/testng/internal/ |
TestMethodWithDataProviderMethodWorker.java | 38 Object[] parameterValues, Object instance, XmlSuite suite, 48 m_instance = instance; 92 for (Object instance : failure.instances) { 97 instance, m_testMethod, m_xmlSuite, m_testClass, m_beforeMethods,
|
/external/v8/test/mjsunit/es6/ |
proxies-construct.js | 15 var instance = new pair.proxy(); 41 var instance = new proxy(); 43 assertEquals('value1', instance.property1); 44 assertSame(Target.prototype, Reflect.getPrototypeOf(instance)); 51 assertSame(Target.prototype, Reflect.getPrototypeOf(instance)); 82 var instance = new proxy('a', 'b'); 86 assertEquals('a', instance.arg1); 87 assertEquals('b', instance.arg2);
|
/external/vulkan-validation-layers/demos/smoke/ |
ShellAndroid.h | 43 VkSurfaceKHR create_surface(VkInstance instance);
|
ShellWin32.h | 43 VkSurfaceKHR create_surface(VkInstance instance);
|
/external/vulkan-validation-layers/tests/ |
vktestframeworkandroid.cpp | 34 VkFormat VkTestFramework::GetFormat(VkInstance instance, vk_testing::Device *device)
|
/hardware/intel/common/wrs_omxil_core/base/inc/ |
cmodule.h | 74 OMX_ERRORTYPE InstantiateComponent(ComponentBase **instance);
|
/hardware/intel/common/wrs_omxil_core/base/src/ |
cmodule.cpp | 181 OMX_ERRORTYPE CModule::InstantiateComponent(ComponentBase **instance) 186 if (!instance) 188 *instance = NULL; 207 *instance = cbase;
|
/libcore/ojluni/src/main/java/java/security/ |
Signature.java | 48 import sun.security.jca.GetInstance.Instance; 332 Instance instance = local 334 return getInstance(instance, algorithm); 343 private static Signature getInstance(Instance instance, String algorithm) { 345 if (instance.impl instanceof Signature) { 346 sig = (Signature)instance.impl; 348 SignatureSpi spi = (SignatureSpi)instance.impl; 351 sig.provider = instance.provider 382 Object instance = s.newInstance(null); local 451 Instance instance = GetInstance.getInstance local 494 Instance instance = GetInstance.getInstance local 506 Instance instance = GetInstance.getInstance(s, SignatureSpi.class); local [all...] |
/packages/apps/Camera2/src/com/android/camera/debug/ |
Loggers.java | 33 return NoOpLoggerFactory.instance(); 41 return TagLoggerFactory.instance(); 61 private static final NoOpLoggerFactory INSTANCE = new NoOpLoggerFactory(); 64 public static NoOpLoggerFactory instance() { 65 return Singleton.INSTANCE; 86 private static final TagLoggerFactory INSTANCE = new TagLoggerFactory(); 89 public static TagLoggerFactory instance() { 90 return Singleton.INSTANCE;
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/compat/ |
CompatUtils.java | 233 * @param instance The instance of the class to invoke the method on. 237 * @return The result of the invocation or {@code null} if instance or methodName are empty, or 241 public static Object invokeMethod(@Nullable Object instance, @Nullable String methodName, 243 if (instance == null || TextUtils.isEmpty(methodName)) { 247 String className = instance.getClass().getName(); 250 .invoke(instance, parameters);
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
CameraButtonIntentReceiver.java | 38 CameraHolder holder = CameraHolder.instance();
|
/prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf/0.13.2/ |
grpc-protobuf-0.13.2.jar | |
/system/bt/service/ipc/binder/ |
bluetooth_gatt_client_binder_server.h | 47 // Returns a pointer to the IBluetoothGattClientCallback instance 53 // Returns a pointer to the GattClient instance associated with |client_id|. 61 bluetooth::BluetoothInstance* instance) override;
|
/art/runtime/interpreter/mterp/mips/ |
op_instance_of.S | 2 * Check to see if an object reference is an instance of a class. 7 # instance-of vA, vB, class /* CCCC */
|
/art/test/080-oom-throw/src/ |
Main.java | 51 static void confuseCompilerOptimization(InstanceMemEater instance) { 52 hook = instance;
|
/cts/libs/migration/src/com/android/cts/migration/ |
MigrationHelper.java | 28 Object instance = cons.newInstance(mBuild); local 30 File dir = (File) method.invoke(instance);
|
/external/guava/guava/src/com/google/common/hash/ |
AbstractByteHasher.java | 118 public <T> Hasher putObject(T instance, Funnel<? super T> funnel) { 119 funnel.funnel(instance, this);
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/ |
ExceptionsTest.java | 29 final Object instance = targetClass.newInstance(); local 30 ((Runnable) instance).run();
|
/external/opencv3/modules/videoio/src/ |
cap_winrt_bridge.cpp | 55 static VideoioBridge instance; local 56 return instance;
|
/external/parameter-framework/upstream/test/functional-tests/include/ |
FailureWrapper.hpp | 126 static Ret wrapCall(I &instance, M method, Args &&... args) 129 auto res = (instance.*method)(std::forward<Args>(args)..., error);
|
/external/protobuf/java/src/device/main/java/com/google/protobuf/nano/android/ |
ParcelableMessageNanoCreator.java | 62 Object instance = clazz.newInstance(); local 63 proto = (T) instance;
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowLayoutInflater.java | 64 @Override protected void set(ShadowApplication shadowApplication, LayoutInflater instance) { 65 shadowApplication.layoutInflater = instance;
|
/external/vulkan-validation-layers/libs/vkjson/ |
vkjson.h | 70 std::string VkJsonInstanceToJson(const VkJsonInstance& instance); 72 VkJsonInstance* instance,
|
/packages/apps/Camera2/src/com/android/camera/processing/ |
ProcessingServiceManager.java | 40 private static final ProcessingServiceManager INSTANCE = new ProcessingServiceManager( 41 AndroidContext.instance().get()); 44 public static ProcessingServiceManager instance() { method in class:ProcessingServiceManager 45 return Singleton.INSTANCE;
|
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/ |
InstrumentedAccessibilityService.java | 121 final T instance = getInstanceForClass(clazz, TIMEOUT_SERVICE_ENABLE); local 122 if (instance == null) { 130 return instance; 143 final T instance = (T) ref.get(); local 144 if (instance == null) { 147 return instance;
|