Home
last modified time | relevance | path

Searched refs:_method (Results 1 – 21 of 21) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DAnnotatedMethod.java14 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/
Ddescriptors_test.py58 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/
DJasminVisitor.java114 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.py193 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.py494 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/
Dcommon_client.py26 self._method = method
53 if not self._method:
79 method=self._method) + paths_str + params_str
/external/grpc-grpc/src/objective-c/ProtoRPC/
DProtoMethod.m31 _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/
DBeanUtilTest.java107 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.py295 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/
Dclient.py247 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/
Dfunctools.py385 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/
DGrammar.md24 rpc\_decl = `rpc_service` ident `{` rpc\_method+ `}`
26 rpc\_method = ident `(` ident `)` `:` ident metadata `;`
/external/autotest/client/site_tests/power_SuspendStress/
Dpower_SuspendStress.py56 self._method = sys_power.idle_suspend if idle else sys_power.suspend_for
73 self.resultsdir, method=self._method,
/external/python/cpython2/Lib/
Dhttplib.py378 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/
Dxmlrunner.py31 (self._class, self._method) = test.id().rsplit(".", 1)
63 "method": self._method,
/external/python/cpython2/Doc/c-api/
Dmethod.rst3 .. _method-objects:
/external/python/cpython3/Doc/c-api/
Dmethod.rst44 .. _method-objects:
/external/ImageMagick/Magick++/lib/
DSTL.cpp307 : _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/
DBench.cpp746 COneMethodInfo _method; member
1073 RINOK(_method.SetCoderProps(scp, &reduceSize)); in Decode()
1260 encoder._method = method; in MethodBench()
/external/grpc-grpc/doc/
DPROTOCOL-HTTP2.md27 * **Path** → ":path" "/" Service-Name "/" {_method name_} # But see note below.
/external/ImageMagick/Magick++/lib/Magick++/
DSTL.h363 DistortMethod _method;