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

<<11121314151617181920>>

  /external/v8/test/cctest/wasm/
wasm-run-utils.h 81 instance = &instance_;
82 instance->module = &module_;
83 instance->globals_start = global_data;
85 instance->mem_start = nullptr;
86 instance->mem_size = 0;
92 if (instance->mem_start) {
93 free(instance->mem_start);
99 CHECK_NULL(instance->mem_start);
100 CHECK_EQ(0, instance->mem_size);
101 instance->mem_start = reinterpret_cast<byte*>(malloc(size))
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java 138 * Runs {@link #testMethod} on every instance method of the class of
139 * {@code instance} with at least {@code minimalVisibility}, including those
142 public void testInstanceMethods(Object instance, Visibility minimalVisibility) {
143 for (Method method : getInstanceMethodsToTest(instance.getClass(), minimalVisibility)) {
144 testMethod(instance, method);
159 * Runs {@link #testMethod} on every public instance method of the class of
160 * {@code instance}, including those inherited from superclasses of the same
163 public void testAllPublicInstanceMethods(Object instance) {
164 testInstanceMethods(instance, Visibility.PUBLIC);
172 * @param instance the instance to invoke {@code method} on, or null i
    [all...]
  /art/test/591-new-instance-string/smali/
new-instance.smali 21 new-instance v0, Ljava/lang/String;
  /external/autotest/client/virt/
installer_unittest.py 59 instance = installer.make_installer("test_install_mode_test", params)
60 self.assertIsInstance(instance, Installer)
  /external/autotest/server/site_tests/network_WiFi_ChromeEndToEnd/
network_WiFi_ChromeEndToEnd.py 47 ssid_1=self.context.router.get_ssid(instance=0),
48 ssid_2=self.context.router.get_ssid(instance=1),
  /external/caliper/caliper/src/main/java/com/google/caliper/bridge/
CommandLineSerializer.java 59 WorkerSpec instance = (WorkerSpec) in.readObject(); local
63 return instance;
  /external/deqp/external/vulkancts/framework/vulkan/
vkDeviceUtil.cpp 21 * \brief Instance and device initialization utilities.
84 VkPhysicalDevice chooseDevice (const InstanceInterface& vkInstance, VkInstance instance, const tcu::CommandLine& cmdLine)
86 const vector<VkPhysicalDevice> devices = enumeratePhysicalDevices(vkInstance, instance);
vkWsiUtil.hpp 66 VkInstance instance,
74 VkInstance instance,
  /external/guice/core/src/com/google/inject/internal/
SingletonScope.java 26 * One instance per {@link Injector}. Also see {@code @}{@link Singleton}.
79 * instance initialization, after initialization direct access through volatile field is used.
92 * - creates no more than one instance per Key as a creator is used no more than once,
94 * - exception in a creator is not treated as instance creation and is not cached,
105 * - volatile instance: double-checked locking for quick exit when scope is initialized,
106 * - constructionContext: manipulations with proxies list or instance initialization
107 * - creationLock: singleton instance creation,
108 * -- allows to guarantee only one instance per singleton,
114 * The lazily initialized singleton instance. Once set, this will either have type T or will
117 volatile Object instance;
    [all...]
  /external/guice/core/src/com/google/inject/spi/
MembersInjectorLookup.java 92 public void injectMembers(T instance) {
95 delegate.injectMembers(instance);
  /external/guice/extensions/testlib/src/com/google/inject/testing/fieldbinder/
BoundFieldModule.java 47 * that field's type to that field's value at injector creation time. This includes both instance
99 private final Object instance; field in class:BoundFieldModule
104 private BoundFieldModule(Object instance) {
105 this.instance = instance;
109 * Create a BoundFieldModule which binds the {@link Bind} annotated fields of {@code instance}.
111 * @param instance the instance whose fields will be bound.
112 * @return a module which will bind the {@link Bind} annotated fields of {@code instance}.
114 public static BoundFieldModule of(Object instance) {
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
BooleanExpressionsTest.java 29 final Object instance = targetClass.newInstance(); local
30 ((Runnable) instance).run();
  /external/libxml2/python/tests/
relaxng.py 23 instance="""<?xml version="1.0"?>
29 doc = libxml2.parseDoc(instance)
  /external/llvm/include/llvm/Support/
Options.h 63 /// This object is a singleton, only one instance should ever exist so that all
82 /// \brief Returns a reference to the singleton instance.
83 static OptionRegistry &instance();
100 instance().addOption(&detail::OptionKey<ValT, Base, Mem>::ID, Option);
  /external/lzma/CPP/Windows/Control/
Window2.h 20 HWND parentWindow, HMENU idOrHMenu, HINSTANCE instance);
25 HWND parentWindow, HMENU idOrHMenu, HINSTANCE instance);
  /external/okhttp/android/main/java/com/squareup/okhttp/
ConfigAwareConnectionPool.java 50 private static final ConfigAwareConnectionPool instance = new ConfigAwareConnectionPool(); field in class:ConfigAwareConnectionPool
72 return instance;
  /external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/ws/
WebSocketCall.java 113 Internal.instance.callEnqueue(call, responseCallback, true);
125 Internal.instance.callEngineReleaseConnection(call);
154 Connection connection = Internal.instance.callEngineGetConnection(call);
156 if (!Internal.instance.clearOwner(connection)) {
160 BufferedSource source = Internal.instance.connectionRawSource(connection);
161 BufferedSink sink = Internal.instance.connectionRawSink(connection);
167 Internal.instance.connectionSetOwner(connection, webSocket);
175 // Keep static so that the WebSocketCall instance can be garbage collected.
199 Internal.instance.closeIfOwnedBy(connection, this);
  /external/testng/src/main/java/org/testng/internal/
BaseClassFinder.java 43 Object instance, XmlTest xmlTest, IAnnotationFinder annotationFinder,
48 result = new ClassImpl(context, cls, xmlClass, instance, m_classes, xmlTest, annotationFinder,
InvokeMethodRunnable.java 22 Object instance,
28 m_instance = instance;
InvokedMethod.java 17 public InvokedMethod(Object instance,
22 m_instance = instance;
  /external/vulkan-validation-layers/layers/
vk_layer_table.h 36 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa, instance_table_map &map);
37 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa);
  /frameworks/av/media/libmedia/
IMediaExtractor.cpp 230 ExtractorInstance &instance = sExtractors.editItemAt(i); local
231 sp<IMediaExtractor> extractor = instance.extractor.promote();
233 if (instance.tracks.size() > 5) {
234 instance.tracks.resize(5);
236 instance.tracks.push_front(source);
237 instance.trackDescriptions.add(source->getFormat()->toString());
269 const ExtractorInstance &instance = sExtractors.itemAt(i); local
271 out.append(instance.toString());
  /frameworks/base/location/lib/java/com/android/location/provider/
ActivityRecognitionProviderWatcher.java 57 public void onInstanceChanged(IActivityRecognitionHardware instance) {
65 mActivityRecognitionProvider = new ActivityRecognitionProvider(instance);
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/
BitmapUtils.java 193 Object instance = null; local
196 instance = clazz.newInstance();
199 method.invoke(instance, filePath);
203 return (Bitmap) clazz.getMethod("captureFrame").invoke(instance);
205 byte[] data = (byte[]) clazz.getMethod("getEmbeddedPicture").invoke(instance);
210 return (Bitmap) clazz.getMethod("getFrameAtTime").invoke(instance);
228 if (instance != null) {
229 clazz.getMethod("release").invoke(instance);
  /frameworks/native/vulkan/libvulkan/
swapchain.h 26 VKAPI_ATTR VkResult CreateAndroidSurfaceKHR(VkInstance instance, const VkAndroidSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* allocator, VkSurfaceKHR* surface);
27 VKAPI_ATTR void DestroySurfaceKHR(VkInstance instance, VkSurfaceKHR surface, const VkAllocationCallbacks* allocator);

Completed in 1641 milliseconds

<<11121314151617181920>>