/external/python/cpython2/Tools/pybench/ |
D | Unicode.py | 473 bidirectional = unicodedata.bidirectional 486 bidirectional(c) 495 bidirectional(c) 504 bidirectional(c) 513 bidirectional(c) 522 bidirectional(c) 535 bidirectional = unicodedata.bidirectional
|
/external/python/cpython3/Lib/test/ |
D | test_unicodedata.py | 96 self.db.bidirectional(char), 153 self.assertEqual(self.db.bidirectional('\uFFFE'), '') 154 self.assertEqual(self.db.bidirectional(' '), 'WS') 155 self.assertEqual(self.db.bidirectional('A'), 'L') 156 self.assertEqual(self.db.bidirectional('\U00020000'), 'L') 158 self.assertRaises(TypeError, self.db.bidirectional) 159 self.assertRaises(TypeError, self.db.bidirectional, 'xx')
|
/external/python/cpython2/Lib/test/ |
D | test_unicodedata.py | 96 self.db.bidirectional(char), 149 self.assertEqual(self.db.bidirectional(u'\uFFFE'), '') 150 self.assertEqual(self.db.bidirectional(u' '), 'WS') 151 self.assertEqual(self.db.bidirectional(u'A'), 'L') 152 self.assertEqual(self.db.bidirectional(u'\U00020000'), 'L') 154 self.assertRaises(TypeError, self.db.bidirectional) 155 self.assertRaises(TypeError, self.db.bidirectional, u'xx')
|
/external/autotest/server/tests/netperf2/ |
D | control.srv | 20 bidirectional is set then there will be the specified number of 21 bidirectional streams.
|
D | control.stress.srv | 23 bidirectional is set then there will be the specified number of 24 bidirectional streams.
|
/external/python/cpython3/Lib/ |
D | stringprep.py | 268 return unicodedata.bidirectional(code) in ("R","AL") 272 return unicodedata.bidirectional(code) == "L"
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_CudnnRNNParamsSize.pbtxt | 16 direction: Indicates whether a bidirectional model will be used. 17 dir = (direction == bidirectional) ? 2 : 1
|
D | api_def_CudnnRNNParamsToCanonical.pbtxt | 29 direction: Indicates whether a bidirectional model will be used. 30 dir = (direction == bidirectional) ? 2 : 1
|
D | api_def_CudnnRNNCanonicalToParams.pbtxt | 29 direction: Indicates whether a bidirectional model will be used. 30 dir = (direction == bidirectional) ? 2 : 1
|
D | api_def_CudnnRNN.pbtxt | 13 direction: Indicates whether a bidirectional model will be used. Should be 14 "unidirectional" or "bidirectional".
|
D | api_def_CudnnRNNV2.pbtxt | 14 direction: Indicates whether a bidirectional model will be used. Should be 15 "unidirectional" or "bidirectional".
|
D | api_def_CudnnRNNBackprop.pbtxt | 12 direction: Indicates whether a bidirectional model will be used. Should be 13 "unidirectional" or "bidirectional".
|
D | api_def_CudnnRNNBackpropV2.pbtxt | 15 direction: Indicates whether a bidirectional model will be used. Should be 16 "unidirectional" or "bidirectional".
|
D | api_def_CudnnRNNV3.pbtxt | 14 direction: Indicates whether a bidirectional model will be used. Should be 15 "unidirectional" or "bidirectional".
|
D | api_def_CudnnRNNBackpropV3.pbtxt | 14 direction: Indicates whether a bidirectional model will be used. Should be 15 "unidirectional" or "bidirectional".
|
/external/autotest/client/tests/netpipe/ |
D | netpipe.py | 34 def run_once(self, server_ip, client_ip, role, bidirectional=False, argument 41 if bidirectional:
|
/external/python/cpython3/Doc/library/ |
D | unicodedata.rst | 72 .. function:: bidirectional(chr) 74 Returns the bidirectional class assigned to the character *chr* as 94 character in bidirectional text, ``0`` otherwise. 165 >>> unicodedata.bidirectional('\u0660') # 'A'rabic, 'N'umber
|
D | stringprep.rst | 135 Determine whether *code* is in tableD.1 (Characters with bidirectional property 141 Determine whether *code* is in tableD.2 (Characters with bidirectional property
|
/external/python/cpython2/Doc/library/ |
D | unicodedata.rst | 67 .. function:: bidirectional(unichr) 69 Returns the bidirectional class assigned to the Unicode character *unichr* as 91 character in bidirectional text, ``0`` otherwise. 168 >>> unicodedata.bidirectional(u'\u0660') # 'A'rabic, 'N'umber
|
D | stringprep.rst | 134 Determine whether *code* is in tableD.1 (Characters with bidirectional property 140 Determine whether *code* is in tableD.2 (Characters with bidirectional property
|
/external/tensorflow/tensorflow/python/keras/layers/ |
D | cudnn_recurrent_test.py | 267 bidirectional=[True, False], implementation=[1, 2], 272 bidirectional, implementation, argument 296 if bidirectional: 300 if bidirectional:
|
/external/icu/icu4c/source/i18n/ |
D | tridpars.cpp | 650 UBool bidirectional, in registerSpecialInverse() argument 658 if (bidirectional && 0==target.caseCompare(inverseTarget, U_FOLD_CASE_DEFAULT)) { in registerSpecialInverse() 659 bidirectional = FALSE; in registerSpecialInverse() 670 if (bidirectional) { in registerSpecialInverse()
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/ |
D | models.py | 298 def get_rnn_model(rnn_size, cell_type, num_layers, input_op_fn, bidirectional, argument 344 if bidirectional:
|
/external/grpc-grpc/ |
D | CONCEPTS.md | 57 A gRPC call comprises of a bidirectional stream of messages, initiated by the client. In the client… 60 …ed above is implemented over [HTTP/2](https://http2.github.io/). gRPC bidirectional streams are ma…
|
/external/python/cpython2/Tools/unicode/ |
D | makeunicodedata.py | 117 bidirectional = BIDIRECTIONAL_NAMES.index(record[4]) 122 category, combining, bidirectional, mirrored, eastasianwidth, 371 bidirectional = record[4] 379 if 'Line_Break' in properties or bidirectional == "B": 382 if category == "Zs" or bidirectional in ("WS", "B", "S"):
|