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

1 2 3 4

  /dalvik/dx/src/com/android/dx/cf/iface/
Method.java 24 public interface Method
28 * Get the <i>effective</i> method descriptor, which includes, if
31 * @return {@code non-null;} the effective method descriptor
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
MethodDebuggee.java 26 package org.apache.harmony.jpda.tests.jdwp.Method;
LineTableTest.java 26 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
BytecodesTest.java 26 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");
IsObsoleteTest.java 26 package org.apache.harmony.jpda.tests.jdwp.Method;
38 * JDWP Unit test for Method.IsObsolete command.
42 * This testcase exercises Method.IsObsolete command.
43 * <BR>It runs MethodDebuggee, receives checked method,
44 * which is not obsolete, and checks it with Method.IsObsolete command.
75 checkReplyPacket(reply, "Method::IsObsolete command");
JDWPMethodTestCase.java 26 package org.apache.harmony.jpda.tests.jdwp.Method;
VariableTableTest.java 26 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");
VariableTableWithGenericTest.java 26 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");
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Method.java 19 * $Id: Method.java 468654 2006-10-28 07:09:23Z minchau $
34 * OutputPropertiesFactory.getDefaultMethodProperties() method to get
44 public final class Method
49 private Method() {
54 * The output method type for XML documents: <tt>xml</tt>.
59 * The output method type for HTML documents: <tt>html</tt>.
64 * The output method for XHTML documents: <tt>xhtml</tt>.
66 * This method type is not currently supported.
71 * The output method type for text documents: <tt>text</tt>.
76 * The "internal" method, just used when no method is
    [all...]
  /external/chromium_org/content/common/
font_config_ipc_linux.h 30 enum Method {
  /external/clang/include/clang/Sema/
ObjCMethodList.h 25 ObjCMethodDecl *Method;
29 ObjCMethodList() : Method(nullptr) { }
31 : Method(M), NextAndExtraBits(C, 0) { }
  /external/clang/test/CodeGenCXX/
2004-03-08-ReinterpretCastCopy.cpp 5 virtual void Method() = 0;
9 virtual void Method() { }
17 fn_type_a f = reinterpret_cast<fn_type_a>(&B::Method);
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p6.cpp 23 void Method(const T& x) { h(x); }
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Scanning.pxd 5 cdef class Method:
Lexicon.py 17 from Scanning import Method
74 (bra, Method('open_bracket_action')),
75 (ket, Method('close_bracket_action')),
76 (lineterm, Method('newline_action')),
78 (beginstring, Method('begin_string_action')),
85 (comment + lineterm, Method('commentline')),
87 (indentation, Method('indentation_action')),
88 (Eof, Method('eof_action'))
95 (Str("\n"), Method('unclosed_string_action')),
96 (Str("'"), Method('end_string_action'))
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/
util_unittest.py 27 def Method(self):
29 util.WaitFor(Test().Method, 0.1)
  /external/clang/test/SemaCXX/
vtable-instantiation.cc 58 static GMG* Method() { return &singleton; } // expected-note{{in instantiation of}}
66 GMG<int>::Method(); // expected-note{{in instantiation of}}
  /external/chromium_org/base/android/jni_generator/
sample_for_tests.cc 33 jint CPPClass::Method(JNIEnv* env, jobject obj) {
93 // This is how you call a java static method from C++.
96 // This is how you call a java method from C++. Note that you must have
  /external/chromium_org/ppapi/shared_impl/
proxy_lock_unittest.cc 37 void Method() { ++called_num; }
94 RunWhileLocked(base::Bind(&CheckLockStateInDestructor::Method, object));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
JSArticle.js 18 /** @type {?WebInspector.JSArticle.Method} */
62 WebInspector.JSArticle.Method = function(returnValueName, returnValueDescription)
99 article.methods = new WebInspector.JSArticle.Method(returnValueName, returnValue);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
proxy.h 99 typedef R (C::*Method)();
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);
140 MethodCall1(C* c, Method m, T1 a1) : c_(c), m_(m), a1_(a1) {}
151 Method m_;
160 typedef R (C::*Method)(T1 a1) const
    [all...]
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/
ast.py 206 class Method(Definition):
207 """Represents a method definition."""
215 super(Method, self).__init__(name, **kwargs)
221 return super(Method, self).__eq__(other) and \
227 # This needs to be declared after |Method|.
231 _list_item_type = (Const, Enum, Method)
288 """Represents a method request or response parameter."""
307 """Represents a list of (method request or response) parameters."""
  /external/chromium_org/net/tools/quic/test_tools/
http_message.h 28 enum Method {
48 typedef HttpConstants::Method Method;
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/dom/
CrossThreadTask.h 82 typedef void (*Method)(ExecutionContext*, MP1);
86 static PassOwnPtr<CrossThreadTask> create(Method method, Param1 parameter1)
88 return adoptPtr(new CrossThreadTask(method, parameter1));
92 CrossThreadTask1(Method method, Param1 parameter1)
93 : m_method(method)
104 Method m_method;
111 typedef void (*Method)(ExecutionContext*, MP1, MP2);
116 static PassOwnPtr<CrossThreadTask> create(Method method, Param1 parameter1, Param2 parameter2
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInstrumentation.py 187 source = re.sub("\]\s*?\n\s*", "] ", source) # Merge the method annotation with the next line
218 self.declarations.append(Method(line))
237 class Method:

Completed in 1181 milliseconds

1 2 3 4