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

<<11121314151617181920>>

  /external/deqp/framework/platform/win32/
tcuWin32VulkanPlatform.hpp 38 VulkanPlatform (HINSTANCE instance);
  /external/guava/guava-gwt/src/com/google/common/collect/
ImmutableSetMultimap_CustomFieldSerializer.java 33 ImmutableSetMultimap<?, ?> instance) {
50 ImmutableSetMultimap<?, ?> instance) throws SerializationException {
51 writer.writeObject(instance.valueComparator());
52 Multimap_CustomFieldSerializerBase.serialize(writer, instance);
RegularImmutableSortedSet_CustomFieldSerializer.java 36 RegularImmutableSortedSet<?> instance) {
61 RegularImmutableSortedSet<?> instance) throws SerializationException {
62 writer.writeObject(instance.comparator());
64 Collection_CustomFieldSerializerBase.serialize(writer, instance);
  /external/jmdns/src/javax/jmdns/
NetworkTopologyDiscovery.java 54 * NetworkTopologyDiscovery.Factory enable the creation of new instance of NetworkTopologyDiscovery.
104 * Returns a new instance of NetworkTopologyDiscovery using the class delegate if it exists.
106 * @return new instance of NetworkTopologyDiscovery
109 NetworkTopologyDiscovery instance = null; local
112 instance = delegate.newNetworkTopologyDiscovery();
114 return (instance != null ? instance : new NetworkTopologyDiscoveryImpl());
118 * Return the instance of the Multihommed Multicast DNS.
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
DM.java 52 * Write the instance out. In case it is an AttributeContainer write those our first though.
55 * @param instance
58 public void writeInstance(XmlSerializer writer, Object instance) throws IOException {
59 if (instance instanceof AttributeContainer) {
60 AttributeContainer attributeContainer = (AttributeContainer) instance;
69 writer.text(instance.toString());
Marshal.java 33 * This methods reads an instance from the given parser. For implementation,
49 * Write the instance to the given XmlSerializer. In contrast to
56 * @param instance
57 * the instance to write to the writer.
59 public void writeInstance(XmlSerializer writer, Object instance) throws IOException;
  /external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
push_back_exception_safety.pass.cpp 70 CMyClass instance(42);
74 vec.push_back(instance);
79 vec.push_back(instance);
95 vec.push_back(instance);
push_front_exception_safety.pass.cpp 70 CMyClass instance(42);
74 vec.push_front(instance);
79 vec.push_front(instance);
95 vec.push_front(instance);
  /external/libphonenumber/carrier/src/com/google/i18n/phonenumbers/
PhoneNumberToCarrierMapper.java 32 private static PhoneNumberToCarrierMapper instance = null; field in class:PhoneNumberToCarrierMapper
45 * Gets a {@link PhoneNumberToCarrierMapper} instance to carry out international carrier lookup.
48 * this method multiple times will only result in one instance being created.
50 * @return a {@link PhoneNumberToCarrierMapper} instance
53 if (instance == null) {
54 instance = new PhoneNumberToCarrierMapper(MAPPING_DATA_DIRECTORY);
56 return instance;
  /external/mockito/src/main/java/org/mockito/internal/creation/instance/
DefaultInstantiatorProvider.java 5 package org.mockito.internal.creation.instance;
12 private final static Instantiator INSTANCE = new ObjenesisInstantiator();
18 return INSTANCE;
ObjenesisInstantiator.java 5 package org.mockito.internal.creation.instance;
  /external/r8/src/main/java/com/android/tools/r8/ir/desugar/
LambdaClassConstructorSourceCode.java 14 // Used for stateless lambdas to instantiate singleton instance.
24 // Create and initialize an instance.
25 int instance = nextRegister(MoveType.OBJECT); local
26 add(builder -> builder.addNewInstance(instance, lambda.type));
29 Collections.singletonList(MoveType.OBJECT), Collections.singletonList(instance)));
32 add(builder -> builder.addStaticPut(MemberType.OBJECT, instance, lambda.instanceField));
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
ClassHandler.java 16 Object methodInvoked(Class clazz, String methodName, Object instance, String[] paramTypes, Object[] params) throws Throwable;
  /external/testng/src/main/java/org/testng/
TestClass.java 94 for (Object instance : instances) {
95 if (instance instanceof ITest) {
96 m_testName = ((ITest) instance).getTestName();
121 public void addInstance(Object instance) {
122 m_iClass.addInstance(instance);
129 for (Object instance : m_iClass.getInstances(false)) {
134 instance);
139 instance);
144 instance);
149 instance);
    [all...]
  /external/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/
templated_class_with_local_class_requires_trace.cpp 21 TemplatedObject<HeapObject>* instance = local
  /external/v8/tools/clang/blink_gc_plugin/tests/
templated_class_with_local_class_requires_trace.cpp 21 TemplatedObject<HeapObject>* instance = local
  /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;
  /frameworks/native/vulkan/libvulkan/
debug_report.cpp 118 VkInstance instance,
122 const auto& driver = GetData(instance).driver;
126 instance, create_info, allocator, &driver_handle);
131 auto& callbacks = GetData(instance).debug_report_callbacks;
134 (allocator) ? *allocator : GetData(instance).allocator);
137 driver.DestroyDebugReportCallbackEXT(instance, driver_handle,
149 void DestroyDebugReportCallbackEXT(VkInstance instance,
155 auto& callbacks = GetData(instance).debug_report_callbacks;
160 node, (allocator) ? *allocator : GetData(instance).allocator);
163 GetData(instance).driver.DestroyDebugReportCallbackEXT
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMImplementationImpl.java 36 // Singleton instance.
37 private static DOMImplementationImpl instance; field in class:DOMImplementationImpl
74 * Requests the singleton instance of the class. Creates it first, if
77 * @return The singleton Android DOMImplementationImpl instance.
80 if (instance == null) {
81 instance = new DOMImplementationImpl();
84 return instance;
  /libcore/ojluni/src/main/java/java/security/
KeyPairGenerator.java 35 import sun.security.jca.GetInstance.Instance;
186 private static KeyPairGenerator getInstance(Instance instance,
189 if (instance.impl instanceof KeyPairGenerator) {
190 kpg = (KeyPairGenerator)instance.impl;
192 KeyPairGeneratorSpi spi = (KeyPairGeneratorSpi)instance.impl;
195 kpg.provider = instance.provider;
249 Instance instance = local
251 if (instance.impl instanceof KeyPairGenerator)
302 Instance instance = GetInstance.getInstance("KeyPairGenerator", local
338 Instance instance = GetInstance.getInstance("KeyPairGenerator", local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/app/
CameraApp.java 60 Profile guard = Profilers.instance().guard("CameraApp onCreate()");
64 FirstRunDetector.instance().initializeTimeOfFirstRun(context);
67 UsageStatistics.instance().initialize(this);
79 NotificationManager manager = AndroidServices.instance().provideNotificationManager();
  /packages/apps/Car/libs/car-stream-lib/src/com/android/car/stream/
AbstractBundleable.java 90 T instance = null; local
92 instance = clazz.newInstance();
93 instance.readFromBundle(source.readBundle());
97 return instance;
127 * Writes the states of the instance to the given Bundle. Only primitives or system classes
135 * Reads the states saved in the Bundle into the current instance. The implementation should
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.modifiers/
push_back_exception_safety.pass.cpp 70 CMyClass instance(42);
74 vec.push_back(instance);
79 vec.push_back(instance);
95 vec.push_back(instance);
push_front_exception_safety.pass.cpp 70 CMyClass instance(42);
74 vec.push_front(instance);
79 vec.push_front(instance);
95 vec.push_front(instance);

Completed in 630 milliseconds

<<11121314151617181920>>