HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 526 - 550 of 2454) sorted by null

<<21222324252627282930>>

  /libcore/ojluni/src/main/java/java/security/
Signature.java 46 import sun.security.jca.GetInstance.Instance;
375 Instance instance = local
377 return getInstance(instance, algorithm);
386 private static Signature getInstance(Instance instance, String algorithm) {
388 if (instance.impl instanceof Signature) {
389 sig = (Signature)instance.impl;
392 SignatureSpi spi = (SignatureSpi)instance.impl;
395 sig.provider = instance.provider
426 Object instance = s.newInstance(null); local
499 Instance instance = GetInstance.getInstance local
542 Instance instance = GetInstance.getInstance local
554 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/Contacts/src/com/android/contacts/compat/
CompatUtils.java 245 * @param instance The instance of the class to invoke the method on.
249 * @return The result of the invocation or {@code null} if instance or methodName are empty, or
253 public static Object invokeMethod(@Nullable Object instance, @Nullable String methodName,
255 if (instance == null || TextUtils.isEmpty(methodName)) {
259 String className = instance.getClass().getName();
262 .invoke(instance, parameters);
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmUtils.java 51 public static String getAlarmText(Context context, AlarmInstance instance,
53 String alarmTimeStr = getFormattedTime(context, instance.getAlarmTime());
54 return (instance.mLabel.isEmpty() || !includeLabel)
56 : alarmTimeStr + " - " + instance.mLabel;
  /packages/apps/Dialer/java/com/android/dialer/oem/
MotorolaHiddenMenuKeySequence.java 33 private static MotorolaHiddenMenuKeySequence instance = null; field in class:MotorolaHiddenMenuKeySequence
57 * Public interface to return the Singleton instance
60 * @return the MotorolaHiddenMenuKeySequence singleton instance
63 if (null == instance) {
64 instance = new MotorolaHiddenMenuKeySequence(context);
66 return instance;
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraButtonIntentReceiver.java 38 CameraHolder holder = CameraHolder.instance();
  /prebuilts/tools/common/m2/repository/com/squareup/leakcanary/leakcanary-analyzer/1.4/
leakcanary-analyzer-1.4.jar 
  /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 54 // Returns a pointer to the IBluetoothGattClientCallback instance
60 // Returns a pointer to the GattClient instance associated with |client_id|.
67 bluetooth::BluetoothInstance* instance) override;
  /external/autotest/client/common_lib/cros/
tpm_utils.py 76 'need to have the firmware clear the TPM, for instance '
85 'have the firmware clear the TPM, for instance by toggling '
  /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/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/javanano/src/device/main/java/com/google/protobuf/nano/android/
ParcelableMessageNanoCreator.java 66 Object instance = clazz.getConstructor().newInstance(); local
67 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/swiftshader/src/D3D9/
Direct3D9.hpp 30 Direct3D9(int version, const HINSTANCE instance);
58 const HINSTANCE instance; member in class:D3D9::Direct3D9
  /external/vulkan-validation-layers/layers/
object_tracker.h 88 VkInstance instance; member in struct:object_tracker::layer_data
117 : instance(nullptr), physical_device(nullptr), num_objects{}, num_total_objects(0), report_data(nullptr),
135 "Instance", // VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT
  /external/vulkan-validation-layers/libs/vkjson/
vkjson.h 63 std::string VkJsonInstanceToJson(const VkJsonInstance& instance);
65 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;
  /system/bt/osi/include/
metrics.h 112 static BluetoothMetricsLogger* instance = new BluetoothMetricsLogger(); local
113 return instance;
  /system/nvram/core/tests/
gtest_stubs.h 64 // Test-specific subclass that holds an instance of the test.
88 static TestRegistry* instance() { return &g_instance; } function in class:testing::detail::TestRegistry
103 TestRegistry::instance()->Register(this);
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
InstrumentedAccessibilityService.java 138 final T instance = getInstanceForClass(clazz, TIMEOUT_SERVICE_ENABLE); local
139 if (instance == null) {
147 return instance;
160 final T instance = (T) ref.get(); local
161 if (instance == null) {
164 return instance;
  /external/netperf/src/
netcpu_pstatnew.c 192 print_cpu_time_counters(char *name, int instance, cpu_time_counters_t *counters)
200 name,instance,
201 counters[instance].idle,
202 counters[instance].user,
203 counters[instance].kernel,
204 counters[instance].interrupt);
  /external/testng/src/main/java/org/testng/internal/
TestMethodWorker.java 35 // and associated to a different instance
120 protected void invokeTestMethods(ITestNGMethod tm, Object instance,
133 instance,
175 for(Object instance: mi.getInstances()) {
176 if (! instances.contains(instance)) {
177 instances.add(instance);
183 instance);
287 * instance
  /frameworks/base/core/java/android/text/
AutoText.java 81 * Returns the instance of AutoText. If the locale has changed, it will create a new
82 * instance of AutoText for the locale.
84 * @return the single instance of AutoText
89 AutoText instance; local
92 instance = sInstance;
94 if (!locale.equals(instance.mLocale)) {
95 instance = new AutoText(res);
96 sInstance = instance;
100 return instance;

Completed in 624 milliseconds

<<21222324252627282930>>