/external/mockito/src/org/mockito/internal/creation/ |
DelegatingMethod.java | 7 import java.lang.reflect.Method;
13 private final Method method;
field in class:DelegatingMethod 15 public DelegatingMethod(Method method) {
16 assert method != null : "Method cannot be null";
17 this.method = method;
21 return method.getExceptionTypes(); [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
Allow.java | 47 /** method field 49 protected String method; field in class:Allow 62 method = m; 65 /** get the method field 69 return method; 73 * Set the method member 74 * @param method method to set. 76 public void setMethod(String method) throws ParseException { 77 if (method == null [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
Parser.java | 74 * parses a method. Consumes if a valid method has been found. 76 protected String method() throws ParseException { method in class:Parser 79 dbg_enter("method"); 96 throw createParseException("Invalid Method"); 100 dbg_leave("method"); 132 * added a method to check strings for valid token characters
|
/external/objenesis/main/src/org/objenesis/instantiator/sun/ |
SunReflectionFactoryHelper.java | 20 import java.lang.reflect.Method; 38 Method newConstructorForSerializationMethod = getNewConstructorForSerializationMethod( 67 Method method = reflectionFactoryClass.getDeclaredMethod( local 69 return method.invoke(null, new Object[] {}); 85 private static Method getNewConstructorForSerializationMethod(Class reflectionFactoryClass) {
|
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/ |
PushPromise.java | 22 private final String method; field in class:PushPromise 27 public PushPromise(String method, String path, Headers headers, MockResponse response) { 28 this.method = method; 35 return method;
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
RequestLine.java | 20 result.append(request.method());
|
/external/ppp/pppd/ |
ccp.h | 43 short method; /* code for chosen compression method */ member in struct:ccp_options
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
DeprecatedFieldTest.java | 38 import java.lang.reflect.Method; 61 Method method = deprecatedFields.getMethod(name); local 62 assertTrue("Method " + name + " should be deprecated", 63 isDeprecated(method)); 66 Method method = deprecatedFieldsBuilder.getMethod(name); local 67 assertTrue("Method " + name + " should be deprecated", 68 isDeprecated(method)); 71 Method method = deprecatedFieldsBuilder.getMethod(name, int.class) local [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/ |
HttpRedirect.java | 47 private String method; field in class:HttpRedirect 49 public HttpRedirect(final String method, final URI uri) { 51 if (method.equalsIgnoreCase(HttpHead.METHOD_NAME)) { 52 this.method = HttpHead.METHOD_NAME; 54 this.method = HttpGet.METHOD_NAME; 61 return this.method;
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/ |
ReflectionConstructor.java | 39 import org.jf.dexlib2.iface.Method; 50 public class ReflectionConstructor extends BaseMethodReference implements Method { 58 final Constructor method = this.constructor; local 60 private final Class[] parameters = method.getParameterTypes();
|
ReflectionMethod.java | 39 import org.jf.dexlib2.iface.Method; 49 public class ReflectionMethod extends BaseMethodReference implements Method { 50 private final java.lang.reflect.Method method; field in class:ReflectionMethod 52 public ReflectionMethod(java.lang.reflect.Method method) { 53 this.method = method; 57 final java.lang.reflect.Method method = this.method local [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
DexBackedMethodImplementation.java | 53 @Nonnull public final DexBackedMethod method; field in class:DexBackedMethodImplementation 57 @Nonnull DexBackedMethod method, 60 this.method = method; 84 // Does the instruction extend past the end of the method? 87 throw new ExceptionWithContext("The last instruction in the method is truncated");
|
/external/vogar/src/junit/framework/ |
TestCase.java | 21 import java.lang.reflect.Method; 25 private static final Method runTest; 36 private Method method; field in class:TestCase 54 public final void setMethod(Method method) { 55 this.method = method; 56 this.name = method.getName(); 59 public final Method getMethod() [all...] |
/frameworks/base/core/java/android/text/method/ |
AllCapsTransformationMethod.java | 16 package android.text.method;
|
DialerKeyListener.java | 17 package android.text.method; 52 * Overrides the superclass's lookup method to prefer the number field
|
MovementMethod.java | 17 package android.text.method; 28 * the movement method for purposes of content navigation. The framework automatically 29 * selects an appropriate movement method based on the content of the {@link TextView}. 53 * Returns true if this movement method allows arbitrary selection 54 * of any text; false if it has no selection (like a movement method
|
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/annotation/ |
HasAnnotationTest.java | 26 import java.lang.reflect.Method; 46 Method method = aClass.getMethod(methodName); local 47 TestMethod testMethod = new TestMethod(method, aClass); 52 @Target({ElementType.TYPE, ElementType.METHOD})
|
HasClassAnnotationTest.java | 22 import java.lang.reflect.Method; 39 Method method = aClass.getMethod("testSomeTest"); local 41 TestMethod testMethod = new TestMethod(method, aClass);
|
HasMethodAnnotationTest.java | 23 import java.lang.reflect.Method; 42 Method method = aClass.getMethod(methodName); local 43 TestMethod testMethod = new TestMethod(method, aClass);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
vp8_boolcoder_test.cc | 59 for (int method = 0; method <= 7; ++method) { // we generate various proba 66 (method == 0) ? 0 : (method == 1) ? 255 : 67 (method == 2) ? 128 : 68 (method == 3) ? rnd.Rand8() : 69 (method == 4) ? (parity ? 0 : 255) : 71 (method == 5) ? (parity ? rnd(128) : 255 - rnd(128)) : 72 (method == 6) 115 << " method: " << method; local [all...] |
vp9_boolcoder_test.cc | 32 for (int method = 0; method <= 7; ++method) { // we generate various proba 39 (method == 0) ? 0 : (method == 1) ? 255 : 40 (method == 2) ? 128 : 41 (method == 3) ? rnd.Rand8() : 42 (method == 4) ? (parity ? 0 : 255) : 44 (method == 5) ? (parity ? rnd(128) : 255 - rnd(128)) : 45 (method == 6) 84 << " method: " << method; local [all...] |
/libcore/luni/src/main/native/ |
java_util_regex_Pattern.cpp | 66 static jmethodID method = env->GetMethodID(JniConstants::patternSyntaxExceptionClass, local 70 jobject exception = env->NewObject(exceptionClass, method, message, pattern, error.offset);
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
MethodOverridesTest.java | 19 import java.lang.reflect.Method; 30 Method method = StringBuilder.class.getMethod("append", char.class); local 31 assertEquals("append", method.getName()); 35 Method method = StringBuilder.class.getMethod("append", char.class); local 37 Arrays.asList(method.getParameterTypes())); 41 Method method = StringBuilder.class.getMethod("append", char.class); local 42 assertEquals(StringBuilder.class, method.getDeclaringClass()) 46 Method method = StringBuilder.class.getMethod("append", char.class); local 51 Method method = StringBuilder.class.getMethod("append", char.class); local 82 Method method = Sub.class.getMethod("returner"); local 92 Method method = Sub.class.getMethod("returner"); local 109 Method method = Sub.class.getMethod("visibility"); local 126 Method method = PublicSub.class.getMethod("unchanged"); local [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/ |
sign.hpp | 112 typedef typename traits::method method; typedef 114 return detail::signbit_impl(x, method()); 126 typedef typename traits::method method; typedef 129 return detail::changesign_impl(x, method());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/wizards/templates/ |
FmEscapeXmlTextMethodTest.java | 30 FmEscapeXmlTextMethod method = new FmEscapeXmlTextMethod(); local 32 assertEquals(expected, ((SimpleScalar) method.exec(list)).getAsString());
|