Home
last modified time | relevance | path

Searched refs:bidirectional (Results 1 – 25 of 91) sorted by relevance

1234

/external/python/cpython2/Tools/pybench/
DUnicode.py473 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/
Dtest_unicodedata.py96 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/
Dtest_unicodedata.py96 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/
Dcontrol.srv20 bidirectional is set then there will be the specified number of
21 bidirectional streams.
Dcontrol.stress.srv23 bidirectional is set then there will be the specified number of
24 bidirectional streams.
/external/python/cpython3/Lib/
Dstringprep.py268 return unicodedata.bidirectional(code) in ("R","AL")
272 return unicodedata.bidirectional(code) == "L"
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_CudnnRNNParamsSize.pbtxt16 direction: Indicates whether a bidirectional model will be used.
17 dir = (direction == bidirectional) ? 2 : 1
Dapi_def_CudnnRNNParamsToCanonical.pbtxt29 direction: Indicates whether a bidirectional model will be used.
30 dir = (direction == bidirectional) ? 2 : 1
Dapi_def_CudnnRNNCanonicalToParams.pbtxt29 direction: Indicates whether a bidirectional model will be used.
30 dir = (direction == bidirectional) ? 2 : 1
Dapi_def_CudnnRNN.pbtxt13 direction: Indicates whether a bidirectional model will be used. Should be
14 "unidirectional" or "bidirectional".
Dapi_def_CudnnRNNV2.pbtxt14 direction: Indicates whether a bidirectional model will be used. Should be
15 "unidirectional" or "bidirectional".
Dapi_def_CudnnRNNBackprop.pbtxt12 direction: Indicates whether a bidirectional model will be used. Should be
13 "unidirectional" or "bidirectional".
Dapi_def_CudnnRNNBackpropV2.pbtxt15 direction: Indicates whether a bidirectional model will be used. Should be
16 "unidirectional" or "bidirectional".
Dapi_def_CudnnRNNV3.pbtxt14 direction: Indicates whether a bidirectional model will be used. Should be
15 "unidirectional" or "bidirectional".
Dapi_def_CudnnRNNBackpropV3.pbtxt14 direction: Indicates whether a bidirectional model will be used. Should be
15 "unidirectional" or "bidirectional".
/external/autotest/client/tests/netpipe/
Dnetpipe.py34 def run_once(self, server_ip, client_ip, role, bidirectional=False, argument
41 if bidirectional:
/external/python/cpython3/Doc/library/
Dunicodedata.rst72 .. 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
Dstringprep.rst135 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/
Dunicodedata.rst67 .. 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
Dstringprep.rst134 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/
Dcudnn_recurrent_test.py267 bidirectional=[True, False], implementation=[1, 2],
272 bidirectional, implementation, argument
296 if bidirectional:
300 if bidirectional:
/external/icu/icu4c/source/i18n/
Dtridpars.cpp650 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/
Dmodels.py298 def get_rnn_model(rnn_size, cell_type, num_layers, input_op_fn, bidirectional, argument
344 if bidirectional:
/external/grpc-grpc/
DCONCEPTS.md57 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/
Dmakeunicodedata.py117 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"):

1234