HomeSort by relevance Sort by last modified time
    Searched full:createinstance (Results 1 - 25 of 939) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/testng/src/test/java/test/dependent/
SampleDependentConfigurationMethods.java 11 public void createInstance() {
15 @BeforeMethod(dependsOnMethods = { "createInstance"})
17 assert m_create : "createInstance() was never called";
23 assert m_create : "createInstance() was never called";
  /external/deqp/external/vulkancts/framework/vulkan/
vkPlatformFunctionPointers.inl 4 CreateInstanceFunc createInstance;
vkInitPlatformFunctionPointers.inl 4 m_vk.createInstance = (CreateInstanceFunc) GET_PROC_ADDR("vkCreateInstance");
vkPlatformDriverImpl.inl 5 VkResult PlatformDriver::createInstance (const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) const
7 return m_vk.createInstance(pCreateInfo, pAllocator, pInstance);
vkConcretePlatformInterface.inl 4 virtual VkResult createInstance (const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) const;
vkVirtualPlatformInterface.inl 4 virtual VkResult createInstance (const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) const = 0;
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowCookieSyncManagerTest.java 16 assertThat(CookieSyncManager.createInstance(new Activity())).isNotNull();
21 CookieSyncManager.createInstance(new Activity());
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowCookieSyncManager.java 15 public static synchronized CookieSyncManager createInstance(Context ctx) {
25 throw new IllegalStateException("createInstance must be called first");
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CacheBase.java 15 * implements the createInstance() method, and call get() with the key and the data.
16 * The get() call will use the data only if it needs to call createInstance(),
28 * Retrieves an instance from the cache. Calls createInstance(key, data) if the cache
32 * @param data Data for createInstance() if the instance is not already cached
42 protected abstract V createInstance(K key, D data);
SoftCache.java 17 * To use, instantiate a subclass which implements the createInstance() method,
19 * only if it needs to call createInstance(), otherwise the data is ignored.
24 * the getInstance() method will call createInstance() again and reset the CacheValue.
27 * <p>A value can be null if createInstance() returns null.
67 value = createInstance(key, data);
71 V value = createInstance(key, data);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CacheBase.java 14 * implements the createInstance() method, and call get() with the key and the data.
15 * The get() call will use the data only if it needs to call createInstance(),
26 * Retrieves an instance from the cache. Calls createInstance(key, data) if the cache
30 * @param data Data for createInstance() if the instance is not already cached
40 protected abstract V createInstance(K key, D data);
SoftCache.java 16 * To use, instantiate a subclass which implements the createInstance() method,
18 * only if it needs to call createInstance(), otherwise the data is ignored.
23 * the getInstance() method will call createInstance() again and reset the CacheValue.
26 * <p>A value can be null if createInstance() returns null.
65 value = createInstance(key, data);
69 V value = createInstance(key, data);
  /art/test/670-bitstring-type-check/
build 80 Object o = createInstance("Level" + i + "Class0");
124 assertTrue(createInstance("Level1Class8192") instanceof Level1Class8192);
125 assertFalse(createInstance("Level1Class8192") instanceof Level1Class0);
126 assertTrue(createInstance("Level2Class1024") instanceof Level2Class1024);
127 assertTrue(createInstance("Level2Class1024") instanceof Level1Class0);
128 assertFalse(createInstance("Level2Class1024") instanceof Level2Class0);
133 Object o = createInstance("Level" + i + "Class0");
185 Level1Class8192 l1c8192 = (Level1Class8192) createInstance("Level1Class8192");
187 Level1Class0 l1c0 = (Level1Class0) createInstance("Level1Class8192");
190 Level2Class1024 l2c1024 = (Level2Class1024) createInstance("Level2Class1024")
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/internal/
AppSingletonizer.java 22 instance = createInstance(applicationContext);
32 protected T createInstance(Application applicationContext) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCookieSyncManager.java 21 public static synchronized CookieSyncManager createInstance(Context ctx) {
31 throw new IllegalStateException("createInstance must be called first");
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/util/
AppSingletonizer.java 22 instance = createInstance(applicationContext);
32 protected T createInstance(Application applicationContext) {
  /external/icu/icu4c/source/samples/translit/answers/
main_2.cpp 32 cal = Calendar::createInstance(greece, status);
33 check(status, "Calendar::createInstance");
44 greek_latin = Transliterator::createInstance("Greek-Latin");
46 printf("ERROR: Transliterator::createInstance() failed\n");
main_3.cpp 44 cal = Calendar::createInstance(greece, status);
45 check(status, "Calendar::createInstance");
56 greek_latin = Transliterator::createInstance("Greek-Latin");
58 printf("ERROR: Transliterator::createInstance() failed\n");
main_4.cpp 45 cal = Calendar::createInstance(greece, status);
46 check(status, "Calendar::createInstance");
57 greek_latin = Transliterator::createInstance("Greek-Latin");
59 printf("ERROR: Transliterator::createInstance() failed\n");
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/
run_loader_tests.sh 7 # Check for layer insertion via CreateInstance.
9 GTEST_FILTER=CreateInstance.LayerPresent \
17 echo "CreateInstance insertion test FAILED - parameter-validation not detected in instance layers" >&2
20 echo "CreateInstance Insertion test PASSED"
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
CookieSyncManagerTest.java 22 assertThat( CookieSyncManager.createInstance( new Activity() ) , notNullValue() );
27 CookieSyncManager.createInstance( new Activity() );
33 CookieSyncManager.createInstance( new Activity() );
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/model/
CustomizationParamsTest.java 68 CustomizationParams instance = createInstance(params);
81 CustomizationParams instance = createInstance(params);
94 CustomizationParams instance = createInstance(params);
107 CustomizationParams instance = createInstance(params);
119 CustomizationParams instance = createInstance(params);
131 CustomizationParams instance = createInstance(params);
143 CustomizationParams instance = createInstance(params);
155 CustomizationParams instance = createInstance(params);
161 private CustomizationParams createInstance(ProvisioningParams params) {
162 return CustomizationParams.createInstance(params, mContext, mUtils)
    [all...]
  /external/perfetto/src/tracing/ipc/service/
service_ipc_host_impl.cc 33 std::unique_ptr<ServiceIPCHost> ServiceIPCHost::CreateInstance(
49 ipc::Host::CreateInstance(producer_socket_name, task_runner_);
51 ipc::Host::CreateInstance(consumer_socket_name, task_runner_);
61 ipc::Host::CreateInstance(std::move(producer_socket_fd), task_runner_);
63 ipc::Host::CreateInstance(std::move(consumer_socket_fd), task_runner_);
71 svc_ = Service::CreateInstance(std::move(shm_factory), task_runner_);
  /external/icu/icu4c/source/samples/translit/
main.cpp 46 cal = Calendar::createInstance(greece, status);
47 check(status, "Calendar::createInstance");
58 greek_latin = Transliterator::createInstance("Greek-Latin", UTRANS_FORWARD, status);
60 printf("ERROR: Transliterator::createInstance() failed\n");
  /external/icu/icu4c/source/i18n/
tmutamt.cpp 22 : Measure(number, TimeUnit::createInstance(timeUnitField, status), status) {
30 TimeUnit::createInstance(timeUnitField, status),

Completed in 743 milliseconds

1 2 3 4 5 6 7 8 91011>>