Home
last modified time | relevance | path

Searched refs:char (Results 1 – 11 of 11) sorted by relevance

/tools/test/connectivity/acts/framework/acts/controllers/anritsu_lib/
D_anritsu_utils.py187 for char in text:
188 if char in table:
189 coded_str += table[char]
191 coded_str += char
202 for char in table:
203 if char in text:
204 coded_str = coded_str.replace(char, table[char])
215 for char in text:
216 if char in table:
217 coded_str += table[char]
[all …]
/tools/test/connectivity/acts/tests/google/fuchsia/bt/
Dcmd_input.py414 for char in chars['result']:
415 char_id = char['id']
416 char_uuid = char['uuid_type']
448 for char in chars['result']:
449 char_id = char['id']
450 char_uuid = char['uuid_type']
488 for char in chars['result']:
489 char_id = char['id']
490 char_uuid = char['uuid_type']
491 descriptors = char['descriptors']
[all …]
/tools/test/connectivity/acts/tests/google/net/arduino/connect_wifi/
Dconnect_wifi.ino5 const char* ssid = "wifi_tethering_test";
6 const char* password = "password";
9 char packetBuffer[UDP_TX_PACKET_MAX_SIZE];
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/util/
DBufferReader.kt41 inline fun skipChar(char: Byte) { in isDigit()
42 while (index < endIndexExclusive && buffer[index] == char) { index++ } in isDigit()
45 inline fun skipSingle(char: Byte) { in isDigit()
46 if (peek() == char) skip() in isDigit()
/tools/test/connectivity/acts/framework/acts/controllers/relay_lib/
Dsain_smart_board.py105 for index, char in enumerate(status_string):
107 RelayState.NC if char == '1' else RelayState.NO)
/tools/test/connectivity/acts/tests/google/bt/
Drelay_tool.py99 for index, char in enumerate(line):
100 if char != ' ':
/tools/test/connectivity/acts/framework/acts/test_utils/abstract_devices/
Dbluetooth_device.py1270 for char in chars['result']:
1271 char_id = char['id']
1274 descriptors = char['descriptors']
1296 for char in chars['result']:
1297 char_id = char['id']
1298 char_uuid = char['uuid_type']
1331 for char in chars['result']:
1332 char_id = char['id']
1333 char_uuid = char['uuid_type']
1334 descriptors = char['descriptors']
/tools/repohooks/tools/
Dcpplint.py1528 char = line[i]
1529 if char in '([{':
1531 stack.append(char)
1532 elif char == '<':
1546 elif char in ')]}':
1555 if ((stack[-1] == '(' and char == ')') or
1556 (stack[-1] == '[' and char == ']') or
1557 (stack[-1] == '{' and char == '}')):
1564 elif char == '>':
1579 elif char == ';':
[all …]
/tools/asuite/atest/
Datest_utils.py629 def delimiter(char, length=_DEFAULT_TERMINAL_WIDTH, prenl=0, postnl=0): argument
641 return prenl * '\n' + char * length + postnl * '\n'
/tools/metalava/manual/
Dmaster.txt31 method @Nullable public char[] createCharArray();
/tools/test/connectivity/acts/framework/tests/
Dacts_relay_controller_test.py279 for index, char in enumerate(status_16_chars):
281 index] = RelayState.NC if char == '1' else RelayState.NO