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_c_string
(Results
1 - 3
of
3
) sorted by relevance
/third_party/json/tests/src/
H
A
D
unit-type_traits.cpp
19
SECTION("
is_c_string
")
21
using nlohmann::detail::
is_c_string
;
26
CHECK(
is_c_string
<char*>::value);
27
CHECK(
is_c_string
<const char*>::value);
28
CHECK(
is_c_string
<char* const>::value);
29
CHECK(
is_c_string
<const char* const>::value);
31
CHECK_FALSE(
is_c_string
<char*&>::value);
32
CHECK_FALSE(
is_c_string
<const char*&>::value);
33
CHECK_FALSE(
is_c_string
<char* const&>::value);
34
CHECK_FALSE(
is_c_string
<cons
[all...]
/third_party/json/include/nlohmann/detail/meta/
H
A
D
type_traits.hpp
691
//
is_c_string
698
inline constexpr bool
is_c_string
()
in is_c_string()
function
713
struct
is_c_string
: bool_constant<impl::
is_c_string
<T>()> {};
struct
716
using is_c_string_uncvref =
is_c_string
<uncvref_t<T>>;
/third_party/json/single_include/nlohmann/
H
A
D
json.hpp
4087
//
is_c_string
4094
inline constexpr bool
is_c_string
()
in is_c_string()
function
4109
struct
is_c_string
: bool_constant<impl::
is_c_string
<T>()> {};
struct
4112
using is_c_string_uncvref =
is_c_string
<uncvref_t<T>>;
Completed in 29 milliseconds