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:has_value_
(Results
1 - 5
of
5
) sorted by relevance
/third_party/libabigail/include/
H
A
D
abg-cxx-compat.h
40
bool
has_value_
;
44
optional() :
has_value_
(false), value_() {}
45
optional(const T& value) :
has_value_
(true), value_(value) {}
50
return
has_value_
;
56
if (!
has_value_
)
64
if (!
has_value_
)
88
has_value_
= true;
/third_party/node/deps/v8/include/v8-include/
H
A
D
v8-maybe.h
34
V8_INLINE bool IsNothing() const { return !
has_value_
; }
in IsNothing()
35
V8_INLINE bool IsJust() const { return
has_value_
; }
in IsJust()
82
return
has_value_
? value_ : default_value;
in FromMaybe()
95
Maybe() :
has_value_
(false) {}
in Maybe()
96
explicit Maybe(const T& t) :
has_value_
(true), value_(t) {}
in Maybe()
97
explicit Maybe(T&& t) :
has_value_
(true), value_(std::move(t)) {}
in Maybe()
99
bool
has_value_
;
member in v8::Maybe
/third_party/node/deps/v8/include/
H
A
D
v8-maybe.h
31
V8_INLINE bool IsNothing() const { return !
has_value_
; }
in IsNothing()
32
V8_INLINE bool IsJust() const { return
has_value_
; }
in IsJust()
70
return
has_value_
? value_ : default_value;
in FromMaybe()
83
Maybe() :
has_value_
(false) {}
in Maybe()
84
explicit Maybe(const T& t) :
has_value_
(true), value_(t) {}
in Maybe()
86
bool
has_value_
;
member in v8::Maybe
/third_party/node/deps/v8/testing/
H
A
D
gmock-support.h
19
Capture() : value_(),
has_value_
(false) {}
in Capture()
22
bool has_value() const { return
has_value_
; }
in has_value()
27
has_value_
= true;
in SetValue()
32
bool
has_value_
;
member in testing::Capture
/third_party/googletest/googlemock/test/
H
A
D
gmock-matchers-misc_test.cc
678
: value_(std::move(value)),
has_value_
(true) {}
in SampleOptional()
679
SampleOptional() : value_(),
has_value_
(false) {}
in SampleOptional()
680
operator bool() const { return
has_value_
; }
in operator bool()
685
bool
has_value_
;
member in testing::gmock_matchers_test::__anon3004::SampleOptional
Completed in 6 milliseconds