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

<<11121314151617181920>>

  /external/vulkan-validation-layers/tests/layers/
device_profile_api.cpp 42 VkInstance instance; member in struct:device_profile_api::layer_data
62 layer_data *instance_data = GetLayerDataPtr(phy_dev_data->instance, device_profile_api_dev_data_map);
78 layer_data *instance_data = GetLayerDataPtr(phy_dev_data->instance, device_profile_api_dev_data_map);
107 instance_data->instance = *pInstance;
121 phy_dev_data->instance = *pInstance;
136 layer_data *instance_data = GetLayerDataPtr(phy_dev_data->instance, device_profile_api_dev_data_map);
178 VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL GetPhysicalDeviceProcAddr(VkInstance instance, const char *name) {
184 layer_data *instance_data = GetLayerDataPtr(instance, device_profile_api_dev_data_map);
187 return table.GetPhysicalDeviceProcAddr(instance, name);
190 VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL GetInstanceProcAddr(VkInstance instance, const char *name)
    [all...]
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
WaltUsbConnection.java 46 private static WaltUsbConnection instance; field in class:WaltUsbConnection
54 if (instance == null) {
55 instance = new WaltUsbConnection(context.getApplicationContext());
57 return instance;
  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
NetworkMonitor.java 55 private static NetworkMonitor instance; field in class:NetworkMonitor
84 instance = new NetworkMonitor(context);
86 return instance;
90 return instance != null;
94 * Returns the singleton instance.
97 return instance;
221 instance = new NetworkMonitor(context);
  /frameworks/av/camera/ndk/impl/
ACameraManager.cpp 43 CameraManagerGlobal* instance = sInstance; local
44 if (instance == nullptr) {
45 instance = new CameraManagerGlobal();
46 sInstance = instance;
48 return *instance;
  /frameworks/av/media/codec2/tests/
C2SampleComponent_test.cpp 167 const MyComponentInstance *instance; member in class:MyComponentInstance::MyParamReflector
170 MyParamReflector(const MyComponentInstance *i) : instance(i) { }
174 case decltype(instance->mDomainInfo)::CORE_INDEX:
177 instance->mDomainInfo.type(),
178 decltype(instance->mDomainInfo)::FieldList(),
  /frameworks/av/media/libmedia/
IMediaExtractor.cpp 269 ExtractorInstance &instance = sExtractors.editItemAt(i); local
270 sp<IMediaExtractor> extractor = instance.extractor.promote();
272 if (instance.tracks.size() > 5) {
273 instance.tracks.resize(5);
274 instance.trackDescriptions.resize(5);
276 instance.tracks.push_front(source);
278 instance.trackDescriptions.push_front(source->getFormat()->toString());
280 instance.trackDescriptions.push_front(String8::empty());
321 const ExtractorInstance &instance = sExtractors.itemAt(i); local
323 out.append(instance.toString())
    [all...]
  /external/guice/extensions/dagger-adapter/lib/
dagger-2.4.jar 
  /art/test/476-checker-ctor-fence-redun-elim/src/
Main.java 25 // The new-instance itself always has 1 freeze for the happens-before on the object header
513 // A store of 'b' into another instance will publish 'b'.
720 // Make a new instance of 'klass'.
814 Test instance = klass.cast(klass.getDeclaredConstructor().newInstance()); local
817 instance.getClass().getDeclaredMethod("exercise").invoke(instance);
818 instance.getClass().getDeclaredMethod("check").invoke(instance);
  /art/test/708-jit-cache-churn/src/
JitCacheChurnTest.java 151 int instance; field in class:JitCacheChurnTest.TaskFive
153 instance = instances.getAndIncrement();
156 return instance;
162 return instance + 1;
168 return 2 * instance + 1;
174 double a = Math.cosh(2.22 * instance);
202 String number = numbers[instance % numbers.length];
212 String number = numbers[instance % numbers.length];
  /cts/tests/accessibility/common/src/android/accessibility/cts/common/
InstrumentedAccessibilityService.java 192 final T instance = getInstanceForClass(clazz, TIMEOUT_SERVICE_ENABLE); local
193 if (instance == null) {
201 return instance;
214 final T instance = (T) ref.get(); local
215 if (instance == null) {
218 return instance;
  /development/samples/ShortcutSample/src/com/example/android/shortcutsample/
Main.java 325 for (Main instance : sVisibleInstances) {
326 instance.refreshList();
  /external/clang/test/CXX/class.access/
p4.cpp 505 static A instance; member in class:test23::A
508 template <typename T> A<T> A<T>::instance; member in class:test23::A
  /external/clang/test/SemaCXX/
expression-traits.cpp 396 Class instance; local
397 ASSERT_RVALUE(dynamic_cast<Class*>(&instance));
402 ASSERT_LVALUE(dynamic_cast<Class&>(instance));
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesMipmapSparseResidency.cpp 127 const InstanceInterface& instance = m_context.getInstanceInterface(); local
142 if (!isImageSizeSupported(instance, physicalDevice, m_imageType, m_imageSize))
146 if (!checkSparseSupportForImageType(instance, physicalDevice, m_imageType))
182 instance.getPhysicalDeviceImageFormatProperties(physicalDevice,
194 if (!checkSparseSupportForImageFormat(instance, physicalDevice, imageSparseInfo))
208 if (imageMemoryRequirements.size > getPhysicalDeviceProperties(instance, physicalDevice).limits.sparseAddressSpaceSize)
233 const deUint32 memoryType = findMatchingMemoryType(instance, getPhysicalDevice(secondDeviceID), imageMemoryRequirements, MemoryRequirement::Any);
241 const deUint32 heapIndex = getHeapIndexForMemoryType(instance, getPhysicalDevice(secondDeviceID), memoryType);
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationOperationMultiQueueTests.cpp 94 const InstanceInterface& instance = context.getInstanceInterface(); local
96 const std::vector<VkQueueFamilyProperties> queueFamilyProperties = getPhysicalDeviceQueueFamilyProperties(instance, physicalDevice);
137 m_logicalDevice = createDevice(context.getPlatformInterface(), context.getInstance(), instance, physicalDevice, &deviceInfo);
139 m_allocator = MovePtr<Allocator>(new SimpleAllocator(*m_deviceDriver, *m_logicalDevice, getPhysicalDeviceMemoryProperties(instance, physicalDevice)));
  /external/google-breakpad/src/testing/gtest/test/
gtest-param-test_test.cc 570 static TestGenerationEnvironment* Instance() {
571 static TestGenerationEnvironment* instance = new TestGenerationEnvironment; local
572 return instance;
634 Environment::Instance()->FixtureConstructorExecuted();
638 Environment::Instance()->SetUpExecuted();
642 Environment::Instance()->TearDownExecuted();
689 Environment::Instance()->TestBodyExecuted();
881 AddGlobalTestEnvironment(TestGenerationTest::Environment::Instance());
    [all...]
  /external/icu/icu4c/source/i18n/
tznames.cpp 309 TimeZoneNames *instance = NULL; local
311 instance = new TimeZoneNamesDelegate(locale, status);
312 if (instance == NULL && U_SUCCESS(status)) {
316 return instance;
321 TimeZoneNames *instance = NULL; local
323 instance = new TZDBTimeZoneNames(locale);
324 if (instance == NULL && U_SUCCESS(status)) {
328 return instance;
  /external/libchrome/base/debug/
stack_trace_posix.cc 496 // Returns the singleton instance.
571 SandboxSymbolizeHelper* instance = GetInstance(); local
576 for (const MappedMemoryRegion& region : instance->regions_) {
585 return instance->GetFileDescriptor(region.path.c_str());
725 // Closes all file descriptors owned by this instance.
  /external/libchrome/base/sampling_heap_profiler/
sampling_heap_profiler.cc 433 static base::NoDestructor<SamplingHeapProfiler> instance; local
434 return instance.get();
  /external/libxml2/
runsuite.c 506 test_log("Failed to parse valid instance line %ld\n",
519 test_log("Failed to validate valid instance line %ld\n",
523 test_log("Internal error validating instance line %ld\n",
531 test_log("Validation of instance line %ld leaked %d\n",
563 test_log("Failed to parse valid instance line %ld\n",
576 test_log("Failed to detect invalid instance line %ld\n",
580 test_log("Internal error validating instance line %ld\n",
588 test_log("Validation of instance line %ld leaked %d\n",
821 fprintf(stderr, "instance %s fails to parse\n", path);
836 test_log("valid instance %s failed to validate against %s\n"
880 xmlNodePtr instance; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_perfcounter.c 80 int instance; member in struct:r600_pc_group
142 if (group->se != current_se || group->instance != current_instance) {
144 current_instance = group->instance;
145 pc->emit_instance(ctx, group->se, group->instance);
176 unsigned instance = group->instance >= 0 ? group->instance : 0; local
179 pc->emit_instance(ctx, se, instance);
184 } while (group->instance < 0 && ++instance < block->num_instances)
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
r600_perfcounter.c 76 int instance; member in struct:r600_pc_group
138 if (group->se != current_se || group->instance != current_instance) {
140 current_instance = group->instance;
141 pc->emit_instance(ctx, group->se, group->instance);
172 unsigned instance = group->instance >= 0 ? group->instance : 0; local
175 pc->emit_instance(ctx, se, instance);
180 } while (group->instance < 0 && ++instance < block->num_instances)
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
MockMethodAdvice.java 96 public Callable<?> handle(Object instance, Method origin, Object[] arguments) throws Throwable {
97 MockMethodInterceptor interceptor = interceptors.get(instance);
102 if (instance instanceof Serializable) {
103 realMethod = new SerializableRealMethodCall(identifier, origin, instance, arguments);
105 realMethod = new RealMethodCall(selfCallInfo, origin, instance, arguments);
109 return new ReturnValueWrapper(interceptor.doIntercept(instance,
117 public boolean isMock(Object instance) {
120 return instance != interceptors.target && interceptors.containsKey(instance);
124 public boolean isMocked(Object instance) {
    [all...]
  /external/sfntly/cpp/src/sfntly/table/core/
name_table.cc 515 NameEntryPtr instance = new NameEntry(PlatformId(index), local
519 return instance.Detach();
  /external/swiftshader/src/D3D9/
Direct3DDevice9.hpp 55 Direct3DDevice9(const HINSTANCE instance, Direct3D9 *d3d9, unsigned int adapter, D3DDEVTYPE deviceType, HWND focusWindow, unsigned long behaviourFlags, D3DPRESENT_PARAMETERS *presentParameters);
194 void bindVertexStreams(int base, bool instancing, int instance);
206 const HINSTANCE instance; member in class:D3D9::Direct3DDevice9

Completed in 1576 milliseconds

<<11121314151617181920>>