/external/libgdx/extensions/gdx-bullet/jni/swig/collision/ |
btManifoldPoint.i | 12 /** Obtains a temporary instance, used by native methods that return a btManifoldPoint instance */ 21 /** Obtains a temporary instance, used for callback methods with one or more btManifoldPoint arguments */ 23 btManifoldPoint instance = argumentInstances[argumentIndex = (argumentIndex + 1) & 3]; 24 instance.reset(swigCPtr, owner); 25 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 | 82 * Returns the instance of AutoText. If the locale has changed, it will create a new 83 * instance of AutoText for the locale. 85 * @return the single instance of AutoText 90 AutoText instance; local 93 instance = sInstance; 95 if (!locale.equals(instance.mLocale)) { 96 instance = new AutoText(res); 97 sInstance = instance; 101 return instance;
|
/hardware/ti/omap4-aah/libtiutils/ |
DebugUtils.h | 59 static Debug * instance(); 149 Ti::Debug * const debug = Ti::Debug::instance(); \ 249 inline Debug * Debug::instance() function in class:Ti::Debug 352 Debug * const debug = Debug::instance(); 364 Debug * const debug = Debug::instance(); 378 Debug * const debug = Debug::instance();
|
/libcore/ojluni/src/main/java/java/security/ |
KeyFactory.java | 36 import sun.security.jca.GetInstance.Instance; 234 Instance instance = GetInstance.getInstance("KeyFactory", local 236 return new KeyFactory((KeyFactorySpi)instance.impl, 237 instance.provider, algorithm); 271 Instance instance = GetInstance.getInstance("KeyFactory", local 273 return new KeyFactory((KeyFactorySpi)instance.impl, 274 instance.provider, algorithm); 418 * key material should be returned in an instance of th [all...] |
/libcore/ojluni/src/main/java/javax/crypto/ |
KeyAgreement.java | 37 import sun.security.jca.GetInstance.Instance; 227 Instance instance = JceSecurity.getInstance local 229 return new KeyAgreement((KeyAgreementSpi)instance.impl, 230 instance.provider, algorithm); 267 Instance instance = JceSecurity.getInstance local 269 return new KeyAgreement((KeyAgreementSpi)instance.impl, 270 instance.provider, algorithm); 320 ("Could not construct KeyAgreementSpi instance"); [all...] |
KeyGenerator.java | 35 import sun.security.jca.GetInstance.Instance; 305 Instance instance = JceSecurity.getInstance("KeyGenerator", local 307 return new KeyGenerator((KeyGeneratorSpi)instance.impl, 308 instance.provider, algorithm); 343 Instance instance = JceSecurity.getInstance("KeyGenerator", local 345 return new KeyGenerator((KeyGeneratorSpi)instance.impl, 346 instance.provider, algorithm);
|
Mac.java | 39 import sun.security.jca.GetInstance.Instance; 269 Instance instance = JceSecurity.getInstance local 271 return new Mac((MacSpi)instance.impl, instance.provider, algorithm); 304 Instance instance = JceSecurity.getInstance local 306 return new Mac((MacSpi)instance.impl, instance.provider, algorithm); 355 ("Could not construct MacSpi instance"); [all...] |
/libcore/ojluni/src/main/java/sun/security/jca/ |
GetInstance.java | 47 * Static inner class representing a newly created instance. 49 public static final class Instance { 53 private Instance(Provider provider, Object impl) { 152 public static Instance getInstance(String type, Class clazz, 184 public static Instance getInstance(String type, Class clazz, 203 public static Instance getInstance(String type, Class clazz, 209 public static Instance getInstance(String type, Class clazz, 215 public static Instance getInstance(String type, Class clazz, 221 public static Instance getInstance(String type, Class clazz, 234 public static Instance getInstance(Service s, Class clazz 236 Object instance = s.newInstance(null); local 243 Object instance = s.newInstance(param); local [all...] |
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
DelegateClassAdapterTest.java | 72 // create an instance of the class that will be modified 364 * instance methods via reflection. 418 public int callGet(Object instance, int a, long b) throws Exception { 419 Method m = instance.getClass().getMethod("get", 422 Object result = m.invoke(instance, a, b); 430 public int callGet_Original(Object instance, int a, long b) throws Exception { 431 Method m = instance.getClass().getMethod("get_Original", 434 Object result = m.invoke(instance, a, b); 442 public <T> T callMethod(Object instance, String methodName, boolean makePublic) throws Exception { 443 Method m = instance.getClass().getDeclaredMethod(methodName, (Class<?>[])null) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/ |
test_connection.py | 87 instance = response[0] 88 self.assertEqual(instance.id, '2964d1bf71d8') 89 self.assertEqual(instance.instance_type, 'c1.medium') 90 self.assertEqual(instance.availability_zone, 'us-east-1c') 91 self.assertEqual(instance.duration, 94608000) 92 self.assertEqual(instance.fixed_price, '775.0') 93 self.assertEqual(instance.usage_price, '0.0') 94 self.assertEqual(instance.description, 'product description') 95 self.assertEqual(instance.instance_tenancy, 'default') 96 self.assertEqual(instance.currency_code, 'USD' [all...] |
/external/google-benchmark/src/ |
benchmark.cc | 257 struct Benchmark::Instance { 282 std::vector<Benchmark::Instance>* benchmarks); 324 static BenchmarkFamilies instance; local 325 return &instance; 338 std::vector<Benchmark::Instance>* benchmarks) { 368 Benchmark::Instance instance; local 369 instance.name = family->name_; 370 instance.benchmark = bench_family.get(); 371 instance.has_arg1 = family->arg_count_ >= 1 [all...] |
/external/vulkan-validation-layers/loader/ |
loader.h | 61 VK_LAYER_TYPE_GLOBAL_EXPLICIT = 0x3, // instance and device layer, bitwise 64 VK_LAYER_TYPE_GLOBAL_IMPLICIT = 0xc, // instance and device layer, bitwise 204 VkInstance instance; // instance object from the icd member in struct:loader_icd 273 /* per instance structure */ 293 VkInstance instance; // layers/ICD instance returned to trampoline member in struct:loader_instance 326 * Secondly, loader must be able to find the instance and icd in trampoline 365 static inline struct loader_instance *loader_instance(VkInstance instance) { 366 return (struct loader_instance *)instance; [all...] |
/frameworks/multidex/library/src/android/support/multidex/ |
MultiDex.java | 268 * @param instance an object to search the field into. 273 private static Field findField(Object instance, String name) throws NoSuchFieldException { 274 for (Class<?> clazz = instance.getClass(); clazz != null; clazz = clazz.getSuperclass()) { 289 throw new NoSuchFieldException("Field " + name + " not found in " + instance.getClass()); 295 * @param instance an object to search the method into. 301 private static Method findMethod(Object instance, String name, Class<?>... parameterTypes) 303 for (Class<?> clazz = instance.getClass(); clazz != null; clazz = clazz.getSuperclass()) { 319 Arrays.asList(parameterTypes) + " not found in " + instance.getClass()); 325 * @param instance the instance whose field is to be modified [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
StringPrep.java | 289 bdp=UBiDiProps.INSTANCE; 294 * Gets a StringPrep instance for the specified profile 296 * @param profile The profile passed to find the StringPrep instance. 303 StringPrep instance = null; local 305 // A StringPrep instance is immutable. We use a single instance 310 instance = ref.get(); 313 if (instance == null) { 317 instance = new StringPrep(bytes); 322 if (instance != null) [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
StringPrep.java | 305 bdp=UBiDiProps.INSTANCE; 310 * Gets a StringPrep instance for the specified profile 312 * @param profile The profile passed to find the StringPrep instance. 320 StringPrep instance = null; local 322 // A StringPrep instance is immutable. We use a single instance 327 instance = ref.get(); 330 if (instance == null) { 334 instance = new StringPrep(bytes); 339 if (instance != null) [all...] |
/external/libdrm/amdgpu/ |
amdgpu_gpu_info.c | 67 unsigned count, uint32_t instance, uint32_t flags, 78 request.read_mmr_reg.instance = instance; 173 unsigned instance = (i << AMDGPU_INFO_MMR_SE_INDEX_SHIFT) | local 177 r = amdgpu_read_mm_registers(dev, 0x263d, 1, instance, 0, 185 r = amdgpu_read_mm_registers(dev, 0xa0d4, 1, instance, 0, 190 r = amdgpu_read_mm_registers(dev, 0xa0d5, 1, instance, 0,
|
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
NinePatchTexture.java | 143 NinePatchInstance instance = mInstanceCache.get(key); local 145 if (instance == null) { 146 instance = new NinePatchInstance(this, w, h); 147 NinePatchInstance removed = mInstanceCache.put(key, instance); 153 return instance; 174 NinePatchInstance instance = mInstanceCache.valueAt(i); local 175 instance.recycle(canvas);
|
/external/valgrind/drd/tests/ |
thread_name_xml.stderr.exp | 32 thread_func instance 1 68 thread_func instance 2 104 thread_func instance 3 140 thread_func instance 4 176 thread_func instance 5 212 thread_func instance 6 248 thread_func instance 7 284 thread_func instance 8 320 thread_func instance 9 356 thread_func instance 1 [all...] |
/external/vulkan-validation-layers/layers/ |
device_limits.cpp | 61 // Track state of each instance 94 // that the layer have per-instance locks. We need to come back and 166 VK_LAYER_EXPORT VKAPI_ATTR void VKAPI_CALL vkDestroyInstance(VkInstance instance, const VkAllocationCallbacks *pAllocator) { 167 dispatch_key key = get_dispatch_key(instance); 170 pTable->DestroyInstance(instance, pAllocator); 183 // Release mutex when destroying last instance. 190 vkEnumeratePhysicalDevices(VkInstance instance, uint32_t *pPhysicalDeviceCount, VkPhysicalDevice *pPhysicalDevices) { 192 layer_data *my_data = get_my_data_ptr(get_dispatch_key(instance), layer_data_map); 194 // For this instance, flag when vkEnumeratePhysicalDevices goes to QUERY_COUNT and then QUERY_DETAILS 211 "supported by this instance is %u." [all...] |
vk_layer_table.cpp | 56 assert(it != tableInstanceMap.end() && "Not able to find instance dispatch entry"); 77 fprintf(stderr, "destroy instance dispatch_table: map: %p, key: %p, table: %p\n", &map, key, it->second); 79 fprintf(stderr, "destroy instance dispatch table: map: %p, key: %p, table: UNKNOWN\n", &map, key); 117 assert(it != map.end() && "Not able to find instance dispatch entry"); 142 * Instance -> PhysicalDevice 146 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa, instance_table_map &map) { 148 dispatch_key key = get_dispatch_key(instance); 155 fprintf(stderr, "New, Instance: map: %p, key: %p, table: %p\n", &map, key, pTable); 159 fprintf(stderr, "Instance: map: %p, key: %p, table: %p\n", &map, key, it->second); 164 layer_init_instance_dispatch_table(instance, pTable, gpa) [all...] |
/packages/apps/Messaging/src/com/android/messaging/ |
FactoryImpl.java | 67 // Cached instance for Pre-L_MR1 70 // Cached subId->instance for L_MR1 and beyond 208 PhoneUtils instance = sPhoneUtilsInstanceCacheLMR1.get(subId); local 209 if (instance == null) { 210 instance = new PhoneUtils.PhoneUtilsLMR1(subId); 211 sPhoneUtilsInstanceCacheLMR1.putIfAbsent(subId, instance); 213 return instance;
|
/frameworks/native/vulkan/nulldrv/ |
null_driver.cpp | 99 VkInstance_T* instance; member in struct:VkDevice_T 179 Handle AllocHandle(VkInstance instance, HandleType::Enum type) { 181 AllocHandle(type, &instance->next_callback_handle)); 298 VkInstance_T* instance = local 302 if (!instance) 305 instance->dispatch.magic = HWVULKAN_DISPATCH_MAGIC; 306 instance->allocator = *allocator; 307 instance->physical_device.dispatch.magic = HWVULKAN_DISPATCH_MAGIC; 308 instance->next_callback_handle = 0; 313 ALOGV("instance extension '%s' requested" 614 VkInstance_T* instance = GetInstanceFromPhysicalDevice(physical_device); local [all...] |
/frameworks/native/vulkan/libvulkan/ |
driver.cpp | 162 ALOGE("failed to get HAL instance extension count"); 169 ALOGE("failed to allocate HAL instance extension array"); 175 ALOGE("failed to enumerate HAL instance extensions"); 395 ALOGW("Ignored invalid instance extension %s", name); 534 PFN_vkVoidFunction GetInstanceProcAddr(VkInstance instance, const char* pName) { 537 return Hal::Device().GetInstanceProcAddr(instance, pName); 539 if (!instance) { 552 "internal vkGetInstanceProcAddr called for %s without an instance", 561 case ProcHook::INSTANCE: 562 proc = (GetData(instance).hook_extensions[hook->extension] 706 VkInstance instance; local [all...] |