Searched refs:bidirectional (Results 1 – 25 of 141) sorted by relevance
123456
/external/autotest/server/cros/network/ |
D | iperf_runner.py | 74 if config.bidirectional: 235 self.bidirectional = False 238 self.bidirectional = False 241 self.bidirectional = True 244 self.bidirectional = False 247 self.bidirectional = False 250 self.bidirectional = True 330 self._bidirectional_flag = '-d' if config.bidirectional else ''
|
/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/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/python/cpython3/Lib/test/ |
D | test_unicodedata.py | 89 self.db.bidirectional(char), 146 self.assertEqual(self.db.bidirectional('\uFFFE'), '') 147 self.assertEqual(self.db.bidirectional(' '), 'WS') 148 self.assertEqual(self.db.bidirectional('A'), 'L') 149 self.assertEqual(self.db.bidirectional('\U00020000'), 'L') 151 self.assertRaises(TypeError, self.db.bidirectional) 152 self.assertRaises(TypeError, self.db.bidirectional, 'xx')
|
/external/webrtc/pc/ |
D | sdp_serializer.cc | 221 bool bidirectional = tokens.size() == 4; // indicates both send and recv in DeserializeSimulcastDescription() local 225 (bidirectional && tokens[2] != kSendDirection && in DeserializeSimulcastDescription() 227 (bidirectional && tokens[0] == tokens[2])) { in DeserializeSimulcastDescription() 238 if (bidirectional) { in DeserializeSimulcastDescription()
|
/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_CudnnRNNCanonicalToParams.pbtxt | 29 direction: Indicates whether a bidirectional model will be used. 30 dir = (direction == bidirectional) ? 2 : 1
|
D | api_def_CudnnRNNParamsToCanonicalV2.pbtxt | 28 direction: Indicates whether a bidirectional model will be used. 29 dir = (direction == bidirectional) ? 2 : 1
|
D | api_def_CudnnRNNCanonicalToParamsV2.pbtxt | 28 direction: Indicates whether a bidirectional model will be used. 29 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_CudnnRNNParamsToCanonical.pbtxt | 29 direction: Indicates whether a bidirectional model will be used. 30 dir = (direction == bidirectional) ? 2 : 1
|
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".
|
/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/tensorflow/tensorflow/core/ops/compat/ops_history_v1/ |
D | CudnnRNNV3.pbtxt | 92 s: "bidirectional" 217 s: "bidirectional" 349 s: "bidirectional"
|
D | CudnnRNNParamsSize.pbtxt | 78 s: "bidirectional" 181 s: "bidirectional"
|
D | CudnnRNNBackpropV3.pbtxt | 120 s: "bidirectional" 266 s: "bidirectional" 419 s: "bidirectional"
|
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/ |
D | CudnnRNNParamsSize.pbtxt | 78 s: "bidirectional" 181 s: "bidirectional"
|
D | CudnnRNNV3.pbtxt | 92 s: "bidirectional" 217 s: "bidirectional"
|
D | CudnnRNNBackpropV3.pbtxt | 120 s: "bidirectional" 266 s: "bidirectional"
|
/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
|
/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. 172 >>> unicodedata.bidirectional('\u0660') # 'A'rabic, 'N'umber
|
123456