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

1 2 3 4 5 6 78 91011>>

  /external/tensorflow/tensorflow/lite/experimental/micro/
simple_tensor_allocator_test.cc 39 static StackAllocator& instance() { function in class:tflite::__anon45968::StackAllocator
58 StackAllocator::kStackAllocatorSize, &StackAllocator::instance());
  /external/testng/src/main/java/org/testng/
ClassMethodMap.java 35 Object instance = m.getInstance(); local
36 List<ITestNGMethod> l = m_classMap.get(instance);
39 m_classMap.put(instance, l);
49 public synchronized boolean removeAndCheckIfLast(ITestNGMethod m, Object instance) {
50 List<ITestNGMethod> l = m_classMap.get(instance);
  /external/testng/src/main/java/org/testng/internal/
FactoryMethod.java 32 Object instance,
37 super(com.getName(), com, annotationFinder, instance); local
38 Utils.checkInstanceOrStatic(instance, com.getMethod());
41 if (instance != null && ! declaringClass.isAssignableFrom(instance.getClass())) {
42 throw new TestNGException("Mismatch between instance/method classes:"
43 + instance.getClass() + " " + declaringClass);
45 if (instance == null && com.getMethod() != null && !Modifier.isStatic(com.getMethod().getModifiers())) {
56 m_instance = instance;
95 Object instance = com.getConstructor().newInstance(parameters) local
    [all...]
  /external/v8/src/builtins/
builtins-wasm-gen.cc 25 TNode<Object> instance = LoadInstanceFromFrame(); local
27 Load(MachineType::Pointer(), instance,
41 TNode<Code> LoadCEntryFromInstance(TNode<Object> instance) {
43 Load(MachineType::AnyTagged(), instance,
101 TNode<Object> instance = LoadInstanceFromFrame(); local
102 TNode<Code> centry = LoadCEntryFromInstance(instance);
105 NoContextConstant(), instance, num_pages_smi));
  /external/v8/src/ic/
ic-stats.h 14 #include "src/base/lazy-instance.h"
63 V8_INLINE static ICStats* instance() { return instance_.Pointer(); } function in class:v8::internal::ICStats
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
SimpleLogger.java 35 private static SimpleLogger instance; field in class:SimpleLogger
42 if (instance == null) {
43 instance = new SimpleLogger(context.getApplicationContext());
45 return instance;
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/programmer/
BootloaderConnection.java 14 private static BootloaderConnection instance; field in class:BootloaderConnection
18 if (instance == null) {
19 instance = new BootloaderConnection(context.getApplicationContext());
21 return instance;
  /external/webrtc/talk/media/devices/
linuxdeviceinfo.cc 49 LibUDevSymbolTable* instance() { return &libudev_; } function in class:cricket::ScopedLibUdev
71 udev* instance() { return udev_; } function in class:cricket::ScopedUdev
88 udev_enumerate* instance() { return enumerate_; } function in class:cricket::ScopedUdevEnumerate
101 ScopedUdev udev_context(libudev_context->instance());
102 if (!udev_context.instance()) {
105 ScopedUdevEnumerate enumerate_context(libudev_context->instance(),
106 udev_context.instance());
107 if (!enumerate_context.instance()) {
110 libudev_context->instance()->udev_enumerate_add_match_subsystem()(
111 enumerate_context.instance(), "video4linux")
    [all...]
  /external/webrtc/webrtc/test/channel_transport/
traffic_control_win.h 78 static TrafficControlWindows* instance; member in class:webrtc::test::TrafficControlWindows
  /frameworks/av/services/audioflinger/
BufLog.cpp 46 BufLog *BufLogSingleton::instance() { function in class:BufLogSingleton
  /frameworks/av/services/camera/libcameraservice/api2/
HeicEncoderInfoManager.h 34 static HeicEncoderInfoManager instance; local
35 return instance;
  /dalvik/dx/tests/135-invoke-custom/src/invokecustom/
InvokeCustom.java 180 InvokeCustom instance = new InvokeCustom(); local
181 instance.checkFieldTest9(fieldGetter, fieldSetter);
184 instanceInvoke.invokeExact(instance);
  /external/apache-commons-bcel/src/examples/
Package.java 54 * See usage() for arguments. Create an instance and run that
58 Package instance = new Package(); local
60 instance.go(args);
63 instance.usage();
  /external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/
MockMethodAdvice.java 36 * Try to invoke the method {@code origin} on {@code instance}.
39 * @param instance instance to invoke the method on.
46 private static Object tryInvoke(Method origin, Object instance, Object[] arguments)
49 return origin.invoke(instance, arguments);
90 * Get the method of {@code instance} specified by {@code methodWithTypeAndSignature}.
92 * @param instance instance the method belongs to
98 public Method getOrigin(Object instance, String methodWithTypeAndSignature) throws Throwable {
99 if (!isMocked(instance)) {
260 private final WeakReference<Object> instance; field in class:MockMethodAdvice.SuperMethodCall
    [all...]
  /external/guice/core/test/com/google/inject/internal/util/
LineNumbersTest.java 166 Object instance = injector.getInstance(generated); local
167 assertEquals(instance.getClass(), generated);
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
GeneratedMessageLite.java 141 visit(EqualsVisitor.INSTANCE, (MessageType) other);
237 // Rely on/modify instance state
260 * <li>{@code NEW_INSTANCE} returns a new instance of the protocol buffer that has not yet been
263 * memoize. It returns {@code null} for false and the default instance for true. We optionally
265 * <li>{@code NEW_BUILDER} returns a {@code BuilderType} instance.
267 * recursively iterates through the fields side by side between this and the instance.
313 protected MessageType instance; field in class:GeneratedMessageLite.Builder
318 this.instance =
330 (MessageType) instance.dynamicMethod(MethodToInvoke.NEW_MUTABLE_INSTANCE);
331 newInstance.visit(MergeFromVisitor.INSTANCE, instance)
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowDisplayManagerTest.java 31 private DisplayManager instance; field in class:ShadowDisplayManagerTest
35 instance =
97 Display display = instance.getDisplay(displayId);
104 instance.registerDisplayListener(new MyDisplayListener(events), null);
148 instance.registerDisplayListener(new MyDisplayListener(events), null);
169 instance.registerDisplayListener(new MyDisplayListener(events), null);
187 instance.setSaturationLevel(0.0f);
193 instance.setSaturationLevel(0.56789f);
199 instance.setSaturationLevel(1.0f);
206 instance.setSaturationLevel(1.1f)
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/util/
SQLiteLibraryLoader.java 20 private static SQLiteLibraryLoader instance; field in class:SQLiteLibraryLoader
38 if (instance == null) {
39 instance = new SQLiteLibraryLoader();
41 instance.doLoad();
  /external/setupcompat/main/java/com/google/android/setupcompat/internal/
SetupCompatServiceProvider.java 38 * This class provides an instance of {@link ISetupCompatService}. It keeps track of the connection
44 * Returns an instance of {@link ISetupCompatService} if one already exists. If not, attempts to
84 "NOT_STARTED state only possible before instance is created.");
119 * instance of {@link CountDownLatch}.
252 /** Initial state of the service instance is completely created. */
313 SetupCompatServiceProvider result = instance;
316 result = instance;
318 instance = result = new SetupCompatServiceProvider(context.getApplicationContext());
319 instance.requestServiceBind();
328 instance = testInstance
338 private static volatile SetupCompatServiceProvider instance; field in class:SetupCompatServiceProvider
    [all...]
  /external/guice/core/test/com/google/inject/
OptionalBindingTest.java 27 * instance, and bind to provider instance) for all states of optional bindings (fields, methods,
105 HasOptionalInjections instance = new HasOptionalInjections(); local
106 Guice.createInjector(everythingModule).injectMembers(instance);
107 instance.assertEverythingInjected();
111 HasOptionalInjections instance = new HasOptionalInjections(); local
112 Guice.createInjector(partialModule).injectMembers(instance);
113 instance.assertNothingInjected();
117 HasOptionalInjections instance = new HasOptionalInjections(); local
118 Guice.createInjector().injectMembers(instance);
    [all...]
  /art/test/716-jli-jit-samples/src-art/
Main.java 94 MethodHandle instance = local
99 invokeMethod.invoke(instance, new Object[] {new Object[] {}});
  /art/test/952-invoke-custom/src/
TestInvocationKinds.java 93 private static void setInstanceField(TestInvocationKinds instance, double value) {
95 instance.instance_field = Double.NaN;
116 private static double getInstanceField(TestInvocationKinds instance) {
134 TestInvocationKinds instance = new TestInvocationKinds(); local
135 instance.instance_field = Double.MIN_VALUE;
136 setInstanceField(instance, Math.PI);
137 assertEquals(Math.PI, instance.instance_field);
138 instance.instance_field = Math.E;
139 assertEquals(Math.E, getInstanceField(instance));
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
ResourceModifier.java 127 public static ResourceModifier instance() { method in class:ResourceModifier
  /external/Reactive-Extensions/RxCpp/Ix/CPP/src/cpplinq/
util.hpp 78 template <class T> T instance();
83 typedef decltype(detail::instance<Fn>()()) type;
87 typedef decltype(detail::instance<Fn>()(detail::instance<A0>())) type;
91 typedef decltype(detail::instance<Fn>()(detail::instance<A0>(), typedef in struct:cpplinq::util::result_of
92 detail::instance<A1>())) type;
96 typedef decltype(detail::instance<Fn>()(detail::instance<A0>(), typedef in struct:cpplinq::util::result_of
97 detail::instance<A1>() typedef in class:cpplinq::util::result_of::detail
102 typedef decltype(detail::instance<Fn>()(detail::instance<A0>(), typedef in struct:cpplinq::util::result_of
103 detail::instance<A1>(), typedef in class:cpplinq::util::result_of::detail
104 detail::instance<A2>(), typedef in class:cpplinq::util::result_of::detail
    [all...]
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/schedulers/
rx-newthread.hpp 170 static scheduler instance = make_scheduler<new_thread>(); local
171 return instance;

Completed in 2182 milliseconds

1 2 3 4 5 6 78 91011>>