HomeSort by relevance Sort by last modified time
    Searched defs:method (Results 201 - 225 of 929) sorted by null

1 2 3 4 5 6 7 891011>>

  /dalvik/dx/src/com/android/dx/dex/file/
EncodedMethod.java 30 * Class that representats a method of a class.
34 /** {@code non-null;} constant for the method */
35 private final CstMethodRef method; field in class:EncodedMethod
38 * {@code null-ok;} code for the method, if the method is neither
46 * @param method {@code non-null;} constant for the method
48 * @param code {@code null-ok;} code for the method, if it is neither
53 public EncodedMethod(CstMethodRef method, int accessFlags,
57 if (method == null)
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableExtractor.java 28 * a method. Stolen and retrofitted from
35 /** {@code non-null;} method being extracted from */
36 private final SsaMethod method; field in class:LocalVariableExtractor
38 /** {@code non-null;} block list for the method */
48 * Extracts out all the local variable information from the given method.
50 * @param method {@code non-null;} the method to extract from
53 public static LocalVariableInfo extract(SsaMethod method) {
54 LocalVariableExtractor lve = new LocalVariableExtractor(method);
59 * Constructs an instance. This method is private. Use {@link #extract}
    [all...]
  /dalvik/tests/031-class-attributes/src/
ClassAttrs.java 7 import java.lang.reflect.Method;
96 Method meth;
98 System.out.println("method signature: "
117 Method method; local
120 method = AccessibleObject.class.getDeclaredMethod(
124 method = Class.class.getDeclaredMethod(
127 method.setAccessible(true);
135 return (String) method.invoke(obj);
  /dalvik/vm/
Debugger.h 32 struct Method;
71 const Method* method; member in struct:StepControl
91 Method* method; member in struct:DebugInvokeReq
102 /* condition variable to wait on while the method executes */
198 * Method and Field
263 void dvmDbgPostLocationEvent(const Method* method, int pcOffset,
291 const AddressSet *dvmAddressSetForLine(const Method* method, int line)
    [all...]
  /dalvik/vm/alloc/
Alloc.cpp 80 Method *method = dvmFindDirectMethodByDescriptor(klass, "start", "()V"); local
81 if (method == NULL) {
87 dvmCallMethod(self, method, NULL, &unusedResult);
99 Method* init;
  /external/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 91 String method="unknown"; local
95 method=caller.getMethodName();
98 logger.logp( level, cname, method, msg );
100 logger.logp( level, cname, method, msg, ex );
  /external/apache-http/src/org/apache/http/client/methods/
HttpRequestBase.java 86 String method = getMethod(); local
96 return new BasicRequestLine(method, uritext, ver);
  /external/apache-http/src/org/apache/http/impl/client/
RequestWrapper.java 65 private String method; field in class:RequestWrapper
79 this.method = ((HttpUriRequest) request).getMethod();
89 this.method = requestLine.getMethod();
102 return this.method;
105 public void setMethod(final String method) {
106 if (method == null) {
107 throw new IllegalArgumentException("Method name may not be null");
109 this.method = method;
134 String method = getMethod() local
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicLineFormatter.java 201 final String method = reqline.getMethod(); local
205 int len = method.length() + 1 + uri.length() + 1 +
209 buffer.append(method);
BasicLineParser.java 324 String method = buffer.substringTrimmed(i, blank); local
346 return createRequestLine(method, uri, ver);
358 * @param method the request method
364 protected RequestLine createRequestLine(final String method,
367 return new BasicRequestLine(method, uri, ver);
  /external/chromium/net/http/
http_auth_handler_digest.cc 43 // ?, auth | | req-method:req-uri |
45 // auth-int | | req-method:req-uri:MD5(req-entity-body) |
98 // method and only constructing when valid.
147 // Extract the request method and path -- the meaning of 'path' is overloaded
149 std::string method; local
151 GetRequestMethodAndPath(request, &method, &path);
153 *auth_token = AssembleCredentials(method, path,
300 std::string* method,
307 *method = "CONNECT";
310 *method = request->method
    [all...]
  /external/chromium/webkit/glue/
cpp_bound_class.cc 7 // Here's the control flow of a JS method getting forwarded to a class.
10 // CppBoundClass's Invoke() method.
13 // method.
92 // given method. Called by the JS runtime.
95 // If the given method is exposed by the C++ class associated with this
206 MethodList::const_iterator method = methods_.find(ident); local
208 if (method == methods_.end()) {
216 callback = (*method).second;
  /external/chromium_org/chrome/browser/resources/backloader/scripts/
background.js 66 if (msg.method == 'validate') {
68 method: 'validationResults',
  /external/chromium_org/chrome/test/chromedriver/chrome/
performance_logger_unittest.cc 35 Status TriggerEvent(const std::string& method) {
37 return listener_->OnEvent(this, method, empty_params);
46 const std::string& method,
49 sent_command_queue_.push_back(method);
127 std::string method; local
128 EXPECT_TRUE(message->GetString("message.method", &method));
129 EXPECT_EQ(expected_method, method);
  /external/chromium_org/chrome/test/ext_auto/auto_provider/
connection_handler.js 6 // stream, finding and executing appropriate extension API method.
32 'method': listenerMethod };
46 listenerDefinition.method);
52 // Finds appropriate method/event to invoke/register.
92 return {'method': segmentObject,
106 // Parses |command|, finds appropriate JS method runs it with |argsJson|.
107 // If the method is an event registration, it will register an event listener
108 // method and start sending data from its callback.
111 if (!target || !target.method) {
124 // Register listener method
    [all...]
  /external/chromium_org/content/browser/devtools/
devtools_protocol.h 30 std::string method() { return method_; } function in class:content::DevToolsProtocol::Message
37 Message(const std::string& method,
74 Command(int id, const std::string& method,
116 Notification(const std::string& method,
141 void SendNotification(const std::string& method,
164 const std::string& method, base::DictionaryValue* params);
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_database.cc 140 leveldb_env::MethodID method; local
143 leveldb_env::ParseMethodAndError(s.ToString().c_str(), &method, &error);
153 base::HistogramBase::kUmaTargetedHistogramFlag)->Add(method);
160 leveldb_env::MethodIDToString(method));
169 leveldb_env::MethodIDToString(method));
  /external/chromium_org/content/child/appcache/
web_application_cache_host_impl.cc 169 std::string method = request.httpMethod().utf8(); local
170 is_get_method_ = (method == appcache::kHttpGETMethod);
171 DCHECK(method == StringToUpperASCII(method));
  /external/chromium_org/dbus/
exported_object.cc 26 // Gets the absolute method name by concatenating the interface name and
27 // the method name. Used for building keys for method_table_ in
54 // Check if the method is already exported.
69 // Add the method callback to the method table.
199 // We don't support method calls without interface.
204 // Check if we know about the method.
209 // Don't know about the method.
210 LOG(WARNING) << "Unknown method: " << method_call->ToString();
216 // Post a task to run the method in the origin thread
225 MethodCall* method = method_call.get(); local
242 MethodCall* method = method_call.get(); local
    [all...]
  /external/chromium_org/extensions/common/matcher/
url_matcher_factory.cc 37 // the corresponding factory method to be called.
64 // Returns whether a factory method for the specified |pattern_type| (e.g.
81 const FactoryMethod& method = i->second; local
82 return (url_matcher_condition_factory->*method)(pattern_value);
  /external/chromium_org/net/http/
http_auth_handler_digest.cc 44 // ?, auth | | req-method:req-uri |
46 // auth-int | | req-method:req-uri:MD5(req-entity-body) |
99 // method and only constructing when valid.
145 // Extract the request method and path -- the meaning of 'path' is overloaded
147 std::string method; local
149 GetRequestMethodAndPath(request, &method, &path);
151 *auth_token = AssembleCredentials(method, path, *credentials,
300 std::string* method,
308 *method = "CONNECT";
311 *method = request->method
    [all...]
  /external/chromium_org/net/test/embedded_test_server/
http_request.h 37 HttpMethod method; member in struct:net::test_server::HttpRequest
  /external/chromium_org/net/tools/flip_server/
balsa_frame_test.cc 109 const char* method = NULL; local
123 SaveArg<2>(&method),
149 ASSERT_EQ("GET", StringPiece(method, method_length));
406 const char* method = NULL; local
420 SaveArg<2>(&method),
441 ASSERT_EQ("GET", StringPiece(method, method_length));
  /external/chromium_org/ppapi/shared_impl/
url_request_info_data.h 61 std::string method; member in struct:ppapi::URLRequestInfoData
  /external/chromium_org/ppapi/tests/
test_audio.cc 336 AudioCallbackMethod method = thiz->audio_callback_method_; local
337 (thiz->*method)(sample_buffer, buffer_size_in_bytes);

Completed in 1447 milliseconds

1 2 3 4 5 6 7 891011>>