Searched defs:method (Results 51 - 75 of 965) sorted by relevance

1234567891011>>

/external/chromium_org/components/cronet/android/java/src/org/chromium/net/
H A DCronetUrlRequest.java12 public void setHttpMethod(String method) { argument
H A DUrlRequest.java19 * Sets the HTTP method verb to use for this request.
21 * <p>The default when this method is not called is "GET" if the request has
24 * @param method "GET", "HEAD", "DELETE", "POST" or "PUT".
26 public void setHttpMethod(String method); argument
/external/chromium_org/content/browser/android/java/
H A Dgin_java_bound_object_delegate.cc34 const JavaMethod* method) {
35 return object_->IsObjectGetClassMethod(method);
33 IsObjectGetClassMethod( const JavaMethod* method) argument
/external/chromium_org/net/http/
H A Dhttp_request_info.h37 // The method to use (GET, POST, etc.).
38 std::string method; member in struct:net::HttpRequestInfo
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_bitst.c95 STACK_OF(CONF_VALUE) *i2v_ASN1_BIT_STRING(X509V3_EXT_METHOD *method,
99 for(bnam =method->usr_data; bnam->lname; bnam++) {
106 ASN1_BIT_STRING *v2i_ASN1_BIT_STRING(X509V3_EXT_METHOD *method, argument
119 for(bnam = method->usr_data; bnam->lname; bnam++) {
H A Dv3_skey.c66 static ASN1_OCTET_STRING *s2i_skey_id(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *str);
75 char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, argument
81 ASN1_OCTET_STRING *s2i_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, argument
103 static ASN1_OCTET_STRING *s2i_skey_id(X509V3_EXT_METHOD *method, argument
111 if(strcmp(str, "hash")) return s2i_ASN1_OCTET_STRING(method, ctx, str);
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dvp9_boolcoder_test.cc32 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
84 << " method: " << method; local
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dhir_field_selection.cpp74 /* Handle "method calls" in GLSL 1.20 - namely, array.length() */
81 const char *method; local
82 method = call->subexpressions[0]->primary_expression.identifier;
84 if (op->type->is_array() && strcmp(method, "length") == 0) {
86 _mesa_glsl_error(&loc, state, "length method takes no arguments.");
93 _mesa_glsl_error(&loc, state, "Unknown method: `%s'.", method);
/external/chromium_org/third_party/webrtc/common_video/libyuv/
H A Dscaler.cc31 ScaleMethod method) {
43 method_ = method;
28 Set(int src_width, int src_height, int dst_width, int dst_height, VideoType src_video_type, VideoType dst_video_type, ScaleMethod method) argument
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3-0x.cpp33 struct method { struct in namespace:rdar12176336
36 method(vararg_func implementation) : implementation(implementation) {} function in struct:rdar12176336::method
46 method m(nullptr);
/external/clang/test/CodeGen/
H A Dfp-contract-pragma.cpp39 float method(float a, float b, float c) { function in class:fp_contract_4
/external/clang/test/SemaCXX/
H A Dpragma-optimize.cpp33 // The declaration of the method is not decorated with `optnone`.
34 int method(int blah);
37 // The definition of the method instead is decorated with `optnone`.
38 int MyClass::method(int blah) { function in class:MyClass
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DBlockAddresses.java27 * 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) { argument
50 BasicBlockList blocks = method.getBlocks();
57 setupArrays(method);
126 private void setupArrays(RopMethod method) { argument
127 BasicBlockList blocks = method.getBlocks();
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMethodIdItem.java22 * Representation of a method reference inside a Dalvik file.
28 * @param method {@code non-null;} the constant for the method
30 public MethodIdItem(CstBaseMethodRef method) { argument
31 super(method);
50 * Gets the method constant.
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalVariableExtractor.java24 * a method.
27 /** {@code non-null;} method being extracted from */
28 private final RopMethod method; field in class:LocalVariableExtractor
30 /** {@code non-null;} block list for the method */
40 * Extracts out all the local variable information from the given method.
42 * @param method {@code non-null;} the method to extract from
45 public static LocalVariableInfo extract(RopMethod method) { argument
46 LocalVariableExtractor lve = new LocalVariableExtractor(method);
51 * Constructs an instance. This method i
55 LocalVariableExtractor(RopMethod method) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DLocalVariableExtractor.java29 * a method. Stolen and retrofitted from
36 /** {@code non-null;} method being extracted from */
37 private final SsaMethod method; field in class:LocalVariableExtractor
39 /** {@code non-null;} block list for the method */
49 * Extracts out all the local variable information from the given method.
51 * @param method {@code non-null;} the method to extract from
54 public static LocalVariableInfo extract(SsaMethod method) { argument
55 LocalVariableExtractor lve = new LocalVariableExtractor(method);
60 * Constructs an instance. This method i
64 LocalVariableExtractor(SsaMethod method) argument
[all...]
/external/easymock/src/org/easymock/internal/
H A DLegacyMatcherProvider.java38 public ArgumentsMatcher getMatcher(Method method) { argument
39 if (!matchers.containsKey(method)) {
43 matchers.put(method, defaultMatcher);
45 return matchers.get(method);
58 public void setMatcher(Method method, ArgumentsMatcher matcher) { argument
59 if (matchers.containsKey(method) && matchers.get(method) != matcher) {
61 "for method "
62 + method.getName()
64 + (method
[all...]
H A DMockInvocationHandler.java32 public Object invoke(Object proxy, Method method, Object[] args) argument
39 new Invocation(proxy, method, args));
/external/guava/guava/src/com/google/common/eventbus/
H A DEventHandler.java24 * Wraps a single-argument 'handler' method on a specific object.
26 * <p>This class only verifies the suitability of the method and event type if
29 * <p>Two EventHandlers are equivalent when they refer to the same method on the
31 * method is registered more than once.
37 /** Object sporting the handler method. */
39 /** Handler method. */
40 private final Method method; field in class:EventHandler
43 * Creates a new EventHandler to wrap {@code method} on @{code target}.
45 * @param target object to which the method applies.
46 * @param method handle
48 EventHandler(Object target, Method method) argument
[all...]
/external/hamcrest/library/src/org/hamcrest/
H A DTypeSafeMatcher.java27 for (Method method : c.getDeclaredMethods()) {
28 if (isMatchesSafelyMethod(method)) {
29 return method.getParameterTypes()[0];
34 throw new Error("Cannot determine correct type for matchesSafely() method.");
37 private static boolean isMatchesSafelyMethod(Method method) { argument
38 return method.getName().equals("matchesSafely")
39 && method.getParameterTypes().length == 1
40 && !method.isSynthetic();
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DMainUtil.java32 Method method = methods[i];
33 if (method.getName().equals(command)) {
37 method.invoke(main, bindParameters(method, remaining));
56 private static Object[] bindParameters(Method method, String[] args) { argument
58 Class[] parameterTypes = method.getParameterTypes();
/external/javassist/src/main/javassist/bytecode/analysis/
H A DFramePrinter.java33 * instructions of a method.
64 private String getMethodString(CtMethod method) { argument
66 return Modifier.toString(method.getModifiers()) + " "
67 + method.getReturnType().getName() + " " + method.getName()
68 + Descriptor.toString(method.getSignature()) + ";";
75 * Prints the instructions and the frame states of the given method.
77 public void print(CtMethod method) { argument
78 stream.println("\n" + getMethodString(method));
79 MethodInfo info = method
[all...]
H A DSubroutineScanner.java30 * Discovers the subroutines in a method, and tracks all callers.
41 public Subroutine[] scan(MethodInfo method) throws BadBytecode { argument
42 CodeAttribute code = method.getCodeAttribute();
/external/javassist/src/main/javassist/compiler/ast/
H A DCallExpr.java26 private MemberResolver.Method method; // cached result of lookupMethod() field in class:CallExpr
30 method = null;
34 method = m;
38 return method;
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DErrorFinder.java50 private static void analyzeMethod(CtClass clazz, CtMethod method) { argument
51 String methodName = clazz.getName() + "." + method.getName() + method.getSignature();
57 analyzer.analyze(clazz, method.getMethodInfo2());

Completed in 293 milliseconds

1234567891011>>