/external/guava/guava-tests/test/com/google/common/collect/ |
ForwardingTestCase.java | 27 import java.lang.reflect.Method; 62 * This invocation handler only registers that a method was called, 67 public Object invoke(Object proxy, Method method, Object[] args) 69 called(asString(method)); 71 return getDefaultValue(method.getReturnType()); 82 * Returns string representation of a method. 84 * If the method takes no parameters, it returns the name (e.g. 85 * "isEmpty". If the method takes parameters, it returns the simple names 88 private String asString(Method method) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/ |
MessageDigestAlgorithm.java | 26 * @param method the SIP method of the request being challenged. 40 String method, String digest_uri_value, String entity_body, String qop_value, 45 + nc_value + ", " + cnonce_value + ", " + method + ", " + digest_uri_value 49 if (hashUserNameRealmPasswd == null || method == null 65 A2 = method + ":" + digest_uri_value; 69 A2 = method + ":" + digest_uri_value + ":" + H(entity_body); 103 * @param method the SIP method of the request being challenged. 116 String method, String digest_uri_value, String entity_body, String qop_value [all...] |
/external/pdfium/core/src/fxcodec/libjpeg/ |
fpdfapi_jddctmgr.c | 32 * The multiplier table contents are IDCT-method-dependent. To support
33 * application changes in IDCT method between scans, we can remake the
47 /* This array contains the IDCT method code that each multiplier table
95 int method = 0;
local 106 method = JDCT_ISLOW; /* jidctred uses islow-style table */
110 method = JDCT_ISLOW; /* jidctred uses islow-style table */
114 method = JDCT_ISLOW; /* jidctred uses islow-style table */
122 method = JDCT_ISLOW;
128 method = JDCT_IFAST;
134 method = JDCT_FLOAT; [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/ |
ImmutableMethod.java | 40 import org.jf.dexlib2.iface.Method; 50 public class ImmutableMethod extends BaseMethodReference implements Method { 91 public static ImmutableMethod of(Method method) { 92 if (method instanceof ImmutableMethod) { 93 return (ImmutableMethod)method; 96 method.getDefiningClass(), 97 method.getName(), 98 method.getParameters(), 99 method.getReturnType() [all...] |
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
GenericExceptionsTest.java | 21 import java.lang.reflect.Method; 31 Method method = Thrower.class.getMethod("parameterizedMethod"); local 33 Arrays.asList(method.getGenericExceptionTypes())); 37 Method method = Thrower.class.getMethod("genericParameters", List.class); local 39 Arrays.asList(method.getGenericExceptionTypes())); 63 Method method = ThrowerT.class.getMethod("throwsTypeVariable"); local 64 TypeVariable typeVariable = getOnlyValue(method.getGenericExceptionTypes() 71 Method method = ThrowerT.class.getMethod("throwsMethodTypeParameter"); local 79 Method method = ThrowerT.class.getMethod("throwsEverything"); local [all...] |
/external/chromium_org/chrome/browser/resources/hangout_services/ |
thunk.js | 28 var method = message['method']; 30 if (method == 'chooseDesktopMedia') { 31 // TODO(bemasc): Remove this method once the caller has transitioned 41 } else if (method == 'cancelChooseDesktopMedia') { 42 // TODO(bemasc): Remove this method (see above). 47 } else if (method == 'cpu.getInfo') { 50 } else if (method == 'logging.setMetadata') { 55 } else if (method == 'logging.start') { 59 } else if (method == 'logging.uploadOnRenderClose') [all...] |
/art/runtime/entrypoints/portable/ |
portable_thread_entrypoints.cc | 34 mirror::ArtMethod* method = cur_frame->GetMethod(); local 36 ShadowFrame* new_frame = ShadowFrame::Create(num_regs, NULL, method, dex_pc); 38 const uint8_t* gc_map = method->GetNativeGcMap(); 87 mirror::ArtMethod* method, 90 new_shadow_frame->SetMethod(method);
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
BlockAddresses.java | 27 * the blocks of a particular method. Each block has a corresponding 47 * @param method {@code non-null;} the method to have block addresses for 49 public BlockAddresses(RopMethod method) { 50 BasicBlockList blocks = method.getBlocks(); 57 setupArrays(method); 126 private void setupArrays(RopMethod method) { 127 BasicBlockList blocks = method.getBlocks();
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
MethodIdsSection.java | 28 * Method refs list section of a {@code .dex} file. 32 * {@code non-null;} map from method constants to {@link 95 * @param method {@code non-null;} the reference to intern 98 public MethodIdItem intern(CstBaseMethodRef method) { 99 if (method == null) { 100 throw new NullPointerException("method == null"); 105 MethodIdItem result = methodIds.get(method); 108 result = new MethodIdItem(method); 109 methodIds.put(method, result);
|
/dalvik/dx/src/com/android/dx/dex/code/ |
BlockAddresses.java | 27 * the blocks of a particular method. Each block has a corresponding 47 * @param method {@code non-null;} the method to have block addresses for 49 public BlockAddresses(RopMethod method) { 50 BasicBlockList blocks = method.getBlocks(); 57 setupArrays(method); 126 private void setupArrays(RopMethod method) { 127 BasicBlockList blocks = method.getBlocks();
|
/dalvik/dx/src/com/android/dx/dex/file/ |
MethodIdsSection.java | 28 * Method refs list section of a {@code .dex} file. 32 * {@code non-null;} map from method constants to {@link 95 * @param method {@code non-null;} the reference to intern 98 public synchronized MethodIdItem intern(CstBaseMethodRef method) { 99 if (method == null) { 100 throw new NullPointerException("method == null"); 105 MethodIdItem result = methodIds.get(method); 108 result = new MethodIdItem(method); 109 methodIds.put(method, result);
|
/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/ |
v3_skey.c | 64 static ASN1_OCTET_STRING *s2i_skey_id(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *str); 73 char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, 79 ASN1_OCTET_STRING *s2i_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, 101 static ASN1_OCTET_STRING *s2i_skey_id(X509V3_EXT_METHOD *method, 109 if(strcmp(str, "hash")) return s2i_ASN1_OCTET_STRING(method, ctx, str);
|
v3_ocsp.c | 71 static int i2r_ocsp_crlid(const X509V3_EXT_METHOD *method, void *nonce, 73 static int i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *nonce, 75 static int i2r_object(const X509V3_EXT_METHOD *method, void *obj, BIO *out, 82 static int i2r_ocsp_nonce(const X509V3_EXT_METHOD *method, void *nonce, 85 static int i2r_ocsp_nocheck(const X509V3_EXT_METHOD *method, 87 static void *s2i_ocsp_nocheck(const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, 89 static int i2r_ocsp_serviceloc(const X509V3_EXT_METHOD *method, void *in, 158 static int i2r_ocsp_crlid(const X509V3_EXT_METHOD *method, void *in, BIO *bp, 185 static int i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *cutoff, 194 static int i2r_object(const X509V3_EXT_METHOD *method, void *oid, BIO *bp [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
BlockAddresses.java | 27 * the blocks of a particular method. Each block has a corresponding 47 * @param method {@code non-null;} the method to have block addresses for 49 public BlockAddresses(RopMethod method) { 50 BasicBlockList blocks = method.getBlocks(); 57 setupArrays(method); 126 private void setupArrays(RopMethod method) { 127 BasicBlockList blocks = method.getBlocks();
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
MethodIdsSection.java | 28 * Method refs list section of a {@code .dex} file. 32 * {@code non-null;} map from method constants to {@link 95 * @param method {@code non-null;} the reference to intern 98 public MethodIdItem intern(CstBaseMethodRef method) { 99 if (method == null) { 100 throw new NullPointerException("method == null"); 105 MethodIdItem result = methodIds.get(method); 108 result = new MethodIdItem(method); 109 methodIds.put(method, result);
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
NullPointerTester.java | 37 import java.lang.reflect.Method; 115 * Ignore a member (constructor or method) in testAllXxx methods. Returns 137 * Runs {@link #testMethod} on every public static method in class 141 for (Method method : c.getDeclaredMethods()) { 142 if (isPublic(method) && isStatic(method) && !isIgnored(method)) { 143 testMethod(null, method); 149 * Runs {@link #testMethod} on every public instance method o [all...] |
/external/openssl/crypto/x509v3/ |
v3_skey.c | 64 static ASN1_OCTET_STRING *s2i_skey_id(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *str); 73 char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, 79 ASN1_OCTET_STRING *s2i_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, 101 static ASN1_OCTET_STRING *s2i_skey_id(X509V3_EXT_METHOD *method, 109 if(strcmp(str, "hash")) return s2i_ASN1_OCTET_STRING(method, ctx, str);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/ |
FakeHttpLayer.java | 54 public void addHttpResponseRule(String method, String uri, HttpResponse response) { 55 addHttpResponseRule(new DefaultRequestMatcher(method, uri), response); 174 * by calling this method. 234 private String method; field in class:FakeHttpLayer.DefaultRequestMatcher 237 public DefaultRequestMatcher(String method, String uri) { 238 this.method = method; 244 return request.getRequestLine().getMethod().equals(method) && 263 private String method, hostname, path; field in class:FakeHttpLayer.RequestMatcherBuilder 271 * Hint: you can use EntityUtils.toString(actualPostBody) to help you implement your matches method 280 public RequestMatcherBuilder method(String method) { method in class:FakeHttpLayer.RequestMatcherBuilder 390 private String method; field in class:FakeHttpLayer.UriRegexMatcher [all...] |
/frameworks/base/core/java/com/android/internal/view/ |
InputBindResult.java | 24 * Bundle of information returned by input method manager about a successful 25 * binding to an input method. 31 * The input method service. 33 public final IInputMethodSession method; field in class:InputBindResult 41 * The ID for this input method, as found in InputMethodInfo; null if 42 * no input method will be bound. 58 method = _method; 66 method = IInputMethodSession.Stub.asInterface(source.readStrongBinder()); 79 return "InputBindResult{" + method + " " + id 93 dest.writeStrongInterface(method); [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/ui/ |
ui_lib.c | 76 UI *UI_new_method(const UI_METHOD *method) 86 if (method == NULL) 89 ret->meth=method; 631 /* BIG FSCKING WARNING!!!! If you use this on a statically allocated method 641 int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui)) 643 if (method) 645 method->ui_open_session = opener; 652 int UI_method_set_writer(UI_METHOD *method, int (*writer)(UI *ui, UI_STRING *uis)) 654 if (method) 656 method->ui_write_string = writer [all...] |
/external/openssl/crypto/ui/ |
ui_lib.c | 76 UI *UI_new_method(const UI_METHOD *method) 86 if (method == NULL) 89 ret->meth=method; 631 /* BIG FSCKING WARNING!!!! If you use this on a statically allocated method 641 int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui)) 643 if (method) 645 method->ui_open_session = opener; 652 int UI_method_set_writer(UI_METHOD *method, int (*writer)(UI *ui, UI_STRING *uis)) 654 if (method) 656 method->ui_write_string = writer [all...] |
/art/test/044-proxy/src/ |
WrappedThrow.java | 20 import java.lang.reflect.Method; 188 public Object invoke(Object proxy, Method method, Object[] args) 195 if (method.getDeclaringClass() == java.lang.Object.class) { 196 //System.out.println("!!! object " + method.getName()); 197 if (method.getName().equals("toString")) 199 else if (method.getName().equals("hashCode")) 201 else if (method.getName().equals("equals")) 207 System.out.println("Invoke " + method); 216 if (method.getName().equals("throwFunky") [all...] |
/external/chromium_org/third_party/icu/source/test/perf/perldriver/ |
PerfFramework.pm | 155 # Measure a given test method with a give test pattern using the 158 # @param the method to run 174 # $a->[0]: method name, corresponds to $method 210 # Measure a given test method with a give test pattern using the 213 # @param the method to run 240 # @param the method to run 248 # ->[0]: The method name as reported 258 #my $cmd = "java -cp c:\\dev\\myicu4j\\classes $TESTCLASS $method $n $pat"; 272 my $method = '' [all...] |
/external/easymock/src/org/easymock/internal/ |
Invocation.java | 23 import java.lang.reflect.Method;
35 private transient Method method;
field in class:Invocation 42 public Invocation(Object mock, Method method, Object[] args) {
44 this.method = method;
45 this.arguments = expandVarArgs(method.isVarArgs(), args);
80 public Method getMethod() {
81 return method;
[all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/ |
ReflectionUtils.java | 20 import java.lang.reflect.Method; 125 // Method 129 * @return all declared {@link Method}'s, including protected and private. 131 public static Map<String, Method> getMethods(Class<?> clazz) { 132 Map<String, Method> methods = Maps.newHashMap(); 135 for (Method method : c.getDeclaredMethods()) { 136 String signature = getMethodSignature(method); 138 method.setAccessible(true); 139 methods.put(signature, method); 226 Method method = getMethodBySignature(refClass, signature); local [all...] |