Searched defs:method (Results 251 - 275 of 965) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DFetchUtils.cpp46 m_fixedNames.add("access-control-request-method");
74 bool FetchUtils::isSimpleMethod(const String& method) argument
76 // http://fetch.spec.whatwg.org/#simple-method
77 // "A simple method is a method that is `GET`, `HEAD`, or `POST`."
78 return method == "GET" || method == "HEAD" || method == "POST";
105 bool FetchUtils::isSimpleRequest(const String& method, const HTTPHeaderMap& headerMap) argument
107 if (!isSimpleMethod(method))
121 isForbiddenMethod(const String& method) argument
155 isSimpleOrForbiddenRequest(const String& method, const HTTPHeaderMap& headerMap) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTextPathElement.h61 SVGAnimatedEnumeration<SVGTextPathMethodType>* method() { return m_method.get(); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DHTTPRequest.h53 void setRequestMethod(const String& method) { m_requestMethod = method; } argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFormElement.cpp61 WebString WebFormElement::method() const function in class:blink::WebFormElement
63 return constUnwrap<HTMLFormElement>()->method();
/external/chromium_org/third_party/boringssl/src/crypto/engine/
H A Dengine.c50 /* set_method takes a pointer to a method and its given size and sets
53 static int set_method(void **out_member, const void *method, size_t method_size, argument
65 memcpy(copy, method, method_size);
73 int ENGINE_set_DH_method(ENGINE *engine, const DH_METHOD *method, argument
75 return set_method((void **)&engine->dh_method, method, method_size,
83 int ENGINE_set_DSA_method(ENGINE *engine, const DSA_METHOD *method, argument
85 return set_method((void **)&engine->dsa_method, method, method_size,
93 int ENGINE_set_RSA_method(ENGINE *engine, const RSA_METHOD *method, argument
95 return set_method((void **)&engine->rsa_method, method, method_size,
103 int ENGINE_set_ECDSA_method(ENGINE *engine, const ECDSA_METHOD *method, argument
114 struct openssl_method_common_st *method = method_in; local
124 struct openssl_method_common_st *method = method_in; local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_pci.c46 static int i2r_pci(X509V3_EXT_METHOD *method, PROXY_CERT_INFO_EXTENSION *ext,
48 static PROXY_CERT_INFO_EXTENSION *r2i_pci(X509V3_EXT_METHOD *method,
61 static int i2r_pci(X509V3_EXT_METHOD *method, PROXY_CERT_INFO_EXTENSION *pci, argument
247 static PROXY_CERT_INFO_EXTENSION *r2i_pci(X509V3_EXT_METHOD *method, argument
H A Dv3_prn.c100 const X509V3_EXT_METHOD *method; local
104 if(!(method = X509V3_EXT_get(ext)))
107 if(method->it) ext_str = ASN1_item_d2i(NULL, &p, ext->value->length, ASN1_ITEM_ptr(method->it));
108 else ext_str = method->d2i(NULL, &p, ext->value->length);
112 if(method->i2s) {
113 if(!(value = method->i2s(method, ext_str))) {
118 } else if(method->i2v) {
119 if(!(nval = method
[all...]
/external/chromium_org/third_party/libjpeg_turbo/
H A Djddctmgr.c37 * The multiplier table contents are IDCT-method-dependent. To support
38 * application changes in IDCT method between scans, we can remake the
52 /* This array contains the IDCT method code that each multiplier table
100 int method = 0; local
111 method = JDCT_ISLOW; /* jidctred uses islow-style table */
118 method = JDCT_ISLOW; /* jidctred uses islow-style table */
122 method = JDCT_ISLOW; /* jidctint uses islow-style table */
129 method = JDCT_ISLOW; /* jidctred uses islow-style table */
133 method = JDCT_ISLOW; /* jidctint uses islow-style table */
137 method
[all...]
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dcallback.h57 ConstMethodCallback4(const T* instance, MethodType method) argument
59 method_(method) {}
81 R (T::*method)(A1, A2, A3, A4) const) {
82 return new ConstMethodCallback4<T, R, A1, A2, A3, A4>(instance, method);
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dvp8_boolcoder_test.cc59 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
111 << " method: " << method; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_picklpf.c133 LPF_PICK_METHOD method) {
140 if (method == LPF_PICK_MINIMAL_LPF && lf->filter_level) {
142 } else if (method >= LPF_PICK_FROM_Q) {
154 method == LPF_PICK_FROM_SUBIMAGE);
132 vp9_pick_filter_level(const YV12_BUFFER_CONFIG *sd, VP9_COMP *cpi, LPF_PICK_METHOD method) argument
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_context.h61 /** Used to signal when transitioning from one kind of drawing method
130 vbo_draw_method(struct vbo_context *vbo, enum draw_method method) argument
132 if (vbo->last_draw_method != method) {
135 switch (method) {
150 vbo->last_draw_method = method;
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_service.cc93 "void CallMethod(const ::google::protobuf::MethodDescriptor* method,\n"
99 " const ::google::protobuf::MethodDescriptor* method) const;\n"
101 " const ::google::protobuf::MethodDescriptor* method) const;\n");
145 const MethodDescriptor* method = descriptor_->method(i); local
147 sub_vars["name"] = method->name();
148 sub_vars["input_type"] = ClassName(method->input_type(), true);
149 sub_vars["output_type"] = ClassName(method->output_type(), true);
214 const MethodDescriptor* method = descriptor_->method( local
245 const MethodDescriptor* method = descriptor_->method(i); local
288 const MethodDescriptor* method = descriptor_->method(i); local
312 const MethodDescriptor* method = descriptor_->method(i); local
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_service.cc128 const MethodDescriptor* method = descriptor_->method(i); local
130 GenerateMethodSignature(printer, method, IS_CONCRETE);
133 " impl.$method$(controller, request, done);\n"
135 "method", UnderscoresToCamelCase(method));
167 const MethodDescriptor* method = descriptor_->method(i); local
168 WriteMethodDocComment(printer, method);
169 GenerateMethodSignature(printer, method, IS_ABSTRAC
193 const MethodDescriptor* method = descriptor_->method(i); local
238 const MethodDescriptor* method = descriptor_->method(i); local
283 const MethodDescriptor* method = descriptor_->method(i); local
330 const MethodDescriptor* method = descriptor_->method(i); local
373 const MethodDescriptor* method = descriptor_->method(i); local
395 const MethodDescriptor* method = descriptor_->method(i); local
420 GenerateMethodSignature(io::Printer* printer, const MethodDescriptor* method, IsAbstract is_abstract) argument
435 GenerateBlockingMethodSignature( io::Printer* printer, const MethodDescriptor* method) argument
[all...]
/external/chromium_org/ui/base/l10n/
H A Dl10n_util_collator.h20 // Used by SortStringsUsingMethod. Invokes a method on the objects passed to
28 StringMethodComparatorWithCollator(icu::Collator* collator, Method method) argument
30 method_(method) { }
43 // Used by SortStringsUsingMethod. Invokes a method on the objects passed to
51 explicit StringMethodComparator(Method method) : method_(method) { } argument
62 // Sorts the objects in |elements| using the method |method|, which must return
68 Method method) {
74 StringMethodComparator<T, Method>(method));
66 SortStringsUsingMethod(const std::string& locale, std::vector<T*>* elements, Method method) argument
[all...]
/external/clang/test/CodeGenCXX/
H A D2007-01-06-PtrMethodInit.cpp56 GenericHandler method; member in struct:EventDispatchData
H A Dmangle-ms-template-callback.cpp58 void method() {} function in class:Z
H A Dtemplate-linkage.cpp62 mptr method = &Outer::Get<local>; local
/external/clang/test/Misc/
H A Ddiag-aka-types.cpp35 static void method(struct data *) {} function in struct:ns::str
46 helper(&ns::str::method); // expected-error{{no matching function for call to 'helper'}}
/external/clang/test/SemaCXX/
H A Dwarn-unused-value.cpp39 void method() const { function in struct:test2::std::basic_string
46 str.method(); // expected-note {{in instantiation of member function}}
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DEncodedMethod.java31 * Class that representats a method of a class.
35 /** {@code non-null;} constant for the method */
36 private final CstMethodRef method; field in class:EncodedMethod
39 * {@code null-ok;} code for the method, if the method is neither
47 * @param method {@code non-null;} constant for the method
49 * @param code {@code null-ok;} code for the method, if it is neither
54 public EncodedMethod(CstMethodRef method, int accessFlags, argument
58 if (method
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalVariableInfo.java30 /** {@code >= 0;} the register count for the method */
36 * max size for the method
53 * @param method {@code non-null;} the method being represented by this instance
55 public LocalVariableInfo(RopMethod method) { argument
56 if (method == null) {
57 throw new NullPointerException("method == null");
60 BasicBlockList blocks = method.getBlocks();
183 * method, since the spec that is stored here should always have a
239 * Helper method, t
[all...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DLocalVariableInfo.java32 /** {@code >= 0;} the register count for the method */
38 * max size for the method
55 * @param method {@code non-null;} the method being represented by this instance
57 public LocalVariableInfo(SsaMethod method) { argument
58 if (method == null) {
59 throw new NullPointerException("method == null");
62 List<SsaBasicBlock> blocks = method.getBlocks();
64 this.regCount = method.getRegCount();
180 * method, sinc
[all...]
/external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
H A DInvocationHandlerAdapter.java30 * Handles proxy method invocations to dexmaker's InvocationHandler by calling
41 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { argument
42 if (objectMethodsGuru.isEqualsMethod(method)) {
44 } else if (objectMethodsGuru.isHashCodeMethod(method)) {
48 ProxiedMethod proxiedMethod = new ProxiedMethod(method);
62 private final Method method; field in class:InvocationHandlerAdapter.ProxiedMethod
64 public ProxiedMethod(Method method) { argument
65 this.method = method;
69 return method
[all...]
/external/doclava/src/com/google/doclava/
H A DDoclavaDiff.java160 for (MethodInfo method : methods) {
161 if (agreeOnMethod(qualifiedClassName, method, sites)) {
166 data.setValue(methodBase + ".signature", method.prettySignature());
176 if (siteMethods.containsKey(method.getHashableName())) {
178 data.setValue(siteBase + ".link", site.linkFor(method.htmlPage()));
278 for (MethodInfo method : methods) {
279 if (!agreeOnMethod(qualifiedClassName, method, sites)) {
287 * Returns true if the list of sites all contain the given method.
289 private boolean agreeOnMethod(String qualifiedClassName, MethodInfo method, argument
298 if (!siteClass.supportsMethod(method)) {
[all...]

Completed in 566 milliseconds

<<11121314151617181920>>