HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 301 - 325 of 5138) sorted by null

<<11121314151617181920>>

  /dalvik/dx/tests/109-int-branch/
run 18 dx --debug --dex --no-optimize --dump-method="blort.test*" blort.class
  /dalvik/vm/mterp/armv5te/
debug.cpp 32 //const Method* method = self->method;
35 // method->clazz->descriptor, method->name, method->shorty);
51 saveArea->method, saveArea->xtra.currentPc);
55 saveArea->method, saveArea->xtra.currentPc,
63 void dvmMterpPrintMethod(Method* method)
    [all...]
  /dalvik/vm/mterp/common/
FindInterface.h 29 INLINE Method* dvmFindInterfaceMethodInCache(ClassObject* thisClass,
30 u4 methodIdx, const Method* method, DvmDex* methodClassDex)
33 dvmInterpFindInterfaceMethod(thisClass, methodIdx, method, methodClassDex)
36 return (Method*) ATOMIC_CACHE_LOOKUP(methodClassDex->pInterfaceCache,
  /dalvik/vm/mterp/mips/
debug.cpp 42 //const Method* method = self->method;
45 // method->clazz->descriptor, method->name, method->signature);
61 saveArea->method, saveArea->xtra.currentPc);
65 saveArea->method, saveArea->xtra.currentPc,
73 void dvmMterpPrintMethod(Method* method)
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
devtools_event_listener.cc 16 const std::string& method,
23 const std::string& method) {
devtools_event_listener.h 28 const std::string& method,
33 const std::string& method);
  /external/chromium_org/third_party/WebKit/ManualTests/resources/
TestApplet.class 
  /external/clang/test/Index/
complete-type-factors.m 26 + (void)method:(enum Color)color priority:(enum Priority)priority;
27 - (void)method:(enum Color)color priority:(enum Priority)priority;
31 [a method:Red priority:High];
32 [A method:Red priority:Low];
  /external/clang/test/Sema/
