Searched defs:method (Results 151 - 175 of 965) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_protocol.h25 std::string method() { return method_; } function in class:DevToolsProtocol::Message
29 Message(const std::string& method, base::DictionaryValue* params);
40 Command(int id, const std::string& method, base::DictionaryValue* params);
89 Notification(const std::string& method,
/external/chromium_org/chrome/test/base/
H A Dview_event_test_base.h39 // method.
115 // Creates a task that calls the specified method back. The specified
116 // method is called in such a way that if there are any test failures
119 base::Closure CreateEventTask(T* target, Method method) { argument
121 base::Bind(method, target));
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Ddom_tracker.cc37 const std::string& method,
39 if (method == "DOM.setChildNodes") {
50 } else if (method == "DOM.childNodeInserted") {
61 } else if (method == "DOM.documentUpdated") {
36 OnEvent(DevToolsClient* client, const std::string& method, const base::DictionaryValue& params) argument
H A Dgeolocation_override_manager_unittest.cc20 Command(const std::string& method, const base::DictionaryValue& params) argument
21 : method(method) {
28 method = command.method;
35 std::string method; member in struct:__anon5922::Command
46 const std::string& method,
49 commands_.push_back(Command(method, params));
58 ASSERT_EQ("Page.setGeolocationOverride", command.method);
H A Dheap_snapshot_taker_unittest.cc28 DummyDevToolsClient(const std::string& method, bool error_after_events) argument
29 : method_(method),
51 virtual Status SendCommand(const std::string& method,
54 disabled_ = method == "Debugger.disable";
55 if (method == method_ && !error_after_events_)
58 if (method == "HeapProfiler.takeHeapSnapshot") {
64 if (method == method_ && error_after_events_)
66 return StubDevToolsClient::SendCommand(method, params);
70 std::string method_; // Throw error on command with this method.
H A Dstub_devtools_client.cc28 Status StubDevToolsClient::SendCommand(const std::string& method, argument
31 return SendCommandAndGetResult(method, params, &result);
35 const std::string& method,
34 SendCommandAndGetResult( const std::string& method, const base::DictionaryValue& params, scoped_ptr<base::DictionaryValue>* result) argument
/external/chromium_org/content/common/service_worker/
H A Dservice_worker_types.cc14 const std::string& method,
19 method(method),
12 ServiceWorkerFetchRequest( const GURL& url, const std::string& method, const ServiceWorkerHeaderMap& headers, const GURL& referrer, bool is_reload) argument
/external/chromium_org/content/public/browser/
H A Dresource_request_details.h32 std::string method; member in struct:content::ResourceRequestDetails
/external/chromium_org/ppapi/proxy/
H A Denter_proxy.h77 // calling the given method. The method will generally be the one that sends
117 Method method)
119 factory.NewOptionalCallback(method)),
130 Method method,
133 factory.NewOptionalCallback(method, a)),
144 Method method,
148 factory.NewOptionalCallback(method, a, b)),
160 Method method,
165 factory.NewOptionalCallback(method,
114 EnterHostFromHostResourceForceCallback( const HostResource& host_resource, CallbackFactory& factory, Method method) argument
127 EnterHostFromHostResourceForceCallback( const HostResource& host_resource, CallbackFactory& factory, Method method, const A& a) argument
141 EnterHostFromHostResourceForceCallback( const HostResource& host_resource, CallbackFactory& factory, Method method, const A& a, const B& b) argument
157 EnterHostFromHostResourceForceCallback( const HostResource& host_resource, CallbackFactory& factory, Method method, const A& a, const B& b, const C& c) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DRequestTest.cpp63 const String method = "GET"; local
69 webRequest.setMethod(method);
77 EXPECT_EQ(method, request->method());
95 EXPECT_EQ(method, String(secondWebRequest.method()));
/external/chromium_org/third_party/WebKit/Source/platform/
H A DAsyncMethodRunner.h47 AsyncMethodRunner(TargetClass* object, TargetMethod method) argument
50 , m_method(method)
56 // Schedules to run the method asynchronously. Do nothing if it's already
57 // scheduled. If it's suspended, remember to schedule to run the method when
72 // If it's scheduled to run the method, cancel it and remember to schedule
88 // Resumes pending method run.
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_akey.c68 static STACK_OF(CONF_VALUE) *i2v_AUTHORITY_KEYID(X509V3_EXT_METHOD *method,
70 static AUTHORITY_KEYID *v2i_AUTHORITY_KEYID(X509V3_EXT_METHOD *method,
85 static STACK_OF(CONF_VALUE) *i2v_AUTHORITY_KEYID(X509V3_EXT_METHOD *method,
113 static AUTHORITY_KEYID *v2i_AUTHORITY_KEYID(X509V3_EXT_METHOD *method, argument
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DStdCatchBuilder.java38 /** {@code non-null;} method to build the list for */
39 private final RopMethod method; field in class:StdCatchBuilder
51 * @param method {@code non-null;} method to build the list for
55 public StdCatchBuilder(RopMethod method, int[] order, argument
57 if (method == null) {
58 throw new NullPointerException("method == null");
69 this.method = method;
76 return build(method, orde
122 build(RopMethod method, int[] order, BlockAddresses addresses) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMethodAnnotationStruct.java26 * Association of a method and its annotations.
30 /** {@code non-null;} the method in question */
31 private final CstMethodRef method; field in class:MethodAnnotationStruct
39 * @param method {@code non-null;} the method in question
42 public MethodAnnotationStruct(CstMethodRef method, argument
44 if (method == null) {
45 throw new NullPointerException("method == null");
52 this.method = method;
[all...]
H A DMethodIdsSection.java32 * {@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) { argument
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);
H A DParameterAnnotationStruct.java29 * Association of a method and its parameter annotations.
33 /** {@code non-null;} the method in question */
34 private final CstMethodRef method; field in class:ParameterAnnotationStruct
45 * @param method {@code non-null;} the method in question
48 public ParameterAnnotationStruct(CstMethodRef method, argument
50 if (method == null) {
51 throw new NullPointerException("method == null");
58 this.method = method;
[all...]
/external/droiddriver/src/com/google/android/droiddriver/util/
H A DLogs.java29 public static void call(Object self, String method, Object... args) { argument
33 String.format("Invoking %s.%s(%s)", self.getClass().getSimpleName(), method,
/external/emma/core/java12/com/vladium/jcd/cls/
H A DIMethodCollection.java32 * @param offset method offset [must be in [0, size()) range; input not checked]
45 * @param name method name [null or empty will result in no matches]
46 * @return array of method offsets in no particular order [never null; could be empty]
69 * that all data referenced in 'method' will eventually appear in the
72 * @param method new method descriptor [may not be null]
74 int add (Method_info method); argument
78 * checks are made. No method type compatibility checks are made. It is
80 * in 'method' will eventually appear in the constant pool.
82 * @param offset method offse
88 set(int offset, Method_info method) argument
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingTestCase.java62 * 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) { argument
89 String methodName = method.getName();
90 Class<?>[] parameterTypes = method
[all...]
/external/javassist/src/main/javassist/bytecode/annotation/
H A DArrayMemberValue.java53 Object getValue(ClassLoader cl, ClassPool cp, Method method) argument
58 "no array elements found: " + method.getName());
63 clazz = method.getReturnType().getComponentType();
66 + method.getName());
73 Array.set(a, i, values[i].getValue(cl, cp, method));
/external/junit/src/org/junit/internal/runners/
H A DTestMethod.java24 public TestMethod(Method method, TestClass testClass) { argument
25 fMethod= method;
/external/junit/src/org/junit/runners/model/
H A DNoGenericTypeParametersValidator.java14 NoGenericTypeParametersValidator(Method method) { argument
15 this.fMethod = method;
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DCallbackGenerator.java30 CodeEmitter beginMethod(ClassEmitter ce, MethodInfo method); argument
31 int getOriginalModifiers(MethodInfo method); argument
32 int getIndex(MethodInfo method); argument
34 Signature getImplSignature(MethodInfo method); argument
H A DCallbackHelper.java38 Method method = (Method)methods.get(i);
39 Object callback = getCallback(method);
52 methodMap.put(method, index);
57 abstract protected Object getCallback(Method method); argument
81 public int accept(Method method, List<Method> allMethods) argument
83 return ((Integer)methodMap.get(method)).intValue();
H A DInterfaceMaker.java29 * of method signatures.
48 * Add a method signature to the interface.
49 * @param sig the method signature to add to the interface
50 * @param exceptions an array of exception types to declare for the method
57 * Add a method signature to the interface. The method modifiers are ignored,
59 * @param method the method to add to the interface
61 public void add(Method method) { argument
62 add(ReflectUtils.getSignature(method),
[all...]

Completed in 7274 milliseconds

1234567891011>>