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

<<11121314151617181920>>

  /external/libcxx/utils/google-benchmark/src/
benchmark_register.cc 92 static BenchmarkFamilies instance; local
93 return &instance;
155 BenchmarkInstance instance; local
156 instance.name = family->name_;
157 instance.benchmark = family.get();
158 instance.aggregation_report_mode = family->aggregation_report_mode_;
159 instance.arg = args;
160 instance.time_unit = family->time_unit_;
161 instance.range_multiplier = family->range_multiplier_;
162 instance.min_time = family->min_time_
    [all...]
  /external/libxcam/xcore/
drm_display.cpp 52 DrmDisplay::instance () function in class:XCam::DrmDisplay
  /external/mesa3d/src/intel/blorp/
blorp_clear.c 100 * the base array layer to the instance id. Unfortunately, our hardware has
101 * no real concept of "base instance", so we have to do it manually in a
127 /* First we deal with the header which has instance and base instance */
139 nir_ssa_def *instance = nir_channel(&b, header, 1); local
140 nir_store_var(&b, v_layer, nir_iadd(&b, instance, base_layer), 0x1);
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
InlineByteBuddyMockMaker.java 12 import org.mockito.creation.instance.Instantiator;
185 T instance = instantiator.newInstance(type); local
187 mocks.put(instance, mockMethodInterceptor);
188 if (instance instanceof MockAccess) {
189 ((MockAccess) instance).setMockitoInterceptor(mockMethodInterceptor);
191 return instance;
192 } catch (org.mockito.creation.instance.InstantiationException e) {
193 throw new MockitoException("Unable to create mock instance of type '" + type.getSimpleName() + "'", e);
  /external/oj-libjdwp/src/share/back/
invoker.c 106 jobject instance = NULL; local
133 if ( error == JVMTI_ERROR_NONE && request->instance != NULL ) {
134 saveGlobalRef(env, request->instance, &instance);
135 if (instance == NULL) {
175 request->instance = instance;
198 if ( instance != NULL ) {
199 tossGlobalRef(env, &instance);
253 if (request->instance != NULL)
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockResponse.java 117 Internal.instance.addLenient(headers, name, String.valueOf(value));
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
StreamAllocation.java 162 RealConnection pooledConnection = Internal.instance.get(connectionPool, address, this);
179 Internal.instance.put(connectionPool, newConnection);
207 return Internal.instance.routeDatabase(connectionPool);
247 if (Internal.instance.connectionBecameIdle(connectionPool, connection)) {
  /external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/internal/huc/
JavaApiConverter.java 148 Internal.instance.addLenient(builder, name, trimmedValue);
188 Internal.instance.addLenient(result, fieldName, fieldValue);
430 Internal.instance.addLenient(okHeadersBuilder, name, value);
  /external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/
CacheAdapterTest.java 93 Internal.instance.setCache(client, new CacheAdapter(responseCache));
116 Internal.instance.setCache(client, new CacheAdapter(responseCache));
160 Internal.instance.setCache(client, new CacheAdapter(responseCache));
199 Internal.instance.setCache(client, new CacheAdapter(responseCache));
231 Internal.instance.setCache(client, new CacheAdapter(responseCache));
  /external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/ws/
WebSocketCall.java 109 Internal.instance.callEnqueue(call, responseCallback, true);
147 StreamAllocation streamAllocation = Internal.instance.callEngineGetStreamAllocation(call);
157 // Keep static so that the WebSocketCall instance can be garbage collected.
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/http/
StreamAllocation.java 164 RealConnection pooledConnection = Internal.instance.get(connectionPool, address, this);
181 Internal.instance.put(connectionPool, newConnection);
209 return Internal.instance.routeDatabase(connectionPool);
249 if (Internal.instance.connectionBecameIdle(connectionPool, connection)) {
  /external/okhttp/repackaged/okhttp-android-support/src/main/java/com/android/okhttp/internal/huc/
JavaApiConverter.java 150 Internal.instance.addLenient(builder, name, trimmedValue);
190 Internal.instance.addLenient(result, fieldName, fieldValue);
432 Internal.instance.addLenient(okHeadersBuilder, name, value);
  /external/parameter-framework/upstream/parameter/
ElementHandle.cpp 97 auto *instance = dynamic_cast<CInstanceConfigurableElement *>(&mElement); local
98 if (instance == nullptr) {
101 return instance->getArrayLength();
  /external/perfetto/src/tracing/api_impl/
consumer_api.cc 299 static TracingController* instance = new TracingController(); local
300 return instance;
  /external/setupcompat/partnerconfig/java/com/google/android/setupcompat/partnerconfig/
PartnerConfigHelper.java 48 private static PartnerConfigHelper instance = null; field in class:PartnerConfigHelper
56 if (instance == null) {
57 instance = new PartnerConfigHelper(context);
59 return instance;
346 instance = null;
  /external/swiftshader/src/D3D8/
Direct3DDevice8.hpp 49 Direct3DDevice8(const HINSTANCE instance, Direct3D8 *d3d8, unsigned int adapter, D3DDEVTYPE deviceType, HWND focusWindow, unsigned long behaviourFlags, D3DPRESENT_PARAMETERS *presentParameters);
173 const HINSTANCE instance; member in class:D3D8::Direct3DDevice8
  /external/tensorflow/tensorflow/core/kernels/
collective_nccl_reducer_test.cc 122 col_params_.instance.instance_key = instance_key;
123 col_params_.instance.type = REDUCTION_COLLECTIVE;
124 col_params_.instance.data_type = DT_FLOAT;
125 col_params_.instance.impl_details.collective_name = "NcclReduce";
127 col_params_.instance.num_devices_per_task[task_name] = num_ranks;
129 col_params_.instance.device_names.push_back(
131 col_params_.instance.task_names.push_back(task_name);
135 rank, col_params_.instance.device_names[rank], this));
143 for (const auto& instance : instances_) {
144 DeviceInstance* di = instance.get()
161 DeviceInstance* instance = instances_[rank].get(); local
    [all...]
  /external/tensorflow/tensorflow/lite/experimental/micro/
micro_interpreter_test.cc 80 static StackAllocator& instance() { function in class:tflite::__anon45965::StackAllocator
98 &StackAllocator::instance());
  /external/testng/src/main/java/org/testng/internal/
ClassImpl.java 52 public ClassImpl(ITestContext context, Class cls, XmlClass xmlClass, Object instance,
61 m_instance = instance;
63 if (instance instanceof ITest) {
64 m_testName = ((ITest) instance).getTestName();
119 Object instance = getInstanceFromGuice(); local
121 if (instance != null) {
122 m_defaultInstance = instance;
135 * @return an instance from Guice if @Test(guiceModule) attribute was found, null otherwise
212 public void addInstance(Object instance) {
213 m_instances.add(instance);
    [all...]
TestNGClassFinder.java 77 Object instance = cls.newInstance(); local
79 objectFactory = (ITestObjectFactory) m.invoke(instance, testContext);
81 objectFactory = (ITestObjectFactory) m.invoke(instance);
123 Utils.log("", 5, "[WARN] Found an abstract class with no valid instance attached: " + cls);
134 Object instance= theseInstances[0]; local
142 instance,
170 throw new TestNGException("The factory " + fm + " returned a null instance" +
210 for(Object instance : entry.getValue()) {
213 ic.addInstance(instance);
  /external/testng/src/main/java/org/testng/reporters/
TestHTMLReporter.java 67 .append("<td><b>Instance</b></td>\n")
177 // Instance
178 Object instance = tr.getInstance(); local
179 sb.append("<td>").append(instance).append("</td>");
  /external/testng/src/test/java/test/dependent/
DependentTest.java 109 String instance = s[1]; local
110 Assert.assertEquals(log.get(i), "prepare#" + instance); local
111 Assert.assertEquals(log.get(i + 1), "test1#" + instance); local
112 Assert.assertEquals(log.get(i + 2), "test2#" + instance); local
113 Assert.assertEquals(log.get(i + 3), "clean#" + instance); local
  /external/u-boot/arch/arm/mach-stm32mp/
cpu.c 48 * - boot instance = bit 31:16
249 int instance = (boot_mode & TAMP_BOOT_INSTANCE_MASK) - 1; local
251 pr_debug("%s: boot_ctx=0x%x => boot_mode=%x, instance=%d\n",
252 __func__, boot_ctx, boot_mode, instance);
256 sprintf(cmd, "%d", instance);
266 sprintf(cmd, "%d", instance);
  /external/v8/tools/clang/blink_gc_plugin/
RecordInfo.h 167 RecordCache(clang::CompilerInstance& instance)
168 : instance_(instance)
202 clang::CompilerInstance& instance() const { return instance_; } function in class:RecordCache
  /external/v8/tools/clang/traffic_annotation_extractor/
traffic_annotation_extractor.cpp 62 // An instance of a call to either of the 4 network traffic annotation
107 // An instance of a call to one of the monitored function.
188 CallInstance instance; local
190 GetInstanceLocation(result, call_expr, &instance.location);
191 instance.called_function_name =
193 instance.has_annotation =
195 collector_->calls.push_back(instance);
218 Location instance; local
220 GetInstanceLocation(result, constructor_expr, &instance);
223 if (!IsAPIFunction(instance.function_name)
230 Location instance; local
241 NetworkAnnotationInstance instance; local
    [all...]

Completed in 1908 milliseconds

<<11121314151617181920>>