Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:utf16_buf
(Results
1 - 2
of
2
) sorted by relevance
/third_party/libuv/src/win/
H
A
D
tty.c
1669
WCHAR
utf16_buf
[MAX_CONSOLE_CHAR];
local
1676
uv__tty_emit_text(handle,
utf16_buf
, utf16_buf_used, error); \
1682
if (wchars_needed > ARRAY_SIZE(
utf16_buf
) - utf16_buf_used) { \
2121
utf16_buf
[utf16_buf_used++] = L'\r';
2122
utf16_buf
[utf16_buf_used++] = L'\n';
2131
utf16_buf
[utf16_buf_used++] = (WCHAR) utf8_codepoint;
2139
utf16_buf
[utf16_buf_used++] = (WCHAR) utf8_codepoint;
2144
utf16_buf
[utf16_buf_used++] = (WCHAR) (utf8_codepoint / 0x400 + 0xD800);
2145
utf16_buf
[utf16_buf_used++] = (WCHAR) (utf8_codepoint % 0x400 + 0xDC00);
/third_party/node/deps/uv/src/win/
H
A
D
tty.c
1680
WCHAR
utf16_buf
[MAX_CONSOLE_CHAR];
local
1687
uv__tty_emit_text(handle,
utf16_buf
, utf16_buf_used, error); \
1693
if (wchars_needed > ARRAY_SIZE(
utf16_buf
) - utf16_buf_used) { \
2132
utf16_buf
[utf16_buf_used++] = L'\r';
2133
utf16_buf
[utf16_buf_used++] = L'\n';
2142
utf16_buf
[utf16_buf_used++] = (WCHAR) utf8_codepoint;
2150
utf16_buf
[utf16_buf_used++] = (WCHAR) utf8_codepoint;
2155
utf16_buf
[utf16_buf_used++] = (WCHAR) (utf8_codepoint / 0x400 + 0xD800);
2156
utf16_buf
[utf16_buf_used++] = (WCHAR) (utf8_codepoint % 0x400 + 0xDC00);
Completed in 7 milliseconds