ms_wide_predefined_expr.cpp 17 void method() { function in class:PR13206::A
24 x.method();
  /external/guava/guava/src/com/google/common/eventbus/
SynchronizedEventHandler.java 20 import java.lang.reflect.Method;
23 * Wraps a single-argument 'handler' method on a specific object, and ensures
24 * that only one thread may enter the method at a time.
33 * Creates a new SynchronizedEventHandler to wrap {@code method} on
36 * @param target object to which the method applies.
37 * @param method handler method.
39 public SynchronizedEventHandler(Object target, Method method) {
40 super(target, method);
    [all...]
  /external/oauth/core/src/main/java/net/oauth/
OAuthAccessor.java 65 * @param method
66 * the HTTP request method. If this is null, use the default
67 * method; that is getProperty("httpMethod") or (if that's null)
71 public OAuthMessage newRequestMessage(String method, String url,
74 if (method == null) {
75 method = (String) this.getProperty("httpMethod");
76 if (method == null) {
77 method = (String) this.consumer.getProperty("httpMethod");
78 if (method == null) {
79 method = OAuthMessage.GET
    [all...]
  /external/proguard/src/proguard/classfile/editor/
VariableSizeUpdater.java 53 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
57 // method.getName(clazz).equals("abc");
61 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz),
62 method.getAccessFlags());
66 System.out.println("VariableSizeUpdater: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
71 codeAttribute.instructionsAccept(clazz, method, this);
77 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLinkMovementMethod.java 3 import android.text.method.LinkMovementMethod;
4 import android.text.method.MovementMethod;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_service.cc 128 const MethodDescriptor* method = descriptor_->method(i); local
130 GenerateMethodSignature(printer, method, IS_CONCRETE);
133 " impl.$method$(controller, request, done);\n"
135 "method", UnderscoresToCamelCase(method));
167 const MethodDescriptor* method = descriptor_->method(i); local
168 WriteMethodDocComment(printer, method);
169 GenerateMethodSignature(printer, method, IS_ABSTRACT)
193 const MethodDescriptor* method = descriptor_->method(i); local
238 const MethodDescriptor* method = descriptor_->method(i); local
283 const MethodDescriptor* method = descriptor_->method(i); local
330 const MethodDescriptor* method = descriptor_->method(i); local
373 const MethodDescriptor* method = descriptor_->method(i); local
395 const MethodDescriptor* method = descriptor_->method(i); local
    [all...]
  /art/runtime/entrypoints/interpreter/
interpreter_entrypoints.cc 31 mirror::ArtMethod* method = shadow_frame->GetMethod(); local
33 if (method->IsStatic()) {
34 Runtime::Current()->GetClassLinker()->EnsureInitialized(method->GetDeclaringClass(), true, true);
40 method->Invoke(self, arg_array.GetArray(), arg_array.GetNumBytes(), result, mh.GetShorty()[0]);
42 method->Invoke(self, shadow_frame->GetVRegArgs(arg_offset),
  /dalvik/vm/mterp/
Mterp.cpp 81 self->interpSave.methodClassDex = self->interpSave.method->clazz->pDvmDex;
85 &self->interpSave.method->prototype);
88 self->interpSave.method->clazz->descriptor,
89 self->interpSave.method->name,
101 TRACE_METHOD_ENTER(self, self->interpSave.method);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
skip.py 46 def _skipped_method(method, message, logger):
48 if method.im_class._printed_skipped_message:
50 method.im_class._printed_skipped_message = True
51 logger.info('Skipping %s.%s: %s' % (method.__module__, method.im_class.__name__, message))
  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
StackMapFrameVisitor.java 35 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame);
36 public void visitSameOneFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame);
37 public void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LessZeroFrame lessZeroFrame);
38 public void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame);
39 public void visitFullFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame)
    [all...]
  /external/openssh/
audit.c 49 audit_classify_auth(const char *method)
51 if (strcmp(method, "none") == 0)
53 else if (strcmp(method, "password") == 0)
55 else if (strcmp(method, "publickey") == 0 ||
56 strcmp(method, "rsa") == 0)
58 else if (strncmp(method, "keyboard-interactive", 20) == 0 ||
59 strcmp(method, "challenge-response") == 0)
61 else if (strcmp(method, "hostbased") == 0 ||
62 strcmp(method, "rhosts-rsa") == 0)
64 else if (strcmp(method, "gssapi-with-mic") == 0
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_service.cc 120 const MethodDescriptor* method = descriptor_->method(i); local
122 GenerateMethodSignature(printer, method, IS_CONCRETE);
125 " impl.$method$(controller, request, done);\n"
127 "method", UnderscoresToCamelCase(method));
159 const MethodDescriptor* method = descriptor_->method(i); local
160 GenerateMethodSignature(printer, method, IS_ABSTRACT);
169 " com.google.protobuf.Descriptors.MethodDescriptor method,\n
184 const MethodDescriptor* method = descriptor_->method(i); local
229 const MethodDescriptor* method = descriptor_->method(i); local
274 const MethodDescriptor* method = descriptor_->method(i); local
321 const MethodDescriptor* method = descriptor_->method(i); local
364 const MethodDescriptor* method = descriptor_->method(i); local
386 const MethodDescriptor* method = descriptor_->method(i); local
    [all...]
  /external/proguard/src/proguard/classfile/attribute/visitor/
AttributeNameFilter.java 123 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
127 deprecatedAttribute.accept(clazz, method, attributeVisitor);
150 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute)
154 syntheticAttribute.accept(clazz, method, attributeVisitor);
177 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute)
181 signatureAttribute.accept(clazz, method, attributeVisitor);
195 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute
    [all...]
RequiredAttributeFilter.java 137 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
141 deprecatedAttribute.accept(clazz, method, optionalAttributeVisitor);
164 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute)
168 syntheticAttribute.accept(clazz, method, optionalAttributeVisitor);
191 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute)
195 signatureAttribute.accept(clazz, method, optionalAttributeVisitor);
209 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute
    [all...]
  /external/proguard/src/proguard/optimize/info/
ParameterUsageMarker.java 107 // Is it a native method?
114 // Is it an abstract method?
121 // Is it a non-native, concrete method?
124 // Is the method not static, but synchronized, or can it have
158 // Can the method have other implementations?
161 // All implementations must keep all parameters of this method,
173 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
176 partialEvaluator.visitCodeAttribute(clazz, method, codeAttribute);
179 codeAttribute.instructionsAccept(clazz, method, this)
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
ReachableCodeMarker.java 82 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
101 markCode(clazz, method, codeAttribute, 0);
108 codeAttribute.exceptionsAccept(clazz, method, this);
116 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
132 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
137 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction
    [all...]
  /dalvik/vm/oo/
Object.h 33 struct Method;
52 const Method* method, struct Thread* self);
58 ACC_MIRANDA = 0x8000, // method (internal to VM)
101 * Use the top 16 bits of the access flags field for other method flags.
105 METHOD_ISWRITABLE = (1<<31), // the method's code is writable
109 * Get/set method flags.
111 #define SET_METHOD_FLAG(method, flag) \
112 do { (method)->accessFlags |= (flag); } while (0)
114 #define CLEAR_METHOD_FLAG(method, flag)
    [all...]

Completed in 852 milliseconds

<<11121314151617181920>>