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

1 2 3 4 5 6 7 8 91011>>

  /art/test/105-invoke/
info.txt 1 Tests simple method dispatch.
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.output 1 found method def __init__
2 found method def flush
3 found method def write
5 found method def __init__
6 found method def write
7 found method def beep
8 found method def startUserInput
9 found method def getinput
10 found method def replaceinput
11 found method def ente
    [all...]
  /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();
  /external/smali/examples/AnnotationValues/
AnnotationWithValues.smali 5 .method public abstract booleanValue()Z
6 .end method
8 .method public abstract byteValue()B
9 .end method
11 .method public abstract charValue()C
12 .end method
14 .method public abstract shortValue()S
15 .end method
17 .method public abstract intValue()I
18 .end method
    [all...]
  /external/smali/baksmali/src/test/resources/DuplicateTest/
DuplicateDirectMethods.smali 6 .method private alah()V
10 .end method
12 .method private blah()V
16 .end method
18 # duplicate method ignored
19 # .method private blah()V
23 # .end method
26 .method private clah()V
30 .end method
DuplicateVirtualMethods.smali 6 .method public alah()V
10 .end method
12 .method public blah()V
16 .end method
18 # duplicate method ignored
19 # .method public blah()V
23 # .end method
26 .method public clah()V
30 .end method
DuplicateDirectVirtualMethods.smali 6 .method private blah()V
10 .end method
12 # duplicate method ignored
13 # .method private blah()V
17 # .end method
22 .method public alah()V
26 .end method
28 # There is both a direct and virtual method with this signature.
30 .method public blah()V
34 .end method
    [all...]
  /external/smali/baksmali/src/test/resources/DuplicateTest/src/
DuplicateDirectVirtualMethods.smali 4 .method public alah()V
7 .end method
9 .method private blah()V
12 .end method
14 .method private blah()V
17 .end method
19 .method public blah()V
22 .end method
24 .method public blah()V
27 .end method
    [all...]
DuplicateDirectMethods.smali 4 .method private alah()V
7 .end method
9 .method private blah()V
12 .end method
14 .method private blah()V
17 .end method
19 .method private clah()V
22 .end method
DuplicateVirtualMethods.smali 4 .method public alah()V
7 .end method
9 .method public blah()V
12 .end method
14 .method public blah()V
17 .end method
19 .method public clah()V
22 .end method
  /external/mockito/src/org/mockito/internal/creation/
DelegatingMethod.java 7 import java.lang.reflect.Method;
13 private final Method method; field in class:DelegatingMethod
15 public DelegatingMethod(Method method) {
16 assert method != null : "Method cannot be null";
17 this.method = method;
21 return method.getExceptionTypes();
    [all...]
  /art/test/304-method-tracing/
info.txt 1 Test method tracing from command-line.
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
form.html 1 <form action="about:blank" method="POST"></form>
  /external/chromium_org/third_party/cython/src/Cython/Includes/Deprecated/
python_method.pxd 2 from cpython.method cimport *
  /external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/
daemon.conf 1 resample-method = speex-float-9
  /external/clang/test/Modules/Inputs/
lookup_left.h 2 - (int)method;
lookup_right.h 3 - (double)method;
  /dalvik/dx/tests/115-merge/testdata/
Basic.java 7 String method() { method in class:Basic
8 return "this is a method result";
  /external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
input 0 method foo() {
7 method bar() {
  /external/smali/smali-integration-tests/src/test/smali/junit-tests/InstructionTests/Format35c/
Methods.smali 5 .method public constructor <init>()V
9 .end method
11 .method public virtualMethodTest()I
15 .end method
17 .method public static staticMethodTest()I
21 .end method
23 .method public interfaceMethodTest()I
27 .end method
MethodsInterface.smali 4 .method public abstract interfaceMethodTest()I
5 .end method
  /external/mockito/src/org/mockito/internal/util/
ObjectMethodsGuru.java 11 import java.lang.reflect.Method;
17 public boolean isToString(Method method) {
18 return isToString(new DelegatingMethod(method));
21 public boolean isToString(MockitoMethod method) {
22 return method.getReturnType() == String.class
23 && method.getParameterTypes().length == 0
24 && method.getName().equals("toString");
27 public boolean isEqualsMethod(Method method) {
    [all...]
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_signal.h 14 #define CHROMEGTK_CALLBACK_0(CLASS, RETURN, METHOD) \
15 CHROMEG_CALLBACK_0(CLASS, RETURN, METHOD, GtkWidget*);
17 #define CHROMEGTK_CALLBACK_1(CLASS, RETURN, METHOD, ARG1) \
18 CHROMEG_CALLBACK_1(CLASS, RETURN, METHOD, GtkWidget*, ARG1);
20 #define CHROMEGTK_CALLBACK_2(CLASS, RETURN, METHOD, ARG1, ARG2) \
21 CHROMEG_CALLBACK_2(CLASS, RETURN, METHOD, GtkWidget*, ARG1, ARG2);
23 #define CHROMEGTK_CALLBACK_3(CLASS, RETURN, METHOD, ARG1, ARG2, ARG3) \
24 CHROMEG_CALLBACK_3(CLASS, RETURN, METHOD, GtkWidget*, ARG1, ARG2, ARG3);
26 #define CHROMEGTK_CALLBACK_4(CLASS, RETURN, METHOD, ARG1, ARG2, ARG3, ARG4) \
27 CHROMEG_CALLBACK_4(CLASS, RETURN, METHOD, GtkWidget*, ARG1, ARG2, ARG3,
    [all...]
  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
VerificationTypeVisitor.java 36 public void visitIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, IntegerType integerType);
37 public void visitFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FloatType floatType);
38 public void visitLongType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LongType longType);
39 public void visitDoubleType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, DoubleType doubleType);
40 public void visitTopType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TopType topType)
    [all...]
  /external/clang/test/SemaObjC/
DoubleMethod.m 1 // RUN: %clang_cc1 -Wduplicate-method-match -fsyntax-only -verify -Wno-objc-root-class %s
8 - (void) method; // expected-note {{previous declaration is here}}
9 - (void) method; // expected-warning {{multiple declarations of method 'method' found and ignored}}
13 - (void) method {;} // expected-note {{previous declaration is here}}
14 - (void) method {;} // expected-error {{duplicate declaration of method 'method'}}

Completed in 2023 milliseconds

1 2 3 4 5 6 7 8 91011>>