/external/boringssl/src/crypto/fipsmodule/ec/ |
D | ec.c | 337 EC_GROUP *ec_group_new(const EC_METHOD *meth) { in ec_group_new() argument 340 if (meth == NULL) { in ec_group_new() 345 if (meth->group_init == 0) { in ec_group_new() 357 ret->meth = meth; in ec_group_new() 360 if (!meth->group_init(ret)) { in ec_group_new() 375 if (ret->meth->group_set_curve == 0) { in EC_GROUP_new_curve_GFp() 379 if (!ret->meth->group_set_curve(ret, p, a, b, ctx)) { in EC_GROUP_new_curve_GFp() 432 !group->meth->group_set_curve(group, p, a, b, ctx)) { in ec_group_new_from_data() 507 if (group->meth->group_finish != 0) { in EC_GROUP_free() 508 group->meth->group_finish(group); in EC_GROUP_free() [all …]
|
D | oct.c | 254 if (group->meth != point->meth) { in EC_POINT_oct2point() 264 if (group->meth != point->meth) { in EC_POINT_point2oct() 307 if (group->meth->field_decode == 0) { in ec_GFp_simple_set_compressed_coordinates() 309 if (!group->meth->field_sqr(group, tmp2, x, ctx) || in ec_GFp_simple_set_compressed_coordinates() 310 !group->meth->field_mul(group, tmp1, tmp2, x, ctx)) { in ec_GFp_simple_set_compressed_coordinates() 328 if (group->meth->field_decode) { in ec_GFp_simple_set_compressed_coordinates() 329 if (!group->meth->field_decode(group, tmp2, &group->a, ctx) || in ec_GFp_simple_set_compressed_coordinates() 335 if (!group->meth->field_mul(group, tmp2, &group->a, x, ctx)) { in ec_GFp_simple_set_compressed_coordinates() 346 if (group->meth->field_decode) { in ec_GFp_simple_set_compressed_coordinates() 347 if (!group->meth->field_decode(group, tmp2, &group->b, ctx) || in ec_GFp_simple_set_compressed_coordinates() [all …]
|
D | simple.c | 155 if (group->meth->field_encode) { in ec_GFp_simple_group_set_curve() 156 if (!group->meth->field_encode(group, &group->a, tmp_a, ctx)) { in ec_GFp_simple_group_set_curve() 167 if (group->meth->field_encode && in ec_GFp_simple_group_set_curve() 168 !group->meth->field_encode(group, &group->b, &group->b, ctx)) { in ec_GFp_simple_group_set_curve() 178 if (group->meth->field_encode != NULL) { in ec_GFp_simple_group_set_curve() 179 if (!group->meth->field_encode(group, &group->one, BN_value_one(), ctx)) { in ec_GFp_simple_group_set_curve() 204 if (group->meth->field_decode) { in ec_GFp_simple_group_get_curve() 211 if (a != NULL && !group->meth->field_decode(group, a, &group->a, ctx)) { in ec_GFp_simple_group_get_curve() 214 if (b != NULL && !group->meth->field_decode(group, b, &group->b, ctx)) { in ec_GFp_simple_group_get_curve() 284 if (group->meth->field_encode) { in set_Jprojective_coordinate_GFp() [all …]
|
/external/python/cpython2/Doc/library/ |
D | fl.rst | 170 All the :meth:`add_\*` methods return a Python object representing the FORMS 252 Add a clock object to the form. --- Method: :meth:`get_clock`. 257 Add a button object to the form. --- Methods: :meth:`get_button`, 258 :meth:`set_button`. 263 Add a lightbutton object to the form. --- Methods: :meth:`get_button`, 264 :meth:`set_button`. 269 Add a roundbutton object to the form. --- Methods: :meth:`get_button`, 270 :meth:`set_button`. 275 Add a slider object to the form. --- Methods: :meth:`set_slider_value`, 276 :meth:`get_slider_value`, :meth:`set_slider_bounds`, :meth:`get_slider_bounds`, [all …]
|
D | email.rst | 118 :meth:`Generator.__call__`, :meth:`Message.get_type`, 119 :meth:`Message.get_main_type`, :meth:`Message.get_subtype`. 142 :meth:`Message.add_payload` method, the :func:`Utils.dump_address_pair` 146 :meth:`Generator.__call__`, :meth:`Message.get_type`, 147 :meth:`Message.get_main_type`, :meth:`Message.get_subtype`, and the *strict* 172 :meth:`~email.message.Message.is_multipart` returned false, 173 :meth:`~email.message.Message.get_payload` was not a list object, but a 179 :meth:`~email.message.Message.is_multipart`, and 180 :meth:`~email.message.Message.get_payload` returns a list containing a single 185 :meth:`~email.message.Message.get_payload`, you should be fine. You just need [all …]
|
D | cmd.rst | 67 has a method :meth:`do_foo`. As a special case, a line beginning with the 68 character ``'?'`` is dispatched to the method :meth:`do_help`. As another 70 method :meth:`do_shell` (if such a method is defined). 72 This method will return when the :meth:`postcmd` method returns a true value. 73 The *stop* argument to :meth:`postcmd` is the return value from the command's 74 corresponding :meth:`do_\*` method. 77 completing of commands args is done by calling :meth:`complete_foo` with 84 All subclasses of :class:`Cmd` inherit a predefined :meth:`do_help`. This 86 :meth:`help_bar`, and if that is not present, prints the docstring of 87 :meth:`do_bar`, if available. With no argument, :meth:`do_help` lists all [all …]
|
D | threading.rst | 89 that can be set to true with the :meth:`~Event.set` method and reset to false 90 with the :meth:`clear` method. The :meth:`wait` method blocks until the flag 136 counter representing the number of :meth:`release` calls minus the number of 137 :meth:`acquire` calls, plus an initial value. The :meth:`acquire` method blocks 176 :meth:`~Thread.run` method is called. 187 :meth:`~Thread.run` method is called. 239 constructor, or by overriding the :meth:`run` method in a subclass. No other 241 other words, *only* override the :meth:`__init__` and :meth:`run` methods of 245 thread's :meth:`start` method. This invokes the :meth:`run` method in a 249 stops being alive when its :meth:`run` method terminates -- either normally, or [all …]
|
D | 2to3.rst | 166 ``failUnlessEqual(a, b)`` :meth:`assertEqual(a, b) 168 ``assertEquals(a, b)`` :meth:`assertEqual(a, b) 170 ``failIfEqual(a, b)`` :meth:`assertNotEqual(a, b) 172 ``assertNotEquals(a, b)`` :meth:`assertNotEqual(a, b) 174 ``failUnless(a)`` :meth:`assertTrue(a) 176 ``assert_(a)`` :meth:`assertTrue(a) 178 ``failIf(a)`` :meth:`assertFalse(a) 180 ``failUnlessRaises(exc, cal)`` :meth:`assertRaises(exc, cal) 182 ``failUnlessAlmostEqual(a, b)`` :meth:`assertAlmostEqual(a, b) 184 ``assertAlmostEquals(a, b)`` :meth:`assertAlmostEqual(a, b) [all …]
|
D | sgmllib.rst | 71 :meth:`close` is called. 79 :meth:`close`. 92 This method is called to handle start tags for which either a :meth:`start_tag` 93 or :meth:`do_tag` method has been defined. The *tag* argument is the name of 117 This method is called to handle endtags for which an :meth:`end_tag` method has 120 support semantic interpretation of the end tag. If no :meth:`end_tag` method is 134 The base implementation uses :meth:`convert_charref` to convert the reference to 135 a string. If that method returns a string, it is passed to :meth:`handle_data`, 139 Use :meth:`convert_charref` instead of hard-coding the conversion. 147 :meth:`convert_codepoint` method. If *ref* is invalid or out of range, this [all …]
|
D | sets.rst | 31 except for :meth:`__hash__`. For advanced applications requiring a hash method, 32 the :class:`ImmutableSet` class adds a :meth:`__hash__` method but omits methods 39 that the element defines both :meth:`__eq__` and :meth:`__hash__`. As a result, 62 Because :class:`ImmutableSet` objects provide a :meth:`__hash__` method, they 109 Note, the non-operator versions of :meth:`union`, :meth:`intersection`, 110 :meth:`difference`, and :meth:`symmetric_difference` will accept any iterable as 130 or ``a>b``. Accordingly, sets do not implement the :meth:`__cmp__` method. 133 the :meth:`list.sort` method is undefined for lists of sets. 178 Note, the non-operator versions of :meth:`update`, :meth:`intersection_update`, 179 :meth:`difference_update`, and :meth:`symmetric_difference_update` will accept [all …]
|
D | htmllib.rst | 39 * The interface to feed data to an instance is through the :meth:`feed` method, 44 force processing of all unprocessed data, call the :meth:`close` method. 52 and define methods called :meth:`start_tag`, :meth:`end_tag`, or :meth:`do_tag`. 53 The parser will call these at appropriate moments: :meth:`start_tag` or 54 :meth:`do_tag` is called when an opening tag of the form ``<tag ...>`` is 55 encountered; :meth:`end_tag` is called when a closing tag of the form ``<tag>`` 57 ``<H1>`` ... ``</H1>``, the class should define the :meth:`start_tag` method; if 59 :meth:`do_tag` method. 116 The default value is false. This affects the operation of :meth:`handle_data` 117 and :meth:`save_end`. [all …]
|
D | xdrlib.rst | 67 :meth:`pack_uint`, :meth:`pack_int`, :meth:`pack_enum`, :meth:`pack_bool`, 68 :meth:`pack_uhyper`, and :meth:`pack_hyper`. 92 Packs a fixed length opaque data stream, similarly to :meth:`pack_fstring`. 99 :meth:`pack_fstring`. 104 Packs a variable length opaque data string, similarly to :meth:`pack_string`. 109 Packs a variable length byte stream, similarly to :meth:`pack_string`. 142 :meth:`pack_farray` above. 166 using :meth:`get_position` and :meth:`set_position`. 192 :meth:`unpack_float`. 206 :meth:`unpack_fstring`. [all …]
|
/external/python/cpython2/Lib/compiler/ |
D | visitor.py | 45 meth = self._cache.get(klass, None) 46 if meth is None: 48 meth = getattr(self.visitor, 'visit' + className, self.default) 49 self._cache[klass] = meth 57 return meth(node, *args) 76 meth = self._cache.get(node.__class__, None) 78 if meth is None: 79 meth = getattr(self.visitor, 'visit' + className, 0) 80 self._cache[node.__class__] = meth 82 print "dispatch", className, (meth and meth.__name__ or '') [all …]
|
/external/clang/test/Index/ |
D | cursor-dynamic-call.mm | 3 virtual void meth(); field 8 this->meth(); 9 SB::meth(); 14 -(void)meth; method 25 [self meth]; 26 [super meth]; 34 ss->meth(); 35 [is meth]; 64 // CHECK: 8:11 MemberRefExpr=meth:3:16 {{.*}} Dynamic-call 66 // CHECK: 25:3 ObjCMessageExpr=meth:14:8 {{.*}} Dynamic-call Receiver-type=ObjCObjectPointer [all …]
|
D | overrides.m | 43 -(void)meth; method in cat 50 -(void)meth { } method 61 -(void)meth; method 72 -(void)meth; method in readwrite 88 -(void)meth; method 92 -(void)meth; method in cat 96 -(void)meth{} method 107 // CHECK: overrides.m:50:8: ObjCInstanceMethodDecl=meth:50:8 (Definition) [Overrides @43:8] 114 // CHECK: overrides.m:72:8: ObjCInstanceMethodDecl=meth:72:8 [Overrides @61:8] Extent=[72:1 - 72:13] 117 // CHECK: overrides.m:92:8: ObjCInstanceMethodDecl=meth:92:8 Extent=[92:1 - 92:13] [all …]
|
D | annotate-macro-args.m | 12 // CHECK1: Punctuation: "[" [9:9 - 9:10] ObjCMessageExpr=meth:2:8 14 // CHECK1: Identifier: "meth" [9:18 - 9:22] ObjCMessageExpr=meth:2:8 15 // CHECK1: Punctuation: "]" [9:22 - 9:23] ObjCMessageExpr=meth:2:8 20 // CHECK2: Identifier: "meth" [15:10 - 15:14] ObjCMessageExpr=meth:2:8
|
/external/clang/test/SemaObjC/ |
D | method-undefined-warn-1.m | 4 - (void) meth; method 5 - (void) meth : (int) arg1; 14 - (void) meth {} method 15 - (void) meth : (int) arg2{} 20 - (void) meth; method 21 - (void) meth : (int) arg1; 30 - (void) meth {} method 31 - (void) meth : (int) arg2{} 36 - (void) meth; method 37 - (void) meth : (int) arg1; [all …]
|
D | warn-category-method-deprecated.m | 5 - (void)meth; method 12 - (void)meth __attribute__((deprecated)); // expected-note {{'meth' has been explicitly marked depr… 16 [i meth]; // expected-warning {{'meth' is deprecated}}
|
D | check-dup-decl-methods-1.m | 4 - (int) meth; method 11 - (int) meth; // expected-note {{previous declaration is here}} method 12 - (int*) meth; // expected-error {{duplicate declaration of method 'meth'}} method 35 - (int) meth; // expected-note {{previous declaration is here}} method 36 - (int*) meth; // expected-error {{duplicate declaration of method 'meth'}} method
|
/external/python/cpython2/Doc/c-api/ |
D | method.rst | 36 .. c:function:: PyObject* PyMethod_Class(PyObject *meth) 38 Return the class object from which the method *meth* was created; if this was 42 .. c:function:: PyObject* PyMethod_GET_CLASS(PyObject *meth) 47 .. c:function:: PyObject* PyMethod_Function(PyObject *meth) 49 Return the function object associated with the method *meth*. 52 .. c:function:: PyObject* PyMethod_GET_FUNCTION(PyObject *meth) 57 .. c:function:: PyObject* PyMethod_Self(PyObject *meth) 59 Return the instance associated with the method *meth* if it is bound, otherwise 63 .. c:function:: PyObject* PyMethod_GET_SELF(PyObject *meth)
|
/external/python/cpython2/Include/ |
D | classobject.h | 69 #define PyMethod_GET_FUNCTION(meth) \ argument 70 (((PyMethodObject *)meth) -> im_func) 71 #define PyMethod_GET_SELF(meth) \ argument 72 (((PyMethodObject *)meth) -> im_self) 73 #define PyMethod_GET_CLASS(meth) \ argument 74 (((PyMethodObject *)meth) -> im_class)
|
/external/boringssl/src/crypto/fipsmodule/rsa/ |
D | rsa.c | 93 rsa->meth = ENGINE_get_RSA_method(engine); in RSA_new_method() 96 if (rsa->meth == NULL) { in RSA_new_method() 97 rsa->meth = (RSA_METHOD *) RSA_default_method(); in RSA_new_method() 99 METHOD_ref(rsa->meth); in RSA_new_method() 102 rsa->flags = rsa->meth->flags; in RSA_new_method() 106 if (rsa->meth->init && !rsa->meth->init(rsa)) { in RSA_new_method() 109 METHOD_unref(rsa->meth); in RSA_new_method() 128 if (rsa->meth->finish) { in RSA_free() 129 rsa->meth->finish(rsa); in RSA_free() 131 METHOD_unref(rsa->meth); in RSA_free() [all …]
|
/external/boringssl/src/crypto/x509/ |
D | x_crl.c | 237 crl->meth = default_crl_method; in crl_cb() 295 if (crl->meth->crl_init) { in crl_cb() 296 if (crl->meth->crl_init(crl) == 0) in crl_cb() 304 if (crl->meth && crl->meth->crl_free) { in crl_cb() 305 if (!crl->meth->crl_free(crl)) in crl_cb() 394 if (crl->meth->crl_verify) in X509_CRL_verify() 395 return crl->meth->crl_verify(crl, r); in X509_CRL_verify() 402 if (crl->meth->crl_lookup) in X509_CRL_get0_by_serial() 403 return crl->meth->crl_lookup(crl, ret, serial, NULL); in X509_CRL_get0_by_serial() 409 if (crl->meth->crl_lookup) in X509_CRL_get0_by_cert() [all …]
|
/external/boringssl/src/crypto/ |
D | ex_data.c | 149 if (ex_data_class->meth == NULL) { in CRYPTO_get_ex_new_index() 150 ex_data_class->meth = sk_CRYPTO_EX_DATA_FUNCS_new_null(); in CRYPTO_get_ex_new_index() 153 if (ex_data_class->meth == NULL || in CRYPTO_get_ex_new_index() 154 !sk_CRYPTO_EX_DATA_FUNCS_push(ex_data_class->meth, funcs)) { in CRYPTO_get_ex_new_index() 160 *out_index = sk_CRYPTO_EX_DATA_FUNCS_num(ex_data_class->meth) - 1 + in CRYPTO_get_ex_new_index() 215 n = sk_CRYPTO_EX_DATA_FUNCS_num(ex_data_class->meth); in get_func_pointers() 217 *out = sk_CRYPTO_EX_DATA_FUNCS_dup(ex_data_class->meth); in get_func_pointers()
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 81 usually a :meth:`close` method. Programs are strongly recommended to explicitly 339 other encodings are possible through the Unicode method :meth:`encode` and the 412 :meth:`~set.add`. 642 contains a definition for a function :meth:`f`, and ``x`` is an instance of 669 :meth:`~iterator.next` method will cause the function to execute until 706 class types that override :meth:`__new__`. The arguments of the call are passed 707 to :meth:`__new__` and, in the typical case, to :meth:`__init__` to initialize 720 the class's :meth:`__init__` method if it has one. Any arguments are passed on 721 to the :meth:`__init__` method. If there is no :meth:`__init__` method, the 726 class has a :meth:`__call__` method; ``x(arguments)`` is a shorthand for [all …]
|