HomeSort by relevance Sort by last modified time
    Searched defs:Method (Results 1 - 25 of 452) 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 20 import com.android.volley.Request.Method;
48 assertEquals(request.getMethod(), Method.DEPRECATED_GET_OR_POST);
57 assertEquals(request.getMethod(), Method.DEPRECATED_GET_OR_POST);
66 assertEquals(request.getMethod(), Method.GET);
75 assertEquals(request.getMethod(), Method.POST);
84 assertEquals(request.getMethod(), Method.POST);
93 assertEquals(request.getMethod(), Method.PUT);
102 assertEquals(request.getMethod(), Method.PUT);
111 assertEquals(request.getMethod(), Method.DELETE);
120 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/
JDWPMethodTestCase.java 26 package 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);
  /external/perfetto/include/perfetto/ipc/
service_descriptor.h 35 // Each autogenerated class has a GetDescriptor() method that returns one
36 // instance of these and allows both client and hosts to map service and method
40 struct Method {
47 // Function pointer to decode the request argument of the method.
50 // Function pointer to decoded the reply argument of the method.
54 // method implementation.
64 // method indexes, depending on their versions. The Client can't just rely
66 std::vector<Method> methods;
  /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 64 // An abstract interface representing a method.
65 struct Method : public CommentHolder {
66 virtual ~Method() {}
95 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...]
  /frameworks/base/tools/aapt2/compile/
Pseudolocalizer.h 41 enum class Method {
47 explicit Pseudolocalizer(Method method);
48 void SetMethod(Method method);

Completed in 1598 milliseconds

1 2 3 4 5 6 7 8 91011>>