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

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/
Method.java 26 * Representation of a method from a class.
30 public interface Method extends Member
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug378.go 12 func (h Header) Method() {}
issue5581.go 16 func (x *Foo) Method() (int, error) {
issue12108.go 7 // A generated method with a return value large enough to be
8 // initialized by duffzero is not a leaf method, which violated
13 const N = 9 // values > 8 cause (Super).Method to use duffzero
18 func (b *Base) Method() (x [N]uintptr) {
27 Method() [N]uintptr
31 q.Method()
  /prebuilts/go/linux-x86/test/fixedbugs/
bug378.go 12 func (h Header) Method() {}
issue5581.go 16 func (x *Foo) Method() (int, error) {
issue12108.go 7 // A generated method with a return value large enough to be
8 // initialized by duffzero is not a leaf method, which violated
13 const N = 9 // values > 8 cause (Super).Method to use duffzero
18 func (b *Base) Method() (x [N]uintptr) {
27 Method() [N]uintptr
31 q.Method()
  /external/volley/src/test/java/com/android/volley/toolbox/
HttpClientStackTest.java 19 import com.android.volley.Request.Method;
43 assertEquals(request.getMethod(), Method.DEPRECATED_GET_OR_POST);
51 assertEquals(request.getMethod(), Method.DEPRECATED_GET_OR_POST);
59 assertEquals(request.getMethod(), Method.GET);
67 assertEquals(request.getMethod(), Method.POST);
75 assertEquals(request.getMethod(), Method.POST);
83 assertEquals(request.getMethod(), Method.PUT);
91 assertEquals(request.getMethod(), Method.PUT);
99 assertEquals(request.getMethod(), Method.DELETE);
107 assertEquals(request.getMethod(), Method.HEAD)
    [all...]
HurlStackTest.java 19 import com.android.volley.Request.Method;
41 assertEquals(request.getMethod(), Method.DEPRECATED_GET_OR_POST);
50 assertEquals(request.getMethod(), Method.DEPRECATED_GET_OR_POST);
59 assertEquals(request.getMethod(), Method.GET);
68 assertEquals(request.getMethod(), Method.POST);
77 assertEquals(request.getMethod(), Method.POST);
86 assertEquals(request.getMethod(), Method.PUT);
95 assertEquals(request.getMethod(), Method.PUT);
104 assertEquals(request.getMethod(), Method.DELETE);
113 assertEquals(request.getMethod(), Method.HEAD)
    [all...]
  /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
  /art/runtime/mirror/
method.h 28 // C++ mirror of java.lang.reflect.Method.
29 class MANAGED Method : public Executable {
32 static Method* CreateFromArtMethod(Thread* self, ArtMethod* method)
54 static GcRoot<Class> static_class_; // java.lang.reflect.Method.class.
55 static GcRoot<Class> array_class_; // [java.lang.reflect.Method.class.
57 DISALLOW_COPY_AND_ASSIGN(Method);
64 static Constructor* CreateFromArtMethod(Thread* self, ArtMethod* method)
  /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;
VariableTableTest.java 26 package org.apache.harmony.jpda.tests.jdwp.Method;
29 * JDWP Unit test for Method.VariableTable command.
35 * This testcase exercises Method.VariableTable command.
37 * For each received method sends Method.VariableTable command
VariableTableWithGenericTest.java 26 package org.apache.harmony.jpda.tests.jdwp.Method;
29 * JDWP Unit test for Method.VariableTableWithGeneric command.
34 * This testcase exercises Method.VariableTableWithGeneric command.
36 * For each received method sends 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/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);
  /prebuilts/go/darwin-x86/misc/cgo/testshared/src/depBase/
dep.go 22 func (d *Dep) Method() int {
  /prebuilts/go/linux-x86/misc/cgo/testshared/src/depBase/
dep.go 22 func (d *Dep) Method() int {
  /external/flatbuffers/grpc/src/compiler/
schema_interface.h 54 // An abstract interface representing a method.
55 struct Method {
56 virtual ~Method() {}
78 virtual std::unique_ptr<const Method> method(int i) const = 0;
  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
ContainsPoolIndex.java 32 Method,
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p6.cpp 23 void Method(const T& x) { h(x); }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
Method.java 42 * This class represents a specific method definition in a class.
45 * and shouldn't take into account any non-MethodReference specifics of this method.
47 public interface Method extends MethodReference, Member {
49 * Gets the type of the class that defines this method.
51 * @return The type of the class that defines this method
56 * Gets the name of this method.
58 * @return The name of this method
63 * Gets a list of the parameters of this method.
71 * @return A list of MethodParameter objects, representing the parameters of this method.
76 * Gets the return type of this method
    [all...]
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
macros-expected.cc 41 void CallMethodFromMacro() { Method(); } \
49 void Method() {}
  /frameworks/base/packages/Osu/src/com/android/hotspot2/
AuthMatch.java 5 * None means that there is a distinct mismatch, i.e. realm, method or parameter is defined
15 public static final int Method = 0x02;
17 public static final int MethodParam = Method | Param;
18 public static final int Exact = Realm | Method | Param;
31 if ((match & Method) != 0) {
32 sb.append("Method");
  /frameworks/base/tools/aapt2/compile/
Pseudolocalizer.h 41 enum class Method {
47 explicit Pseudolocalizer(Method method);
48 void SetMethod(Method method);

Completed in 740 milliseconds

1 2 3 4 5 6 7 8 91011>>