/art/test/435-new-instance/src/ |
TestInterface.java | 18 public void method(); method in interface:TestInterface
|
TestClass.java | 20 public void method() {}; method in class:TestClass
|
/art/test/508-referrer-method/src/p1/ |
PackagePrivateA.java | 20 protected static int method() { method in class:PackagePrivateA
|
InPackage.java | 20 public static int $inline$method() { 22 // of the protected method, so that the Main class also has 24 return PublicB.method();
|
/art/test/511-clinit-interface/src/ |
Main.java | 17 import java.lang.reflect.Method; 26 public static void method() { method in class:Main
|
/dalvik/dx/tests/115-merge/testdata/ |
Basic.java | 7 String method() { method in class:Basic 8 return "this is a method result";
|
TryCatchFinally.java | 5 public static void method() { method in class:TryCatchFinally
|
/external/v8/test/mjsunit/es6/ |
spread-call-new.js | 36 TestClass.prototype.method = function() { 41 assertEquals([1, 2, 3], (new TestClass(...[1, 2, 3])).method()); 52 TestClass.prototype.method = function() { 57 assertEquals([1, 2, 3], (new TestClass(...[1, 2, 3])).method());
|
/art/runtime/entrypoints/jni/ |
jni_entrypoints.cc | 26 // Used by the JNI dlsym stub to find the native method to invoke if none is registered. 37 ArtMethod* method = self->GetCurrentMethod(nullptr); local 38 DCHECK(method != nullptr); 40 // Lookup symbol address for method, on failure we'll return null with an exception set, 41 // otherwise we return the address of the method we found. 42 void* native_code = soa.Vm()->FindCodeForNativeMethod(method); 48 method->RegisterNative(native_code, false);
|
/cts/tests/tests/text/src/android/text/method/cts/ |
CtsActivity.java | 17 package android.text.method.cts; 20 import android.text.method.ArrowKeyMovementMethod; 21 import android.text.method.LinkMovementMethod; 22 import android.text.method.ScrollingMovementMethod;
|
EditTextNoIme.java | 17 package android.text.method.cts;
|
TextViewNoIme.java | 17 package android.text.method.cts;
|
/frameworks/base/core/java/android/text/method/ |
TransformationMethod2.java | 16 package android.text.method;
|
TransformationMethod.java | 17 package android.text.method; 39 * This method is called when the TextView that uses this
|
/ndk/tests/build/issue-gcc59052-partial-specialization-of-template/jni/ |
issue-gcc59052-partial-specialization-of-template.cc | 12 static void method() {} function in struct:N::C::Implementation 18 N::C<int>::Implementation<void, 0>::method();
|
/ndk/tests/build/issue41387-uniform-initialized-rvalue/jni/ |
issue41387-uniform-initialized-rvalue.cpp | 3 void method() const {} function in struct:pair 7 (pair { 0, 0 }).method();
|
/prebuilts/misc/common/swig/include/2.0.11/chicken/ |
multi-generic.scm | 18 ;; Lastly, to override TinyCLOS method creation, two functions are 49 (add-method compute-apply-generic 50 (make-method (list <multi-generic>) 51 (lambda (call-next-method generic) 60 (add-method compute-methods 61 (make-method (list <multi-generic>) 62 (lambda (call-next-method generic) 65 (filter-in (lambda (method) 66 (let check-applicable ([list1 (method-specializers method)] [all...] |
/build/tools/droiddoc/test/stubs/expected/com/android/stubs/ |
InterfaceEnum.java | 6 public void method() { throw new RuntimeException("Stub!"); } method in class:InterfaceEnum
|
/build/tools/droiddoc/test/stubs/src/com/android/stubs/ |
InterfaceEnum.java | 22 public void method() { } method in class:InterfaceEnum
|
/build/tools/droiddoc/test/stubs/src/com/android/stubs/b/ |
B.java | 23 Parent method(Parent p) { method in class:B
|
/external/clang/test/Profile/ |
cxx-class.cpp | 48 void method() { function in class:Simple 67 S.method();
|
/external/dbus/dbus/ |
dbus-server-win.c | 54 const char *method; local 58 method = dbus_address_entry_get_method (entry); 60 if (strcmp (method, "autolaunch") == 0)
|
/external/opencv3/modules/cudaimgproc/perf/ |
perf_match_template.cpp | 67 const int method = GET_PARAM(3); local 79 cv::Ptr<cv::cuda::TemplateMatching> alg = cv::cuda::createTemplateMatching(image.type(), method); 89 TEST_CYCLE() cv::matchTemplate(image, templ, dst, method); 109 int method = GET_PARAM(3); local 121 cv::Ptr<cv::cuda::TemplateMatching> alg = cv::cuda::createTemplateMatching(image.type(), method); 131 TEST_CYCLE() cv::matchTemplate(image, templ, dst, method);
|
/external/testng/src/main/java/org/testng/internal/ |
DataProviderHolder.java | 5 import java.lang.reflect.Method; 8 * A holder for a pair of Method and IDataProviderAnnotation 12 Method method; field in class:DataProviderHolder 15 public DataProviderHolder(IDataProviderAnnotation annotation, Method method, Object instance) { 17 this.method = method;
|
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/ |
BindingMethod.java | 41 * @return The method to call to set the attribute value. 43 String method(); method in interface:BindingMethod
|