/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/ |
D | AnnotatedMethod.java | 14 final protected transient Method _method; field in AnnotatedMethod 41 _method = method; in AnnotatedMethod() 51 _method = null; in AnnotatedMethod() 57 return new AnnotatedMethod(_typeContext, _method, ann, _paramAnnotations); in withAnnotations() 62 public Method getAnnotated() { return _method; } in getAnnotated() 65 public int getModifiers() { return _method.getModifiers(); } in getModifiers() 68 public String getName() { return _method.getName(); } in getName() 77 return _typeContext.resolveType(_method.getGenericReturnType()); in getType() 87 return _method.getReturnType(); in getRawType() 98 return _method.invoke(null); in call() [all …]
|
/external/pigweed/pw_rpc/py/tests/ |
D | descriptors_test.py | 58 self._method = service.methods['SomeUnary'] 62 self._method.get_request(self._method.request_type(), 67 self._method.get_request('a str!', {}) 70 msg = self._method.response_type() 72 self._method.get_request(msg, {}) 76 self._method.request_type.DESCRIPTOR.file.pool).GetPrototype( 77 self._method.request_type.DESCRIPTOR) 84 self.assertIs(msg.DESCRIPTOR, self._method.request_type.DESCRIPTOR) 86 result = self._method.get_request(msg, {})
|
/external/apache-commons-bcel/src/examples/ |
D | JasminVisitor.java | 114 private Method _method; field in JasminVisitor 122 Attribute[] attributes = _method.getAttributes(); in printEndMethod() 136 if (_method != null) { in visitSynthetic() 143 this._method = method; // Remember for use in subsequent visitXXX calls in visitMethod() 145 out.println("\n.method " + Utility.accessToString(_method.getAccessFlags()) + in visitMethod() 146 " " + _method.getName() + _method.getSignature()); in visitMethod() 148 Attribute[] attributes = _method.getAttributes(); in visitMethod() 172 MethodGen mg = new MethodGen(_method, class_name, cp); in visitCode()
|
/external/grpc-grpc/src/python/grpcio/grpc/ |
D | _interceptor.py | 193 self._method = method 206 client_call_details = _ClientCallDetails(self._method, timeout, 236 client_call_details = _ClientCallDetails(self._method, timeout, 259 self._method = method 263 client_call_details = _ClientCallDetails(self._method, timeout, 286 self._method = method 306 client_call_details = _ClientCallDetails(self._method, timeout, 344 client_call_details = _ClientCallDetails(self._method, timeout, 367 self._method = method 375 client_call_details = _ClientCallDetails(self._method, timeout,
|
D | _channel.py | 494 self._method = method 522 0, self._method, None, deadline, metadata, None 547 0, self._method, None, deadline, metadata, None 560 self._method = method 583 0, self._method, None, deadline, metadata, None 596 self._method = method 604 0, self._method, None, deadline, metadata, None 645 0, self._method, None, deadline, metadata, None 659 self._method = method 679 0, self._method, None, deadline, metadata, None
|
/external/autotest/client/common_lib/cros/fake_device_server/client_lib/ |
D | common_client.py | 26 self._method = method 53 if not self._method: 79 method=self._method) + paths_str + params_str
|
/external/grpc-grpc/src/objective-c/ProtoRPC/ |
D | ProtoMethod.m | 31 _method = [method copy]; 38 return [NSString stringWithFormat:@"/%@.%@/%@", _package, _service, _method]; 40 return [NSString stringWithFormat:@"/%@/%@", _service, _method];
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/util/ |
D | BeanUtilTest.java | 107 AnnotatedMethod m = _method(IsGetters.class, name); in _testIsGetter() 121 AnnotatedMethod m = _method(Getters.class, name); in _testOkNameForGetter() 136 AnnotatedMethod m = _method(Setters.class, name); in _testOkNameForSetter() 144 …private AnnotatedMethod _method(Class<?> cls, String name, Class<?>...parameterTypes) throws Excep… in _method() method in BeanUtilTest
|
/external/grpc-grpc/src/python/grpcio/grpc/beta/ |
D | _client_adaptations.py | 295 self._method = method 307 self._channel, self._group, self._method, timeout, with_call, 313 self._channel, self._group, self._method, timeout, protocol_options, 333 self._method = method 340 self._channel, self._group, self._method, timeout, protocol_options, 360 self._method = method 372 self._channel, self._group, self._method, timeout, with_call, 383 self._channel, self._group, self._method, timeout, protocol_options, 402 self._method = method 413 self._channel, self._group, self._method, timeout, protocol_options,
|
/external/python/cpython3/Lib/http/ |
D | client.py | 247 self._method = method 369 self._method == "HEAD"): 451 if self._method == "HEAD": 487 if self._method == "HEAD": 629 if self.fp is None or self._method == "HEAD": 645 if self.fp is None or self._method == "HEAD": 652 if self.fp is None or self._method == "HEAD": 828 self._method = None 899 response = self.response_class(self.sock, method=self._method) 1097 self._method = method [all …]
|
/external/python/cpython3/Lib/ |
D | functools.py | 385 def _method(cls_or_self, /, *args, **keywords): function 388 _method.__isabstractmethod__ = self.__isabstractmethod__ 389 _method._partialmethod = self 390 return _method 912 def _method(*args, **kwargs): function 916 _method.__isabstractmethod__ = self.__isabstractmethod__ 917 _method.register = self.register 918 update_wrapper(_method, self.func) 919 return _method
|
/external/flatbuffers/docs/source/ |
D | Grammar.md | 24 rpc\_decl = `rpc_service` ident `{` rpc\_method+ `}` 26 rpc\_method = ident `(` ident `)` `:` ident metadata `;`
|
/external/autotest/client/site_tests/power_SuspendStress/ |
D | power_SuspendStress.py | 56 self._method = sys_power.idle_suspend if idle else sys_power.suspend_for 73 self.resultsdir, method=self._method,
|
/external/python/cpython2/Lib/ |
D | httplib.py | 378 self._method = method 506 self._method == 'HEAD'): 568 if self._method == 'HEAD': 729 self._method = None 795 method = self._method) 927 self._method = method 1111 kwds = {"strict":self.strict, "method":self._method}
|
/external/antlr/runtime/Python/ |
D | xmlrunner.py | 31 (self._class, self._method) = test.id().rsplit(".", 1) 63 "method": self._method,
|
/external/python/cpython2/Doc/c-api/ |
D | method.rst | 3 .. _method-objects:
|
/external/python/cpython3/Doc/c-api/ |
D | method.rst | 44 .. _method-objects:
|
/external/ImageMagick/Magick++/lib/ |
D | STL.cpp | 307 : _method ( method_ ), in distortImage() 316 : _method ( method_ ), in distortImage() 324 image_.distort( _method, _number_arguments, _arguments, _bestfit ); in operator ()()
|
/external/lzma/CPP/7zip/UI/Common/ |
D | Bench.cpp | 746 COneMethodInfo _method; member 1073 RINOK(_method.SetCoderProps(scp, &reduceSize)); in Decode() 1260 encoder._method = method; in MethodBench()
|
/external/grpc-grpc/doc/ |
D | PROTOCOL-HTTP2.md | 27 * **Path** → ":path" "/" Service-Name "/" {_method name_} # But see note below.
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | STL.h | 363 DistortMethod _method;
|