Home
last modified time | relevance | path

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

123456

/external/autotest/server/cros/network/
Diperf_runner.py74 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/
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/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/python/cpython3/Lib/test/
Dtest_unicodedata.py89 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/
Dsdp_serializer.cc221 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/
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_CudnnRNNCanonicalToParams.pbtxt29 direction: Indicates whether a bidirectional model will be used.
30 dir = (direction == bidirectional) ? 2 : 1
Dapi_def_CudnnRNNParamsToCanonicalV2.pbtxt28 direction: Indicates whether a bidirectional model will be used.
29 dir = (direction == bidirectional) ? 2 : 1
Dapi_def_CudnnRNNCanonicalToParamsV2.pbtxt28 direction: Indicates whether a bidirectional model will be used.
29 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_CudnnRNNParamsToCanonical.pbtxt29 direction: Indicates whether a bidirectional model will be used.
30 dir = (direction == bidirectional) ? 2 : 1
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".
/external/autotest/client/tests/netpipe/
Dnetpipe.py34 def run_once(self, server_ip, client_ip, role, bidirectional=False, argument
41 if bidirectional:
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/
DCudnnRNNV3.pbtxt92 s: "bidirectional"
217 s: "bidirectional"
349 s: "bidirectional"
DCudnnRNNParamsSize.pbtxt78 s: "bidirectional"
181 s: "bidirectional"
DCudnnRNNBackpropV3.pbtxt120 s: "bidirectional"
266 s: "bidirectional"
419 s: "bidirectional"
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/
DCudnnRNNParamsSize.pbtxt78 s: "bidirectional"
181 s: "bidirectional"
DCudnnRNNV3.pbtxt92 s: "bidirectional"
217 s: "bidirectional"
DCudnnRNNBackpropV3.pbtxt120 s: "bidirectional"
266 s: "bidirectional"
/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
/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.
172 >>> unicodedata.bidirectional('\u0660') # 'A'rabic, 'N'umber

123456