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

1 23 4 5 6 7 8 91011>>

  /external/swiftshader/src/D3D8/
Direct3D8.hpp 31 Direct3D8(int version, const HINSTANCE instance);
60 const HINSTANCE instance; member in class:D3D8::Direct3D8
  /external/swiftshader/src/System/
GrallocAndroid.cpp 24 static GrallocModule instance; local
25 return &instance;
  /external/tensorflow/tensorflow/core/platform/
logger.h 42 static Logger* instance = singleton_factory_(); local
43 return instance;
  /external/tensorflow/tensorflow/stream_executor/
stream_executor_internal.cc 24 static StreamExecutorFactory instance; local
25 return &instance;
31 static StreamExecutorFactory instance; local
32 return &instance;
38 static StreamExecutorFactory instance; local
39 return &instance;
  /external/webrtc/webrtc/modules/desktop_capture/win/
cursor_unittest.cc 24 // Loads |left| from resources, converts it to a |MouseCursor| instance and
28 HMODULE instance = GetModuleHandle(NULL); local
32 LoadImage(instance, MAKEINTRESOURCE(left), IMAGE_CURSOR, 0, 0, 0)));
45 LoadImage(instance, MAKEINTRESOURCE(right), IMAGE_CURSOR, 0, 0, 0)));
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
EngineInstance.cpp 33 static EngineInstance instance; local
34 return &instance;
  /frameworks/av/services/audiopolicy/enginedefault/src/
EngineInstance.cpp 32 static EngineInstance instance; local
33 return &instance;
  /external/robolectric-shadows/shadows/supportv4/src/test/java/org/robolectric/shadows/support/v4/
ShadowLocalBroadcastManagerTest.java 30 LocalBroadcastManager instance = LocalBroadcastManager.getInstance(RuntimeEnvironment.application); local
31 assertNotNull(instance);
32 assertSame(instance, LocalBroadcastManager.getInstance(RuntimeEnvironment.application));
37 LocalBroadcastManager instance = LocalBroadcastManager.getInstance(RuntimeEnvironment.application); local
45 instance.registerReceiver(receiver, new IntentFilter("com.foo"));
47 instance.sendBroadcast(new Intent("com.bar"));
49 instance.sendBroadcast(new Intent("com.foo"));
55 LocalBroadcastManager instance = LocalBroadcastManager.getInstance(RuntimeEnvironment.application); local
65 instance.registerReceiver(receiver, intentFilter);
67 instance.sendBroadcast(new Intent("com.foo", Uri.parse("ftp://robolectric.org")))
75 LocalBroadcastManager instance = LocalBroadcastManager.getInstance(RuntimeEnvironment.application); local
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/javadoc/description/
JavadocDescription.java 39 JavadocDescription instance = new JavadocDescription(); local
44 instance.addElement(new JavadocSnippet(text.substring(index, nextInlineTagPos.a + 1)));
46 instance.addElement(JavadocInlineTag.fromText(text.substring(nextInlineTagPos.a, nextInlineTagPos.b + 1)));
50 instance.addElement(new JavadocSnippet(text.substring(index)));
52 return instance;
  /bionic/libc/private/
