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:flag_
(Results
1 - 8
of
8
) sorted by relevance
/third_party/gn/src/base/memory/
H
A
D
weak_ptr.cc
24
WeakReference::WeakReference(const scoped_refptr<Flag>& flag) :
flag_
(flag) {}
in WeakReference()
33
return
flag_
&&
flag_
->IsValid();
in is_valid()
45
flag_
= new WeakReference::Flag();
in GetRef()
47
return WeakReference(
flag_
);
in GetRef()
51
if (
flag_
) {
in Invalidate()
52
flag_
->Invalidate();
in Invalidate()
53
flag_
= nullptr;
in Invalidate()
H
A
D
weak_ptr.h
121
scoped_refptr<const Flag>
flag_
;
member in base::internal::WeakReference
131
bool HasRefs() const { return
flag_
&& !
flag_
->HasOneRef(); }
in HasRefs()
136
mutable scoped_refptr<WeakReference::Flag>
flag_
;
member in base::internal::WeakReferenceOwner
/third_party/libphonenumber/cpp/src/phonenumbers/base/memory/
H
A
D
singleton_boost.h
32
boost::call_once(Init,
flag_
);
in GetInstance()
42
static boost::once_flag
flag_
;
member in i18n::phonenumbers::Singleton
46
template <class T> boost::once_flag Singleton<T>::
flag_
= BOOST_ONCE_INIT;
member in i18n::phonenumbers::Singleton
/third_party/node/deps/v8/src/execution/
H
A
D
microtask-queue.cc
134
explicit SetIsRunningMicrotasks(bool* flag) :
flag_
(flag) {
in SetIsRunningMicrotasks()
135
DCHECK(!*
flag_
);
in SetIsRunningMicrotasks()
136
*
flag_
= true;
in SetIsRunningMicrotasks()
140
DCHECK(*
flag_
);
in ~SetIsRunningMicrotasks()
141
*
flag_
= false;
in ~SetIsRunningMicrotasks()
145
bool*
flag_
;
member in v8::internal::__anon14546::SetIsRunningMicrotasks
/third_party/node/deps/v8/src/torque/ls/
H
A
D
json.h
54
result.
flag_
= b;
in From()
87
return
flag_
;
in ToBool()
118
bool
flag_
= false;
member
/third_party/toybox/openharmony/
H
A
D
su.c
32
#define FLAG(x) ((g_flags & (
flag_
##x)) ==
flag_
##x)
33
#define SET_FLAG(x) (g_flags |= (
flag_
##x))
/third_party/spirv-tools/tools/util/
H
A
D
flags.h
198
FlagInfo(FlagType&&
flag_
, std::string&& name_, bool required_,
in FlagInfo()
200
: flag(std::move(
flag_
)),
in FlagInfo()
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/internal/
H
A
D
flag.h
775
explicit FlagRegistrar(Flag<T>& flag, const char* filename) :
flag_
(flag) {
in FlagRegistrar()
777
flags_internal::RegisterCommandLineFlag(
flag_
.impl_, filename);
in FlagRegistrar()
781
flag_
.impl_.SetCallback(cb);
in OnUpdate()
791
Flag<T>&
flag_
; // Flag being registered (not owned).
member in absl::flags_internal::FlagHelpKind::FlagDefaultKind::FlagRegistrar
Completed in 5 milliseconds