Searched defs:Method (Results 1 - 25 of 84) sorted by relevance

1234

/external/proguard/src/proguard/classfile/
H A DMethod.java30 public interface Method extends Member interface in inherits:Member
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
H A DBytecodesTest.java26 package org.apache.harmony.jpda.tests.jdwp.Method;
39 * JDWP Unit test for Method.Bytecodes command.
43 * This testcase exercises Method.Bytecodes command.
45 * prints it's bytecodes received with Method.Bytecodes command.
76 checkReplyPacket(reply, "Method::Bytecodes command");
H A DIsObsoleteTest.java26 package org.apache.harmony.jpda.tests.jdwp.Method;
38 * JDWP Unit test for Method.IsObsolete command.
42 * This testcase exercises Method.IsObsolete command.
44 * which is not obsolete, and checks it with Method.IsObsolete command.
75 checkReplyPacket(reply, "Method::IsObsolete command");
H A DLineTableTest.java26 package org.apache.harmony.jpda.tests.jdwp.Method;
36 * JDWP Unit test for Method.LineTable command.
40 * This testcase exercises Method.LineTable command.
42 * For each received method sends Method.LineTable command
H A DVariableTableTest.java26 package org.apache.harmony.jpda.tests.jdwp.Method;
38 * JDWP Unit test for Method.VariableTable command.
42 * This testcase exercises Method.VariableTable command.
44 * For each received method sends Method.VariableTable command
66 checkReplyPacket(reply, "Method::VariableTable command");
H A DVariableTableWithGenericTest.java26 package org.apache.harmony.jpda.tests.jdwp.Method;
38 * JDWP Unit test for Method.VariableTableWithGeneric command.
43 * This testcase exercises Method.VariableTableWithGeneric command.
45 * For each received method sends Method.VariableTableWithGeneric command
67 checkReplyPacket(reply, "Method::VariableTableWithGeneric command");
H A DMethodDebuggee.java26 package org.apache.harmony.jpda.tests.jdwp.Method;
H A DJDWPMethodTestCase.java26 package org.apache.harmony.jpda.tests.jdwp.Method;
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DMethod.java19 * $Id: Method.java 468654 2006-10-28 07:09:23Z minchau $
44 public final class Method class
49 private Method() { method in class:Method
/external/chromium_org/content/common/
H A Dfont_config_ipc_linux.h30 enum Method { enum in class:content::FontConfigIPC
/external/clang/include/clang/Sema/
H A DObjCMethodList.h25 ObjCMethodDecl *Method; member in struct:clang::ObjCMethodList
29 ObjCMethodList() : Method(nullptr) { }
31 : Method(M), NextAndExtraBits(C, 0) { }
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp6.cpp23 void Method(const T& x) { h(x); } function in struct:Hash_map
/external/clang/test/CodeGenCXX/
H A D2004-03-08-ReinterpretCastCopy.cpp5 virtual void Method() = 0;
9 virtual void Method() { } function in struct:B
17 fn_type_a f = reinterpret_cast<fn_type_a>(&B::Method);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
H A DMethod.java47 public interface Method extends MethodReference { interface in inherits:MethodReference
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dutil_unittest.py26 def Method(self): member in class:TestWait.testCallable.Test
28 util.WaitFor(Test().Method, 0.1)
/external/chromium_org/ppapi/shared_impl/
H A Dproxy_lock_unittest.cc37 void Method() { ++called_num; } function in class:ppapi::__anon9553::CheckLockStateInDestructor
94 RunWhileLocked(base::Bind(&CheckLockStateInDestructor::Method, object));
/external/clang/test/SemaCXX/
H A Dvtable-instantiation.cc58 static GMG* Method() { return &singleton; } // expected-note{{in instantiation of}} function in struct:PR10020::GMG
66 GMG<int>::Method(); // expected-note{{in instantiation of}}
/external/chromium_org/base/android/jni_generator/
H A Dsample_for_tests.cc33 jint CPPClass::Method(JNIEnv* env, jobject obj) { function in class:base::android::CPPClass
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
H A Dmodule.py142 class Method(object): class in inherits:object
177 method = Method(self, name, ordinal=ordinal)
/external/chromium_org/net/tools/quic/test_tools/
H A Dhttp_message.h28 enum Method { enum in class:net::tools::test::HttpConstants
48 typedef HttpConstants::Method Method; typedef in class:net::tools::test::HTTPMessage
53 static Method StringToMethod(base::StringPiece str);
55 static const char* MethodToString(Method method);
63 HTTPMessage(Version version, Method request, const std::string& path);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DCodeGeneratorInstrumentation.py206 self.declarations.append(Method(line))
223 class Method: class in inherits:
/external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/
H A Dcallback.h91 typedef ReturnType (BaseType::*Method)( typedef in class:i18n::addressinput::__anon11560::CallbackImpl
94 CallbackImpl(BaseType* instance, Method method)
112 Method method_;
120 typedef ReturnType (BaseType::*Method)( typedef in class:i18n::addressinput::__anon11560::ScopedPtrCallbackImpl
123 ScopedPtrCallbackImpl(BaseType* instance, Method method)
141 Method method_;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dproxy.h99 typedef R (C::*Method)(); typedef in class:webrtc::MethodCall0
100 MethodCall0(C* c, Method m) : c_(c), m_(m) {}
111 Method m_;
119 typedef R (C::*Method)() const;
120 ConstMethodCall0(C* c, Method m) : c_(c), m_(m) {}
131 Method m_;
139 typedef R (C::*Method)(T1 a1); typedef in class:webrtc::MethodCall1
140 MethodCall1(C* c, Method m, T1 a1) : c_(c), m_(m), a1_(a1) {}
151 Method m_;
160 typedef R (C::*Method)(T
181 typedef R (C::*Method)(T1 a1, T2 a2); typedef in class:webrtc::MethodCall2
203 typedef R (C::*Method)(T1 a1, T2 a2, T3 a3); typedef in class:webrtc::MethodCall3
[all...]
/external/clang/include/clang/Basic/
H A DABI.h187 const CXXMethodDecl *Method; member in struct:clang::ThunkInfo
189 ThunkInfo() : Method(nullptr) { }
192 const CXXMethodDecl *Method = nullptr)
193 : This(This), Return(Return), Method(Method) {}
197 LHS.Method == RHS.Method;
201 return This.isEmpty() && Return.isEmpty() && Method == nullptr;
/external/lzma/CPP/7zip/Archive/7z/
H A D7zUpdate.h58 const CCompressionMethodMode *Method; member in struct:NArchive::N7z::CUpdateOptions

Completed in 640 milliseconds

1234