HomeSort by relevance Sort by last modified time
    Searched full:methodcall (Results 1 - 15 of 15) sorted by null

  /dalvik/tests/003-omnibus-opcodes/src/
MethodCall.java 20 public class MethodCall extends MethodCallBase {
21 MethodCall() {
23 System.out.println(" MethodCall ctor");
54 MethodCall inst = new MethodCall();
Main.java 58 MethodCall.run();
  /frameworks/base/tools/aidl/
Type.cpp 283 addTo->Add(new MethodCall(parcel, m_marshallMethod, 1, v));
289 addTo->Add(new Assignment(v, new MethodCall(parcel, m_unmarshallMethod)));
301 addTo->Add(new MethodCall(parcel, m_writeArrayMethod, 1, v));
308 addTo->Add(new Assignment(v, new MethodCall(parcel, m_createArrayMethod)));
314 addTo->Add(new MethodCall(parcel, m_readArrayMethod, 1, v));
328 addTo->Add(new MethodCall(parcel, "writeInt", 1,
337 "!=", new MethodCall(parcel, "readInt"))));
349 addTo->Add(new MethodCall(parcel, "writeBooleanArray", 1, v));
356 addTo->Add(new Assignment(v, new MethodCall(parcel, "createBooleanArray")));
362 addTo->Add(new MethodCall(parcel, "readBooleanArray", 1, v))
    [all...]
AST.h 140 struct MethodCall : public Expression
148 MethodCall(const string& name);
149 MethodCall(Expression* obj, const string& name);
150 MethodCall(Type* clazz, const string& name);
151 MethodCall(Expression* obj, const string& name, int argc, ...);
152 MethodCall(Type* clazz, const string& name, int argc, ...);
153 virtual ~MethodCall();
generate_java.cpp 84 MethodCall* attach = new MethodCall(THIS_VALUE, "attachInterface",
120 MethodCall* superCall = new MethodCall(SUPER_VALUE, "onTransact", 4,
153 MethodCall* queryLocalInterface = new MethodCall(obj, "queryLocalInterface");
265 addTo->Add(new VariableDeclaration(len, new MethodCall(parcel, "readInt")));
358 MethodCall* realCall = new MethodCall(THIS_VALUE, method->name.data);
361 c->statements->Add(new MethodCall(stubClass->transact_data
    [all...]
AST.cpp 273 MethodCall::MethodCall(const string& n)
280 MethodCall::MethodCall(Expression* o, const string& n)
287 MethodCall::MethodCall(Type* t, const string& n)
294 MethodCall::MethodCall(Expression* o, const string& n, int argc = 0, ...)
305 MethodCall::MethodCall(Type* t, const string& n, int argc = 0, ...
    [all...]
  /external/javassist/src/main/javassist/expr/
ExprEditor.java 45 * public void edit(MethodCall m) throws CannotCompileException {
58 * in <code>MethodCall</code>.
63 * @see MethodCall
190 expr = new MethodCall(pos, iterator, clazz, minfo);
191 edit((MethodCall)expr);
215 MethodCall mcall = new MethodCall(pos, iterator, clazz, minfo);
278 public void edit(MethodCall m) throws CannotCompileException {}
ConstructorCall.java 31 public class ConstructorCall extends MethodCall {
MethodCall.java 25 public class MethodCall extends Expr {
29 protected MethodCall(int pos, CodeIterator i, CtClass declaring,
  /dalvik/tests/003-omnibus-opcodes/
expected.txt 63 MethodCall ctor
  /external/javassist/
Readme.html 501 CtBehavior.insertBefore(), MethodCall.replace(), etc.
542 <li>javassist.expr.MethodCall.isSuper() has been added.
554 <li>javassist.expr.{MethodCall,NewExpr,FieldAccess,Instanceof,Cast}.where()
557 <li>javassist.expr.{MethodCall,NewExpr,FieldAccess,Instanceof,Cast}.mayThrow()
  /external/javassist/tutorial/
tutorial2.html 648 public void edit(MethodCall m)
708 <h4>javassist.expr.MethodCall</h4>
710 <p>A <code>MethodCall</code> object represents a method call.
712 <code>MethodCall</code> substitutes a statement or
775 <code>MethodCall</code> object.
    [all...]
  /external/android-mock/tests/com/google/android/testing/mocking/
AndroidMockTest.java 25 import javassist.expr.MethodCall;
    [all...]
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
TestService.java 532 super("MethodCall", "Method call");
    [all...]
  /prebuilt/sdk/tools/linux/
aidl 

Completed in 405 milliseconds