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

1 2 3 4 5 6 7 8 910

  /art/test/032-concrete-sub/src/
ConcreteSub.java 41 Method meth; local
46 meth = absClass.getMethod("redefineMe");
51 System.out.println("meth modifiers=" + meth.getModifiers());
  /art/test/128-reg-spill-on-implicit-nullcheck/src/
Main.java 43 public void meth() {field = 1;} method in class:TestClass
  /external/python/cpython3/Lib/test/
ann_module2.py 30 def meth(self, param: complex) -> None: member in class:NTC
  /art/test/068-classloader/src/
FancyLoader.java 111 Method meth; local
114 meth = mDexClass.getMethod("loadClass", String.class, ClassLoader.class);
120 meth.invoke(mDexFile, name, this);
Main.java 80 Method meth = mDexClass.getMethod("loadClass", String.class, ClassLoader.class); local
81 Object klass = meth.invoke(mDexFile, "Mutator", null);
  /art/test/086-null-super/src/
Main.java 82 Method meth = mDexClass. local
89 meth.invoke(mDexFile, name, this);
  /art/test/087-gc-after-link/src/
Main.java 85 Method meth = dexClass.getMethod("loadClass", String.class, ClassLoader.class); local
91 meth.invoke(dexFile, name, this);
96 Method meth = dexClass.getMethod("close"); local
97 meth.invoke(dexFile);
  /art/test/626-const-class-linking/src/
DefiningLoader.java 118 Method meth; local
121 meth = mDexClass.getMethod("loadClass", String.class, ClassLoader.class);
127 meth.invoke(mDexFile, name, this);
  /art/test/647-jni-get-field-id/src/
DefiningLoader.java 118 Method meth; local
121 meth = mDexClass.getMethod("loadClass", String.class, ClassLoader.class);
127 meth.invoke(mDexFile, name, this);
  /external/clang/test/CodeGenCXX/
duplicate-mangled-name.cpp 10 static void meth();
12 void MyClass::meth() { } // expected-note {{previous}} function in class:MyClass
  /dalvik/dx/src/com/android/dx/cf/direct/
MethodListParser.java 80 StdMethod meth = local
83 methods.set(n, meth);
84 return meth;
  /external/clang/test/Index/
get-cursor.cpp 43 void meth() { function in struct:LocalS
  /dalvik/dx/src/com/android/dx/ssa/
DomFront.java 33 private final SsaMethod meth; field in class:DomFront
56 * @param meth {@code non-null;} method to process
58 public DomFront(SsaMethod meth) {
59 this.meth = meth;
60 nodes = meth.getBlocks();
86 Dominators methDom = Dominators.make(meth, domInfos, false);
Dominators.java 48 private final SsaMethod meth; field in class:Dominators
64 * @param meth {@code non-null;} method to process
68 private Dominators(SsaMethod meth, DomFront.DomInfo[] domInfos,
70 this.meth = meth;
73 this.blocks = meth.getBlocks();
82 * @param meth {@code non-null;} method to process
86 public static Dominators make(SsaMethod meth, DomFront.DomInfo[] domInfos,
88 Dominators result = new Dominators(meth, domInfos, postdom);
168 * @param meth {@code non-null;} method to analyz
    [all...]
  /external/annotation-tools/scene-lib/src/annotations/io/
ASTRecord.java 134 String meth = null; local
147 meth = null;
152 assert meth == null;
153 meth = ((MethodTree) tree).getName().toString();
169 && (methodName == null ? meth == null : methodName.equals(meth))
  /external/javassist/src/test/test/javassist/proxy/
ProxySimpleTest.java 52 Method meth = data2.getClass().getDeclaredMethod("writeReplace", new Class[0]); local
54 meth.invoke(data2, new Object[0]).getClass().getName());
  /prebuilts/go/darwin-x86/test/
inline.go 158 func (T) meth(int, int) {} // ERROR "can inline T.meth" func
163 T.meth(k()) // ERROR "inlining call to k" "inlining call to T.meth"
  /prebuilts/go/linux-x86/test/
inline.go 158 func (T) meth(int, int) {} // ERROR "can inline T.meth" func
163 T.meth(k()) // ERROR "inlining call to k" "inlining call to T.meth"
  /dalvik/dx/src/com/android/dx/command/dump/
DotDumper.java 120 ConcreteMethod meth = new ConcreteMethod((Method) member, classFile, local
125 Ropper.convert(meth, advice, classFile.getMethods(), dexOptions);
128 boolean isStatic = AccessFlags.isStatic(meth.getAccessFlags());
130 BaseDumper.computeParamWidth(meth, isStatic), isStatic,
SsaDumper.java 90 ConcreteMethod meth = local
93 RopMethod rmeth = Ropper.convert(meth, advice, classFile.getMethods(), dexOptions);
95 boolean isStatic = AccessFlags.isStatic(meth.getAccessFlags());
96 int paramWidth = computeParamWidth(meth, isStatic);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMException.java 358 Method meth = local
362 if (null != meth) {
365 exception = (Throwable) meth.invoke(exception, (Class<?>) null);
  /external/google-breakpad/src/third_party/libdisasm/
ia32_insn.c 350 unsigned int meth; local
354 meth = (flag & ADDRMETH_MASK);
355 if ( USES_MOD_RM(meth) ) {
  /art/dexlist/
dexlist.cc 242 char* meth = strrchr(gOptions.argCopy, '.'); local
243 if (meth == nullptr) {
247 *meth = '\0';
249 gOptions.methodToFind = meth + 1;
  /art/test/005-annotations/src/android/test/anno/
TestAnnotations.java 68 System.out.println(" annotations on METH " + m + ":");
137 Method meth; local
142 meth = TestAnnotations.class.getMethod("getFocusType");
146 property = meth.getAnnotation(ExportedProperty.class);
154 meth.isAnnotationPresent(ExportedProperty.class));
156 meth.isAnnotationPresent(AnnoSimpleType.class));
242 System.out.println(" annotations on METH " + m + ":");
  /art/test/130-hprof/src/
Main.java 222 Method meth; local
224 meth = vmdClass.getMethod("dumpHprofData", String.class);
230 return meth;

Completed in 1010 milliseconds

1 2 3 4 5 6 7 8 910