/art/runtime/interpreter/mterp/mips/ |
op_new_instance.S | 2 * Create a new instance of a class. 4 # new-instance vAA, class /* BBBB */
|
/art/test/594-invoke-super/smali/ |
invoke-super.smali | 27 new-instance v0, LY;
|
/development/ndk/sources/android/ndk_helper/ |
GLContext.h | 87 static GLContext instance; local 89 return &instance;
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
EventMod.java | 96 public long instance; field in class:EventMod 99 * Creates new instance with empty data. 123 instance = -1;
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkConcretePlatformInterface.inl | 5 virtual PFN_vkVoidFunction getInstanceProcAddr (VkInstance instance, const char* pName) const;
|
vkPlatform.cpp | 41 InstanceDriver::InstanceDriver (const PlatformInterface& platformInterface, VkInstance instance) 43 #define GET_PROC_ADDR(NAME) platformInterface.getInstanceProcAddr(instance, NAME)
|
vkVirtualPlatformInterface.inl | 5 virtual PFN_vkVoidFunction getInstanceProcAddr (VkInstance instance, const char* pName) const = 0;
|
vkDeviceUtil.hpp | 23 * \brief Instance and device initialization utilities. 47 VkInstance instance,
|
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/serialization/ |
MarshalFloat.java | 47 public void writeInstance(XmlSerializer writer, Object instance) throws IOException { 48 writer.text(instance.toString());
|
/external/libxml2/python/tests/ |
schema.py | 22 instance="""<?xml version="1.0" encoding="iso-8859-1"?> 33 doc = libxml2.parseDoc(instance)
|
/external/opencv3/modules/cudalegacy/test/ |
test_main.cpp | 82 DeviceManager::instance().loadAll(); 88 DeviceManager::instance().load(device);
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/ |
VectorTest.java | 36 String instance = yaml.dump(srcVector); local 37 //System.out.println("YAML String: " + instance); 40 Vector<String> vector = (Vector<String>) yaml.load(instance);
|
/external/testng/src/main/java/org/testng/internal/ |
IInvoker.java | 34 Object instance); 50 Object instance,
|
/external/testng/src/test/java/test/dataprovider/ |
TestInstanceTest.java | 22 public Object[][] dp(Method m, @TestInstance Object instance) { 23 TestInstanceTest o0 = (TestInstanceTest) instance;
|
/external/valgrind/drd/tests/ |
std_atomic.cpp | 15 void *func1(void *instance) 24 void *func2(void *instance)
|
/frameworks/base/core/java/android/view/inputmethod/ |
InputMethodSubtypeArray.java | 46 * Create a new instance of {@link InputMethodSubtypeArray} from an existing list of 62 * Unmarshall an instance of {@link InputMethodSubtypeArray} from a given {@link Parcel} 77 * Marshall the instance into a given {@link Parcel} object. 134 InputMethodSubtype[] instance = mInstance; local 135 if (instance == null) { 137 instance = mInstance; 138 if (instance == null) { 145 instance = unmarshall(decompressedData); 148 instance = new InputMethodSubtype[mCount]; 150 mInstance = instance; [all...] |
/frameworks/base/core/java/com/android/server/ |
AppWidgetBackupBridge.java | 30 public static void register(WidgetBackupProvider instance) { 31 sAppWidgetService = instance;
|
/external/libbrillo/brillo/dbus/ |
dbus_object.h | 98 // 3. That takes a class instance pointer and a class member function 141 template<typename Instance, typename Class, typename R, typename... Args> 143 Instance instance, 146 this, method_name, base::Bind(handler, instance)); 150 template<typename Instance, typename Class, typename R, typename... Args> 152 Instance instance, 155 this, method_name, base::Bind(handler, instance)); 179 template<typename Instance, typename Class, typename... Args [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/ |
SoundGenerator.java | 8 private static SoundGenerator instance; field in class:SoundGenerator 49 if (instance == null) { 50 instance = new SoundGenerator(); 52 return instance;
|
/development/host/windows/usb/winusb/ |
AdbWinUsbApi.cpp | 29 extern "C" BOOL WINAPI DllMain(HINSTANCE instance,
35 /** \brief Instantiates interface instance that uses WinUsb API to communicate
42 @return AdbInterfaceObject - casted instance of AdbWinUsbInterfaceObject
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
BenchmarkCreator.java | 69 Object instance; local 71 instance = benchmarkClassCtor.newInstance(); 87 field.set(instance, parser.parse(parameters.get(field.getName()))); 100 return instance;
|
/external/deqp/framework/platform/win32/ |
tcuWin32Window.hpp | 38 Window (HINSTANCE instance, int width, int height);
|
/external/guice/extensions/grapher/src/com/google/inject/grapher/ |
NameFactory.java | 33 String getInstanceName(Object instance);
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/ |
ParticleSystem.java | 13 private static ParticleSystem instance; field in class:ParticleSystem 19 if(instance == null) 20 instance = new ParticleSystem(); 21 return instance;
|
/external/libxml2/ |
check-relaxng-test-suite2.py | 55 # handle a valid instance 62 instance = node.prop("dtd") 63 if instance == None: 64 instance = "" 68 instance = instance + child.serialize() 73 doc = libxml2.parseDoc(instance) 78 log.write("\nFailed to parse correct instance:\n-----\n") 79 log.write(instance) 85 print "instance line %d" % (node.lineNo() [all...] |