/dalvik/dx/tests/110-dex-preserve-this/ |
run | 19 --dump-to=dump.txt --dump-method="Blort.test" *.class
|
/dalvik/hit/src/com/android/hit/ |
StackFrame.java | 32 public StackFrame(long id, String method, String sig, String file, 35 mMethodName = method; 46 case COMPILED_METHOD: return "Compiled method"; 47 case NATIVE_METHOD: return "Native method";
|
/external/ceres-solver/internal/ceres/ |
numeric_diff_test_utils.h | 49 NumericDiffMethod method) const; 74 NumericDiffMethod method) const;
|
/external/chromium_org/chrome/test/chromedriver/chrome/ |
devtools_client.h | 35 virtual Status SendCommand(const std::string& method, 38 const std::string& method,
|
heap_snapshot_taker_unittest.cc | 28 DummyDevToolsClient(const std::string& method, bool error_after_events) 29 : method_(method), 51 virtual Status SendCommand(const std::string& method, 54 disabled_ = method == "Debugger.disable"; 55 if (method == method_ && !error_after_events_) 58 if (method == "HeapProfiler.takeHeapSnapshot") { 64 if (method == method_ && error_after_events_) 66 return StubDevToolsClient::SendCommand(method, params); 70 std::string method_; // Throw error on command with this method.
|
/external/chromium_org/ppapi/proxy/ |
enter_proxy.h | 77 // calling the given method. The method will generally be the one that sends 113 template<class CallbackFactory, typename Method> 117 Method method) 119 factory.NewOptionalCallback(method)), 126 template<class CallbackFactory, typename Method, typename A> 130 Method method, 133 factory.NewOptionalCallback(method, a)) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGTextPathElement.idl | 27 // textPath Method Types 38 readonly attribute SVGAnimatedEnumeration method;
|
/external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/ |
callback.h | 27 // Stores a pointer to a method in an object. Sample usage: 91 typedef ReturnType (BaseType::*Method)( 94 CallbackImpl(BaseType* instance, Method method) 96 method_(method) { 112 Method method_; 120 typedef ReturnType (BaseType::*Method)( 123 ScopedPtrCallbackImpl(BaseType* instance, Method method) 125 method_(method) { [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/ |
v3_prn.c | 113 const X509V3_EXT_METHOD *method; local 117 if(!(method = X509V3_EXT_get(ext))) 120 if(method->it) ext_str = ASN1_item_d2i(NULL, &p, ext->value->length, ASN1_ITEM_ptr(method->it)); 121 else ext_str = method->d2i(NULL, &p, ext->value->length); 125 if(method->i2s) { 126 if(!(value = method->i2s(method, ext_str))) { 146 } else if(method->i2v) { 147 if(!(nval = method->i2v(method, ext_str, NULL))) [all...] |
/external/clang/test/Misc/ |
diag-aka-types.cpp | 35 static void method(struct data *) {} function in struct:ns::str 46 helper(&ns::str::method); // expected-error{{no matching function for call to 'helper'}}
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
MethodIdItem.java | 22 * Representation of a method reference inside a Dalvik file. 28 * @param method {@code non-null;} the constant for the method 30 public MethodIdItem(CstBaseMethodRef method) { 31 super(method); 50 * Gets the method constant.
|
/external/mockito/src/org/mockito/internal/creation/ |
MethodInterceptorFilter.java | 23 import java.lang.reflect.Method; 44 public Object intercept(Object proxy, Method method, Object[] args, MethodProxy methodProxy) 46 if (objectMethodsGuru.isEqualsMethod(method)) { 48 } else if (objectMethodsGuru.isHashCodeMethod(method)) { 50 } else if (acrossJVMSerializationFeature.isWriteReplace(method)) { 57 MockitoMethod mockitoMethod = createMockitoMethod(method); 78 public MockitoMethod createMockitoMethod(Method method) { 80 return new SerializableMethod(method); [all...] |
/external/mockito/src/org/mockito/internal/stubbing/defaultanswers/ |
ForwardsInvocations.java | 11 import java.lang.reflect.Method; 29 Method method = invocation.getMethod() ; local 31 return method.invoke(delegatedObject, invocation.getArguments());
|
/external/nanohttpd/samples/src/main/java/fi/iki/elonen/ |
HelloServer.java | 14 Method method = session.getMethod(); local 16 System.out.println(method + " '" + uri + "' "); 22 "<form action='?' method='get'>\n" +
|
/external/oauth/core/src/main/java/net/oauth/http/ |
HttpResponseMessage.java | 31 protected HttpResponseMessage(String method, URL url) { 32 super(method, url);
|
/external/openssl/crypto/x509v3/ |
v3_prn.c | 113 const X509V3_EXT_METHOD *method; local 117 if(!(method = X509V3_EXT_get(ext))) 120 if(method->it) ext_str = ASN1_item_d2i(NULL, &p, ext->value->length, ASN1_ITEM_ptr(method->it)); 121 else ext_str = method->d2i(NULL, &p, ext->value->length); 125 if(method->i2s) { 126 if(!(value = method->i2s(method, ext_str))) { 146 } else if(method->i2v) { 147 if(!(nval = method->i2v(method, ext_str, NULL))) [all...] |
/external/proguard/src/proguard/classfile/attribute/ |
DeprecatedAttribute.java | 62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) 64 attributeVisitor.visitDeprecatedAttribute(clazz, method, this);
|
ExceptionsAttribute.java | 62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) 64 attributeVisitor.visitExceptionsAttribute(clazz, method, this);
|
SyntheticAttribute.java | 62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) 64 attributeVisitor.visitSyntheticAttribute(clazz, method, this);
|
/external/proguard/src/proguard/classfile/attribute/annotation/ |
AnnotationDefaultAttribute.java | 69 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) 71 attributeVisitor.visitAnnotationDefaultAttribute(clazz, method, this);
|
RuntimeInvisibleAnnotationsAttribute.java | 66 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) 68 attributeVisitor.visitRuntimeInvisibleAnnotationsAttribute(clazz, method, this);
|
RuntimeVisibleAnnotationsAttribute.java | 66 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) 68 attributeVisitor.visitRuntimeVisibleAnnotationsAttribute(clazz, method, this);
|
/external/proguard/src/proguard/classfile/attribute/preverification/ |
SameZeroFrame.java | 62 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor) 64 stackMapFrameVisitor.visitSameZeroFrame(clazz, method, codeAttribute, offset, this);
|
/external/proguard/src/proguard/classfile/editor/ |
StackSizeUpdater.java | 46 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 49 stackSizeComputer.visitCodeAttribute(clazz, method, codeAttribute);
|
/external/proguard/src/proguard/classfile/instruction/visitor/ |
AllInstructionVisitor.java | 52 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 54 codeAttribute.instructionsAccept(clazz, method, instructionVisitor);
|