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:is_ws
(Results
1 - 7
of
7
) sorted by relevance
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H
A
D
ascii.cc
181
bool
is_ws
= false;
in RemoveExtraAsciiWhitespace()
local
184
if (
is_ws
) {
in RemoveExtraAsciiWhitespace()
186
is_ws
= absl::ascii_isspace(*input_it);
in RemoveExtraAsciiWhitespace()
187
if (
is_ws
) --output_it;
in RemoveExtraAsciiWhitespace()
189
is_ws
= absl::ascii_isspace(*input_it);
in RemoveExtraAsciiWhitespace()
/third_party/skia/src/utils/
H
A
D
SkParse.cpp
18
static inline bool
is_ws
(int c)
in is_ws()
function
30
return
is_ws
(c) || c == ',' || c == ';';
in is_sep()
53
while (
is_ws
(*str))
in skip_ws()
128
if (*str == 0 ||
is_ws
(*str))
in FindHex()
H
A
D
SkParsePath.cpp
14
static inline bool
is_ws
(int c) {
in is_ws()
function
23
return
is_ws
(c) || c == ',';
in is_sep()
36
while (
is_ws
(*str))
in skip_ws()
H
A
D
SkJSON.cpp
261
static inline bool
is_ws
(char c) { return g_token_flags[static_cast<uint8_t>(c)] & 0x02; }
in is_ws()
function
268
while (
is_ws
(*p)) ++p;
in skip_ws()
311
while (p_stop > p &&
is_ws
(*p_stop)) --p_stop;
in parse()
/third_party/ffmpeg/libavutil/
H
A
D
bprint.c
318
int
is_ws
= !!strchr(WHITESPACES, *src);
in av_bprint_escape()
local
322
(
is_ws
&& (flags & AV_ESCAPE_FLAG_WHITESPACE));
in av_bprint_escape()
326
(is_special || (
is_ws
&& is_first_last))))
in av_bprint_escape()
/third_party/skia/modules/svg/src/
H
A
D
SkSVGAttributeParser.cpp
26
inline bool
is_ws
(char c) {
in is_ws()
function
31
return
is_ws
(c) || c == ',' || c == ';';
in is_sep()
76
return this->advanceWhile(
is_ws
);
in parseWSToken()
652
this->advanceWhile(
is_ws
);
/third_party/libabigail/tests/lib/
H
A
D
catch.hpp
13854
const auto
is_ws
= [](char c) {
13858
while (real_begin < ref.size() &&
is_ws
(ref[real_begin])) { ++real_begin; }
13860
while (real_end > real_begin &&
is_ws
(ref[real_end - 1])) { --real_end; }
Completed in 21 milliseconds