/external/testng/src/main/java/org/testng/internal/ |
ClassImpl.java | 52 public ClassImpl(ITestContext context, Class cls, XmlClass xmlClass, Object instance, 61 m_instance = instance; 63 if (instance instanceof ITest) { 64 m_testName = ((ITest) instance).getTestName(); 119 Object instance = getInstanceFromGuice(); local 121 if (instance != null) { 122 m_defaultInstance = instance; 135 * @return an instance from Guice if @Test(guiceModule) attribute was found, null otherwise 212 public void addInstance(Object instance) { 213 m_instances.add(instance); [all...] |
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;
|
/frameworks/support/compat/java/android/support/v4/os/ |
LocaleListCompat.java | 179 * Creates a new instance of {@link LocaleListCompat} from the Locale list. 183 LocaleListCompat instance = new LocaleListCompat(); local 185 instance.setLocaleList((LocaleList) object); 188 return instance; 202 * Creates a new instance of {@link LocaleListCompat} from the {@link Locale} array. 205 LocaleListCompat instance = new LocaleListCompat(); local 206 instance.setLocaleListArray(localeList); 207 return instance; 271 * Retrieve an empty instance of {@link LocaleList}. 284 * @return A new instance with the {@link Locale} items identified by the given tags 298 LocaleListCompat instance = new LocaleListCompat(); local [all...] |
/packages/apps/DocumentsUI/src/com/android/documentsui/ |
ThumbnailCache.java | 228 Result instance = sPool.acquire(); local 229 instance = (instance != null ? instance : new Result()); 231 instance.mStatus = status; 232 instance.mThumbnail = thumbnail; 233 instance.mSize = size; 234 instance.mLastModified = lastModified; 236 return instance; 253 // Right now one instance is enough because we expect all instances are only used i [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...] |
/external/vulkan-validation-layers/loader/ |
wsi.c | 124 // enumerated instance extensions. This solves the issue where an ICD or layer 152 vkDestroySurfaceKHR(VkInstance instance, VkSurfaceKHR surface, 155 disp = loader_get_instance_dispatch(instance); 156 disp->DestroySurfaceKHR(instance, surface, pAllocator); 161 // This is the instance chain terminator function for DestroySurfaceKHR 163 terminator_DestroySurfaceKHR(VkInstance instance, VkSurfaceKHR surface, 165 struct loader_instance *ptr_instance = loader_get_instance(instance); 177 icd->instance, icd_surface->real_icd_surfaces[i], 211 // This is the instance chain terminator function for 265 // This is the instance chain terminator function fo [all...] |
/art/test/591-new-instance-string/smali/ |
new-instance.smali | 21 new-instance v0, Ljava/lang/String;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
new.py | 13 from types import InstanceType as instance
|
/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/libmojo/base/android/ |
application_status_listener.cc | 22 New(void* instance) { 25 ApplicationStatusListener>>::New(instance);
|
/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/mockito/src/test/java/org/mockito/internal/verification/ |
DescriptionTest.java | 41 Description instance = new Description(mockVerificationMode, failureMessage); local 44 instance.verify(mockVerificationData);
|
/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/v8/tools/clang/plugins/ |
ChromeClassTester.h | 21 ChromeClassTester(clang::CompilerInstance& instance, 30 clang::CompilerInstance& instance() { return instance_; } function in class:ChromeClassTester
|