/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.string/ |
to_bytes.pass.cpp | 14 // byte_string to_bytes(Elem wchar); 15 // byte_string to_bytes(const Elem* wptr); 16 // byte_string to_bytes(const wide_string& wstr); 17 // byte_string to_bytes(const Elem* first, const Elem* last); 28 std::string bs = myconv.to_bytes(ws[0]); 30 bs = myconv.to_bytes(ws.c_str()); 32 bs = myconv.to_bytes(ws); 34 bs = myconv.to_bytes(ws.data(), ws.data() + ws.size()); 36 bs = myconv.to_bytes(L"");
|
converted.pass.cpp | 26 std::string bs = myconv.to_bytes(L"\x40003"); 28 bs = myconv.to_bytes(L"\x40003\x65");
|
ctor_err_string.pass.cpp | 36 myconv.to_bytes(L"\xDA83"); 54 std::string bs = myconv.to_bytes(L"\xDA83"); 69 std::string bs = myconv.to_bytes(L"\xDA83");
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.string/ |
to_bytes.pass.cpp | 14 // byte_string to_bytes(Elem wchar); 15 // byte_string to_bytes(const Elem* wptr); 16 // byte_string to_bytes(const wide_string& wstr); 17 // byte_string to_bytes(const Elem* first, const Elem* last); 28 std::string bs = myconv.to_bytes(ws[0]); 30 bs = myconv.to_bytes(ws.c_str()); 32 bs = myconv.to_bytes(ws); 34 bs = myconv.to_bytes(ws.data(), ws.data() + ws.size()); 36 bs = myconv.to_bytes(L"");
|
converted.pass.cpp | 26 std::string bs = myconv.to_bytes(L"\x40003"); 28 bs = myconv.to_bytes(L"\x40003\x65");
|
ctor_err_string.pass.cpp | 33 myconv.to_bytes(L"\xDA83"); 50 std::string bs = myconv.to_bytes(L"\xDA83"); 63 std::string bs = myconv.to_bytes(L"\xDA83");
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locales/locale.convenience/conversions/conversions.string/ |
to_bytes.pass.cpp | 14 // byte_string to_bytes(Elem wchar); 15 // byte_string to_bytes(const Elem* wptr); 16 // byte_string to_bytes(const wide_string& wstr); 17 // byte_string to_bytes(const Elem* first, const Elem* last); 28 std::string bs = myconv.to_bytes(ws[0]); 30 bs = myconv.to_bytes(ws.c_str()); 32 bs = myconv.to_bytes(ws); 34 bs = myconv.to_bytes(ws.data(), ws.data() + ws.size()); 36 bs = myconv.to_bytes(L"");
|
converted.pass.cpp | 26 std::string bs = myconv.to_bytes(L"\x40003"); 28 bs = myconv.to_bytes(L"\x40003\x65");
|
ctor_err_string.pass.cpp | 34 myconv.to_bytes(L"\xDA83"); 51 std::string bs = myconv.to_bytes(L"\xDA83"); 64 std::string bs = myconv.to_bytes(L"\xDA83");
|
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/ |
rfc2217.py | 85 IAC = to_bytes([255]) # Interpret As Command 86 DONT = to_bytes([254]) 87 DO = to_bytes([253]) 88 WONT = to_bytes([252]) 89 WILL = to_bytes([251]) 90 IAC_DOUBLED = to_bytes([IAC, IAC]) 92 SE = to_bytes([240]) # Subnegotiation End 93 NOP = to_bytes([241]) # No Operation 94 DM = to_bytes([242]) # Data Mark 95 BRK = to_bytes([243]) # Brea [all...] |
serialutil.py | 65 def to_bytes(seq): function 80 XON = to_bytes([17]) 81 XOFF = to_bytes([19]) 83 CR = to_bytes([13]) 84 LF = to_bytes([10])
|
/external/parameter-framework/asio-1.10.6/include/asio/ip/ |
address_v6.hpp | 86 ASIO_DECL bytes_type to_bytes() const;
|
address_v4.hpp | 86 ASIO_DECL bytes_type to_bytes() const;
|
/external/libcxx/utils/libcxx/ |
util.py | 22 def to_bytes(str): function 31 return to_bytes(bytes) 199 input = to_bytes(input)
|
compiler.py | 278 cmd, input=libcxx.util.to_bytes('#error\n'))
|
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/ |
list_ports_windows.py | 127 Ports = serial.to_bytes([80, 111, 114, 116, 115]) # "Ports" 128 PortName = serial.to_bytes([80, 111, 114, 116, 78, 97, 109, 101]) # "PortName"
|
miniterm.py | 17 EXITCHARCTER = serial.to_bytes([0x1d]) # GS/CTRL+] 18 MENUCHARACTER = serial.to_bytes([0x14]) # Menu: CTRL+T 84 LF = serial.to_bytes([10]) 85 CR = serial.to_bytes([13]) 86 CRLF = serial.to_bytes([13, 10]) 88 X00 = serial.to_bytes([0]) 89 X0E = serial.to_bytes([0x0e]) 293 b = serial.to_bytes([3])
|
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/urlhandler/ |
protocol_loop.py | 130 block = to_bytes(self.loop_buffer[:size]) 148 data = to_bytes(data)
|
protocol_socket.py | 171 self._socket.sendall(to_bytes(data))
|
/external/llvm/utils/lit/lit/ |
ProgressBar.py | 8 def to_bytes(str): function 139 return curses.tparm(to_bytes(arg), index).decode('utf-8') or ''
|
util.py | 11 def to_bytes(str): function 18 return to_bytes(bytes)
|
TestRunner.py | 11 from lit.util import to_bytes, to_string 566 to_bytes("(%s)(.*)\n" % ("|".join(re.escape(k) for k in keywords),))) 574 if not data.endswith(to_bytes('\n')): 575 data = data + to_bytes('\n') 584 line_number += data.count(to_bytes('\n'), last_match_position, [all...] |
/external/pdfium/third_party/freetype/src/type1/ |
t1parse.c | 483 (void)psaux->ps_parser_funcs->to_bytes( &parser->root,
|
/external/freetype/include/freetype/internal/ |
psaux.h | 366 (*to_bytes)( PS_Parser parser, member in struct:PS_Parser_FuncsRec_ [all...] |
/external/pdfium/third_party/freetype/include/freetype/internal/ |
psaux.h | 365 (*to_bytes)( PS_Parser parser, member in struct:PS_Parser_FuncsRec_ [all...] |