HomeSort by relevance Sort by last modified time
    Searched refs:to_bytes (Results 1 - 25 of 27) sorted by null

1 2

  /external/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");
Android.mk 35 test_name := localization/locales/locale.convenience/conversions/conversions.string/to_bytes
36 test_src := to_bytes.pass.cpp
  /ndk/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");
  /external/chromium_org/tools/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])
serialwin32.py 283 data = to_bytes(data)
serialposix.py 491 d = to_bytes(data)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
misc.py 5 from coverage.backward import string_class, to_bytes namespace
93 self.md5.update(to_bytes(str(type(v))))
95 self.md5.update(to_bytes(v))
backward.py 103 def to_bytes(s): function
112 def to_bytes(s): function
  /external/chromium_org/tools/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_org/tools/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('ascii') or ''
TestRunner.py 321 def to_bytes(str): function in function:parseIntegratedTestScriptCommands
326 to_bytes("(%s)(.*)\n" % ("|".join(k for k in keywords),)))
340 line_number += data.count(to_bytes('\n'), last_match_position,
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/type1/
t1parse.c 455 (void)psaux->ps_parser_funcs->to_bytes( &parser->root,
  /external/chromium_org/third_party/freetype/include/freetype/internal/
psaux.h 365 (*to_bytes)( PS_Parser parser, member in struct:PS_Parser_FuncsRec_
    [all...]
  /external/freetype/include/internal/
psaux.h 365 (*to_bytes)( PS_Parser parser, member in struct:PS_Parser_FuncsRec_
    [all...]
  /external/pdfium/core/include/thirdparties/freetype/freetype/internal/
psaux.h 365 (*to_bytes)( PS_Parser parser, member in struct:PS_Parser_FuncsRec_
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/
psaux.h 365 (*to_bytes)( PS_Parser parser, member in struct:PS_Parser_FuncsRec_
    [all...]
  /art/runtime/gc/collector/
semi_space.cc 246 const int64_t to_bytes = bytes_moved_; local
252 RecordFree(ObjectBytePair(from_objects - to_objects, from_bytes - to_bytes));
    [all...]

Completed in 523 milliseconds

1 2