HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 101 - 125 of 1940) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/
push_front_exception_safety.pass.cpp 62 CMyClass instance; local
65 vec.push_front(instance);
69 vec.push_front(instance);
  /external/libcxx/test/std/containers/sequences/list/list.modifiers/
push_back_exception_safety.pass.cpp 62 CMyClass instance; local
65 vec.push_back(instance);
69 vec.push_back(instance);
push_front_exception_safety.pass.cpp 62 CMyClass instance; local
65 vec.push_front(instance);
69 vec.push_front(instance);
  /external/parameter-framework/upstream/skeleton-subsystem/test/
main.cpp 45 CParameterMgrFullConnector instance("toplevel.xml");
46 instance.setLogger(&logger);
49 if (not instance.start(errorMsg)) {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/
push_front_exception_safety.pass.cpp 62 CMyClass instance; local
65 vec.push_front(instance);
69 vec.push_front(instance);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.modifiers/
push_back_exception_safety.pass.cpp 62 CMyClass instance; local
65 vec.push_back(instance);
69 vec.push_back(instance);
push_front_exception_safety.pass.cpp 62 CMyClass instance; local
65 vec.push_front(instance);
69 vec.push_front(instance);
  /packages/apps/DeskClock/src/com/android/deskclock/provider/
AlarmInstance.java 97 public static ContentValues createContentValues(AlarmInstance instance) {
99 if (instance.mId != INVALID_ID) {
100 values.put(_ID, instance.mId);
103 values.put(YEAR, instance.mYear);
104 values.put(MONTH, instance.mMonth);
105 values.put(DAY, instance.mDay);
106 values.put(HOUR, instance.mHour);
107 values.put(MINUTES, instance.mMinute);
108 values.put(LABEL, instance.mLabel);
109 values.put(VIBRATE, instance.mVibrate ? 1 : 0)
    [all...]
  /frameworks/av/media/libstagefright/omx/
OMX.cpp 180 OMXNodeInstance *instance; local
193 instance = mLiveNodes.editValueAt(index);
196 index = mDispatchers.indexOfKey(instance->nodeID());
200 invalidateNodeID_l(instance->nodeID());
203 instance->onObserverDied(mMaster);
207 OMXNodeInstance *instance = findInstance(node); local
208 return (instance == NULL ? false : instance->isSecure());
258 OMXNodeInstance *instance = new OMXNodeInstance(this, observer, name); local
263 instance, &handle)
278 mLiveNodes.add(IInterface::asBinder(observer), instance); local
285 OMXNodeInstance *instance = findInstance(node); local
318 OMXNodeInstance *instance = findInstance(node); local
331 OMXNodeInstance *instance = findInstance(node); local
345 OMXNodeInstance *instance = findInstance(node); local
358 OMXNodeInstance *instance = findInstance(node); local
371 OMXNodeInstance *instance = findInstance(node); local
383 OMXNodeInstance *instance = findInstance(node); local
395 OMXNodeInstance *instance = findInstance(node); local
406 OMXNodeInstance *instance = findInstance(node); local
417 OMXNodeInstance *instance = findInstance(node); local
429 OMXNodeInstance *instance = findInstance(node); local
442 OMXNodeInstance *instance = findInstance(node); local
455 OMXNodeInstance *instance = findInstance(node); local
468 OMXNodeInstance *instance = findInstance(node); local
481 OMXNodeInstance *instance = findInstance(node); local
494 OMXNodeInstance *instance = findInstance(node); local
507 OMXNodeInstance *instance = findInstance(node); local
527 OMXNodeInstance *instance = findInstance(node); local
538 OMXNodeInstance *instance = findInstance(node); local
550 OMXNodeInstance *instance = findInstance(node); local
563 OMXNodeInstance *instance = findInstance(node); local
574 OMXNodeInstance *instance = findInstance(node); local
585 OMXNodeInstance *instance = findInstance(node); local
599 OMXNodeInstance *instance = findInstance(node); local
613 OMXNodeInstance *instance = findInstance(node); local
629 OMXNodeInstance *instance = findInstance(node); local
645 OMXNodeInstance *instance = findInstance(node); local
    [all...]
  /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();
MembersInjectors.java 36 return (MembersInjector<T>) NoOpMembersInjector.INSTANCE;
40 INSTANCE;
42 @Override public void injectMembers(Object instance) {
43 if (instance == null) {
  /external/deqp/framework/platform/win32/
tcuWin32EGLNativeDisplayFactory.hpp 39 EGLNativeDisplayFactory (HINSTANCE instance);
  /external/guava/guava-gwt/src/com/google/common/collect/
ByFunctionOrdering_CustomFieldSerializer.java 32 ByFunctionOrdering<?, ?> instance) {
44 ByFunctionOrdering<?, ?> instance) throws SerializationException {
45 writer.writeObject(instance.function);
46 writer.writeObject(instance.ordering);
ImmutableEntry_CustomFieldSerializer.java 32 ImmutableEntry<?, ?> instance) {
43 ImmutableEntry<?, ?> instance) throws SerializationException {
44 writer.writeObject(instance.getKey());
45 writer.writeObject(instance.getValue());
RegularImmutableAsList_CustomFieldSerializer.java 34 RegularImmutableAsList<?> instance) {
46 RegularImmutableAsList<?> instance) throws SerializationException {
47 writer.writeObject(instance.delegateCollection());
48 writer.writeObject(instance.delegateList());
SingletonImmutableBiMap_CustomFieldSerializer.java 33 SingletonImmutableBiMap<?, ?> instance) {
44 SingletonImmutableBiMap<?, ?> instance) throws SerializationException {
45 writer.writeObject(instance.singleKey);
46 writer.writeObject(instance.singleValue);
AllEqualOrdering_CustomFieldSerializer.java 28 public static void deserialize(SerializationStreamReader reader, AllEqualOrdering instance) {
32 return AllEqualOrdering.INSTANCE;
35 public static void serialize(SerializationStreamWriter writer, AllEqualOrdering instance) {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
BasicPeriodFormatterService.java 22 private static BasicPeriodFormatterService instance; field in class:BasicPeriodFormatterService
26 * Return the default service instance. This uses the default data service.
31 if (instance == null) {
34 instance = new BasicPeriodFormatterService(ds);
36 return instance;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
BasicPeriodFormatterService.java 20 private static BasicPeriodFormatterService instance; field in class:BasicPeriodFormatterService
24 * Return the default service instance. This uses the default data service.
29 if (instance == null) {
32 instance = new BasicPeriodFormatterService(ds);
34 return instance;
  /external/v8/build/android/incremental_install/java/org/chromium/incrementalinstall/
Reflect.java 20 * @param instance The object containing the field to set.
24 static void setField(Object instance, String name, Object value)
26 Field field = findField(instance, name);
28 field.set(instance, value);
34 * @param instance The object containing the field to set.
39 static Object getField(Object instance, String name) throws ReflectiveOperationException {
40 Field field = findField(instance, name);
42 return field.get(instance);
59 * instance.
61 static Object invokeMethod(Object instance, String name, Object... params
    [all...]
  /external/vulkan-validation-layers/libs/vkjson/
vkjson_info.cc 41 bool instance = false; member in struct:Options
50 if (arg == "--instance" || arg == "-i") {
51 options->instance = true;
78 if (options->instance && (options->device_index != unsignedNegOne ||
81 "the whole instance." << std::endl;
89 if (options->instance && options->output_file.empty()) {
90 std::cerr << "Must specify an output file when dumping the whole instance."
94 if (!options->output_file.empty() && !options->instance &&
96 std::cerr << "Must specify instance, device index, or device name when "
104 bool Dump(const VkJsonInstance& instance, const Options& options)
    [all...]
  /external/libchrome/base/
lazy_instance.h 5 // The LazyInstance<Type, Traits> class manages a single instance of Type,
10 // and Pointer() will always return the same, completely initialized instance.
11 // When the instance is constructed it is registered with AtExitManager. The
21 // will manage a unique instance. It also preallocates the space for Type, as
22 // to avoid allocating the Type instance on the heap. This may help with the
23 // performance of creating the instance, and reducing heap fragmentation. This
65 static Type* New(void* instance) {
66 DCHECK_EQ(reinterpret_cast<uintptr_t>(instance) & (ALIGNOF(Type) - 1), 0u)
70 // Use placement new to initialize our instance in our preallocated space.
72 return new (instance) Type()
192 Type* instance() { function in class:base::LazyInstance
    [all...]
  /art/test/435-new-instance/smali/
instance.smali 27 new-instance v1, LTestInterface;
35 new-instance v1, LTestClass;
43 new-instance v1, Lpkg/ProtectedClass;
51 new-instance v1, LUnknownClass;
  /external/guava/guava-gwt/src/com/google/common/base/
Absent_CustomFieldSerializer.java 27 * different instance than the singleton {@code Absent.INSTANCE}, which breaks equality. We
34 public static void deserialize(SerializationStreamReader reader, Absent<?> instance) {}
37 return Absent.INSTANCE;
40 public static void serialize(SerializationStreamWriter writer, Absent<?> instance) {}

Completed in 923 milliseconds

1 2 3 45 6 7 8 91011>>