HomeSort by relevance Sort by last modified time
    Searched defs:method (Results 1 - 25 of 2672) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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
  /external/clang/test/SemaCXX/
pr25181-crash-on-invalid.cpp 6 void Foo<T>::method(T *) const throw() {} // expected-error {{nested name specifier 'Foo<T>::' for declaration does not refer into a class, class template or class template partial specialization}} function in class:Foo::Foo
  /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
  /art/runtime/entrypoints/jni/
jni_entrypoints.cc 27 // Used by the JNI dlsym stub to find the native method to invoke if none is registered.
38 ArtMethod* method = self->GetCurrentMethod(nullptr); local
39 DCHECK(method != nullptr);
41 // Lookup symbol address for method, on failure we'll return null with an exception set,
42 // otherwise we return the address of the method we found.
43 void* native_code = soa.Vm()->FindCodeForNativeMethod(method);
49 return 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;
TextMethodUtils.java 17 package android.text.method.cts;
TextViewNoIme.java 17 package android.text.method.cts;
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/chromeos_login_ext/
main.js 8 'method': 'loginUILoaded'
13 'method': 'completeLogin',
7 var msg = { property in class:msg
12 var msg = { property in class:msg
  /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
  /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...]
  /art/runtime/mirror/
class_ext-inl.h 35 ArtMethod* method = arr->GetElementPtrSize<ArtMethod*, local
38 if (method != nullptr) {
39 method->VisitRoots<kReadBarrierOption>(visitor, pointer_size);
  /art/runtime/native/
java_lang_reflect_Parameter.cc 44 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); local
45 if (method->IsProxyMethod()) {
49 uint32_t parameter_count = method->GetParameterTypeList()->Size();
54 method->PrettyMethod().c_str(),
62 annotations::GetAnnotationForMethodParameter(method, parameterIndex, klass));
  /build/make/tools/droiddoc/test/stubs/expected/com/android/stubs/
InterfaceEnum.java 6 public void method() { throw new RuntimeException("Stub!"); } method in class:InterfaceEnum
  /build/make/tools/droiddoc/test/stubs/src/com/android/stubs/
InterfaceEnum.java 22 public void method() { } method in class:InterfaceEnum
  /build/make/tools/droiddoc/test/stubs/src/com/android/stubs/b/
B.java 23 Parent method(Parent p) { method in class:B
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
source.py 11 def method(self): member in class:Simple
12 "This method does almost nothing."
19 "Method of Nested class."
21 "Function in method of Nested class."
  /external/clang/test/Profile/
cxx-class.cpp 48 void method() { function in class:Simple
67 S.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;

Completed in 548 milliseconds

1 2 3 4 5 6 7 8 91011>>