CachedProperty.h 97 CachedProperty* instance = reinterpret_cast<CachedProperty*>(data); local
98 instance->cached_property_serial_ = serial;
101 if (instance->is_read_only_) {
102 instance->read_only_property_ = value;
104 strlcpy(instance->cached_value_, value, PROP_VALUE_MAX);
  /developers/build/prebuilts/gradle/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
Pools.java 28 * MyPooledClass instance = sPool.acquire();
29 * return (instance != null) ? instance : new MyPooledClass();
53 * @return An instance from the pool if such, null otherwise.
58 * Release an instance to the pool.
60 * @param instance The instance to release.
61 * @return Whether the instance was put in the pool.
63 * @throws IllegalStateException If the instance is already in the pool.
65 public boolean release(T instance);
101 T instance = (T) mPool[lastPooledIndex]; local
    [all...]
  /developers/samples/android/input/multitouch/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
Pools.java 28 * MyPooledClass instance = sPool.acquire();
29 * return (instance != null) ? instance : new MyPooledClass();
53 * @return An instance from the pool if such, null otherwise.
58 * Release an instance to the pool.
60 * @param instance The instance to release.
61 * @return Whether the instance was put in the pool.
63 * @throws IllegalStateException If the instance is already in the pool.
65 public boolean release(T instance);
101 T instance = (T) mPool[lastPooledIndex]; local
    [all...]
  /development/samples/browseable/BasicMultitouch/src/com.example.android.basicmultitouch/
Pools.java 28 * MyPooledClass instance = sPool.acquire();
29 * return (instance != null) ? instance : new MyPooledClass();
53 * @return An instance from the pool if such, null otherwise.
58 * Release an instance to the pool.
60 * @param instance The instance to release.
61 * @return Whether the instance was put in the pool.
63 * @throws IllegalStateException If the instance is already in the pool.
65 public boolean release(T instance);
101 T instance = (T) mPool[lastPooledIndex]; local
    [all...]
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
NewsSource.java 25 // the instance
26 static NewsSource instance = null; field in class:NewsSource
34 /** Returns the singleton instance of this class. */
36 if (instance == null) {
37 instance = new NewsSource();
39 return instance;
  /device/google/marlin/camera/QCamera2/HAL/
QCameraThermalAdapter.cpp 51 static QCameraThermalAdapter instance; local
52 return instance;
  /external/ImageMagick/Magick++/lib/
ImageRef.cpp 104 *instance; local
110 instance=imgRef;
118 // We don't own the image, create a new ImageRef instance.
119 instance=new ImageRef(replacement_,imgRef->_options);
123 return(instance);
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/schedulers/
rx-immediate.hpp 76 static scheduler instance = make_scheduler<immediate>(); local
77 return instance;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
GetValues006Debuggee.java 31 GetValues006Interface instance = new GetValues006Implementer(); local
GetValues007Debuggee.java 31 GetValues007Interface instance = new GetValues007Implementer(); local
  /external/clang/test/CodeGenCXX/
static-init-3.cpp 9 static T & instance; member in struct:X1
14 use(instance);
21 template<class T> T & X1<T>::instance = X1<T>::get(); member in class:X1
  /external/dagger2/core/src/main/java/dagger/internal/
DoubleCheckLazy.java 33 private volatile Object instance = UNINITIALIZED; field in class:DoubleCheckLazy
44 Object result = instance;
47 result = instance;
49 instance = result = provider.get();
ScopedProvider.java 22 * A {@link Provider} implementation that memoizes the result of a {@link Factory} instance.
31 private volatile Object instance = UNINITIALIZED; field in class:ScopedProvider
42 Object result = instance;
45 result = instance;
47 instance = result = factory.get();
  /external/dagger2/producers/src/main/java/dagger/producers/internal/
AbstractProducer.java 39 private volatile ListenableFuture<T> instance = null; field in class:AbstractProducer
57 ListenableFuture<T> result = instance;
60 result = instance;
63 instance = result = compute(monitor);
  /external/drrickorang/LoopbackApp/app/src/main/cpp/lb2/oboe/src/aaudio/
AAudioLoader.cpp 30 static AAudioLoader instance; local
31 return &instance;
  /external/google-fruit/include/fruit/impl/component_storage/
partial_component_storage.defn.h 83 C& instance; member in class:fruit::impl::PartialComponentStorage
86 PartialComponentStorage(PartialComponentStorage<PreviousBindings...>& previous_storage, C& instance)
87 : previous_storage(previous_storage), instance(instance) {}
90 entries.push_back(InjectorStorage::createComponentStorageEntryForBindInstance<C, C>(instance));
103 const C& instance; member in class:fruit::impl::PartialComponentStorage
106 PartialComponentStorage(PartialComponentStorage<PreviousBindings...>& previous_storage, const C& instance)
107 : previous_storage(previous_storage), instance(instance) {}
110 entries.push_back(InjectorStorage::createComponentStorageEntryForBindConstInstance<C, C>(instance));
123 C& instance; member in class:fruit::impl::PartialComponentStorage
144 const C& instance; member in class:fruit::impl::PartialComponentStorage
183 C& instance; member in class:fruit::impl::PartialComponentStorage
204 C& instance; member in class:fruit::impl::PartialComponentStorage
    [all...]

Completed in 2374 milliseconds

1 23 4 5 6 7 8 91011>>