HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 126 - 150 of 2592) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/list/list.modifiers/
push_back_exception_safety.pass.cpp 63 CMyClass instance; local
66 vec.push_back(instance);
70 vec.push_back(instance);
push_front_exception_safety.pass.cpp 63 CMyClass instance; local
66 vec.push_front(instance);
70 vec.push_front(instance);
  /packages/apps/DeskClock/src/com/android/deskclock/provider/
AlarmInstance.java 90 public static ContentValues createContentValues(AlarmInstance instance) {
92 if (instance.mId != INVALID_ID) {
93 values.put(_ID, instance.mId);
96 values.put(YEAR, instance.mYear);
97 values.put(MONTH, instance.mMonth);
98 values.put(DAY, instance.mDay);
99 values.put(HOUR, instance.mHour);
100 values.put(MINUTES, instance.mMinute);
101 values.put(LABEL, instance.mLabel);
102 values.put(VIBRATE, instance.mVibrate ? 1 : 0)
    [all...]
  /external/clang/test/Analysis/Inputs/
qt-simulator.h 13 static QCoreApplication *instance();
  /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) {
EmptyImmutableBiMap_CustomFieldSerializer.java 29 public static void deserialize(SerializationStreamReader reader, EmptyImmutableBiMap instance) {
33 return EmptyImmutableBiMap.INSTANCE;
36 public static void serialize(SerializationStreamWriter writer, EmptyImmutableBiMap instance) {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
BasicPeriodFormatterService.java 24 private static BasicPeriodFormatterService instance; field in class:BasicPeriodFormatterService
28 * Return the default service instance. This uses the default data service.
33 if (instance == null) {
36 instance = new BasicPeriodFormatterService(ds);
38 return instance;
  /external/icu/icu4j/main/classes/core/src/com/ibm/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/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
MockMethodDispatcher.java 14 private static final ConcurrentMap<String, MockMethodDispatcher> INSTANCE = new ConcurrentHashMap<String, MockMethodDispatcher>();
17 if (mock == INSTANCE) { // Avoid endless loop if ConcurrentHashMap was redefined to check for being a mock.
20 return INSTANCE.get(identifier);
25 INSTANCE.putIfAbsent(identifier, dispatcher);
28 public abstract Callable<?> handle(Object instance, Method origin, Object[] arguments) throws Throwable;
30 public abstract boolean isMock(Object instance);
32 public abstract boolean isMocked(Object instance);
34 public abstract boolean isOverridden(Object instance, Method origin);
  /external/mockito/src/main/java/org/mockito/internal/creation/instance/
InstantiationException.java 5 package org.mockito.internal.creation.instance;
  /external/mockito/src/main/java/org/mockito/plugins/
InstantiatorProvider.java 7 import org.mockito.internal.creation.instance.Instantiator;
12 * Mockito will invoke this interface in order to fetch an instance instantiator provider.
  /external/vulkan-validation-layers/libs/vkjson/
vkjson_info.cc 34 bool instance = false; member in struct:Options
43 if (arg == "--instance" || arg == "-i") {
44 options->instance = true;
71 if (options->instance && (options->device_index != unsignedNegOne ||
74 "the whole instance." << std::endl;
82 if (options->instance && options->output_file.empty()) {
83 std::cerr << "Must specify an output file when dumping the whole instance."
87 if (!options->output_file.empty() && !options->instance &&
89 std::cerr << "Must specify instance, device index, or device name when "
97 bool Dump(const VkJsonInstance& instance, const Options& options)
    [all...]
  /frameworks/av/media/libstagefright/omx/
OMX.cpp 46 sp<OMXNodeInstance> instance; local
59 instance = mLiveNodes.editValueAt(index);
63 instance->onObserverDied();
105 sp<OMXNodeInstance> instance = new OMXNodeInstance(this, observer, name); local
110 instance.get(), &handle);
117 instance->setHandle(handle);
136 instance->setQuirks(quirks);
139 mLiveNodes.add(IInterface::asBinder(observer), instance); local
142 *omxNode = instance;
147 status_t OMX::freeNode(const sp<OMXNodeInstance> &instance) {
    [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
66 static Type* New(void* instance) {
67 DCHECK_EQ(reinterpret_cast<uintptr_t>(instance) & (ALIGNOF(Type) - 1), 0u)
71 // Use placement new to initialize our instance in our preallocated space.
73 return new (instance) Type()
193 Type* instance() { function in class:base::LazyInstance
    [all...]
  /external/vulkan-validation-layers/tests/layers/
test.cpp 32 VkInstance instance; member in struct:test::layer_data
35 layer_data() : instance(VK_NULL_HANDLE), instance_dispatch_table(nullptr) {};
64 instance_data->instance = *pInstance;
74 VKAPI_ATTR void VKAPI_CALL DestroyInstance(VkInstance instance, const VkAllocationCallbacks *pAllocator)
76 dispatch_key key = get_dispatch_key(instance);
78 instance_data->instance_dispatch_table->DestroyInstance(instance, pAllocator);
87 VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL GetInstanceProcAddr(VkInstance instance, const char* funcName)
110 layer_data *instance_data = get_my_data_ptr(get_dispatch_key(instance), layer_data_map);
117 return pTable->GetInstanceProcAddr(instance, funcName);
122 VK_LAYER_EXPORT VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL vkGetInstanceProcAddr(VkInstance instance, const char* funcName
    [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 297 milliseconds

1 2 3 4 56 7 8 91011>>