/external/proguard/src/proguard/classfile/ |
Method.java | 26 * Representation of a method from a class. 30 public interface Method extends Member
|
/frameworks/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 AbstractMethod { 31 static Method* CreateFromArtMethod(Thread* self, ArtMethod* method) 53 static GcRoot<Class> static_class_; // java.lang.reflect.Method.class. 54 static GcRoot<Class> array_class_; // [java.lang.reflect.Method.class. 56 DISALLOW_COPY_AND_ASSIGN(Method); 62 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;
|
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/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);
|
/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 { 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/opt/net/wifi/service/java/com/android/server/wifi/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; 32 if ((match & Method) != 0) { 33 sb.append("Method");
|
/external/clang/test/SemaCXX/ |
vtable-instantiation.cpp | 58 static GMG* Method() { return &singleton; } // expected-note{{in instantiation of}} 66 GMG<int>::Method(); // expected-note{{in instantiation of}}
|
/libcore/dex/src/main/java/com/android/dex/ |
ClassData.java | 22 private final Method[] directMethods; 23 private final Method[] virtualMethods; 26 Method[] directMethods, Method[] virtualMethods) { 41 public Method[] getDirectMethods() { 45 public Method[] getVirtualMethods() { 56 public Method[] allMethods() { 57 Method[] result = new Method[directMethods.length + virtualMethods.length]; 81 public static class Method { [all...] |
/external/clang/include/clang/Basic/ |
ABI.h | 186 /// \brief Holds a pointer to the overridden method this thunk is for, 191 const CXXMethodDecl *Method; 193 ThunkInfo() : Method(nullptr) { } 196 const CXXMethodDecl *Method = nullptr) 197 : This(This), Return(Return), Method(Method) {} 201 LHS.Method == RHS.Method; 205 return This.isEmpty() && Return.isEmpty() && Method == nullptr;
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zUpdate.h | 58 const CCompressionMethodMode *Method;
|
/external/lzma/CPP/7zip/UI/Common/ |
ZipRegistry.h | 36 UString Method;
43 Method.Empty();
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
bdasup.h | 37 KSMETHOD Method; 44 KSMETHOD Method;
|
/art/test/031-class-attributes/src/ |
ClassAttrs.java | 8 import java.lang.reflect.Method; 126 Method meth; 128 System.out.println("method signature: " 164 assertTrue(AccessibleObject.class.isAssignableFrom(Method.class)); 165 assertFalse(Method.class.isAssignableFrom(AccessibleObject.class)); 195 assertTrue(AccessibleObject.class.isInstance(Method.class.getDeclaredMethods()[0])); 196 assertFalse(Method.class.isInstance(Method.class.getDeclaredFields()[0])); 222 Method method; local [all...] |