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:IsSpace
(Results
1 - 14
of
14
) sorted by relevance
/third_party/node/deps/v8/src/utils/
H
A
D
ostreams.cc
125
bool
IsSpace
(uint16_t c) { return (0x9 <= c && c <= 0xD) || c == 0x20; }
in IsSpace()
function
126
bool IsOK(uint16_t c) { return (IsPrint(c) ||
IsSpace
(c)) && c != '\\'; }
in IsOK()
/third_party/googletest/googletest/src/
H
A
D
gtest-typed-test.cc
40
while (
IsSpace
(*str)) str++;
in SkipSpaces()
H
A
D
gtest.cc
1900
for (; message_length &&
IsSpace
(error_text[message_length - 1]);
/third_party/mesa3d/src/gtest/src/
H
A
D
gtest-typed-test.cc
43
while (
IsSpace
(*str))
in SkipSpaces()
H
A
D
gtest.cc
1694
for (; message_length &&
IsSpace
(error_text[message_length - 1]);
in HRESULTFailureHelper()
/third_party/node/deps/googletest/src/
H
A
D
gtest-typed-test.cc
44
while (
IsSpace
(*str)) str++;
in SkipSpaces()
H
A
D
gtest.cc
1917
for (; message_length &&
IsSpace
(error_text[message_length - 1]);
/third_party/googletest/googletest/include/gtest/internal/
H
A
D
gtest-port.h
1933
inline bool
IsSpace
(char ch) {
in IsSpace()
function
1969
while (it != str.begin() &&
IsSpace
(*--it)) it = str.erase(it);
in StripTrailingSpaces()
H
A
D
gtest-internal.h
656
while (
IsSpace
(*(++comma))) {
in SkipComma()
/third_party/mesa3d/src/gtest/include/gtest/internal/
H
A
D
gtest-port.h
1923
inline bool
IsSpace
(char ch) {
in IsSpace()
function
1946
while (it != str.begin() &&
IsSpace
(*--it))
in StripTrailingSpaces()
H
A
D
gtest-internal.h
634
while (
IsSpace
(*(++comma))) {}
in SkipComma()
/third_party/node/deps/googletest/include/gtest/internal/
H
A
D
gtest-port.h
1959
inline bool
IsSpace
(char ch) {
in IsSpace()
function
1995
while (it != str.begin() &&
IsSpace
(*--it)) it = str.erase(it);
in StripTrailingSpaces()
H
A
D
gtest-internal.h
641
while (
IsSpace
(*(++comma))) {
in SkipComma()
/third_party/sqlite/src/
H
A
D
shell.c
232
#define
IsSpace
(X) isspace((unsigned char)X)
macro
16407
if(
IsSpace
(z[i]) ) continue;
in wsToEol()
16649
for(i=0;
IsSpace
(z[i]); i++){}
in shell_callback()
16651
if(
IsSpace
(c) ){
in shell_callback()
16653
if(
IsSpace
(z[j-1]) || z[j-1]=='(' ) continue;
in shell_callback()
16654
}else if( (c=='(' || c==')') && j>0 &&
IsSpace
(z[j-1]) ){
in shell_callback()
16659
while( j>0 &&
IsSpace
(z[j-1]) ){ j--; }
in shell_callback()
16688
while(
IsSpace
(z[i+1]) ){ i++; }
in shell_callback()
17074
for(i=0; zCode[i]; i++){ if(
IsSpace
(zSql[i]) ) zCode[i] = ' '; }
in shell_error_context()
18308
while(
IsSpace
(zSq
in shell_exec()
[all...]
Completed in 75 milliseconds