OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsValid
(Results
1 - 25
of
56
) sorted by relevancy
1
2
3
/src/external/apache2/llvm/dist/clang/lib/Sema/
CoroutineStmtBuilder.h
28
bool
IsValid
= true;
53
bool isInvalid() const { return !this->
IsValid
; }
SemaCoroutine.cpp
1108
if (Fn->FirstReturnLoc.
isValid
()) {
1109
assert(Fn->FirstCoroutineStmtLoc.
isValid
() &&
1140
this->
IsValid
= makePromiseStmt() && makeInitialAndFinalSuspend();
1144
assert(this->
IsValid
&& "coroutine already invalid");
1145
this->
IsValid
= makeReturnObject();
1146
if (this->
IsValid
&& !IsPromiseDependentType)
1148
return this->
IsValid
;
1152
assert(this->
IsValid
&& "coroutine already invalid");
1155
this->
IsValid
= makeOnException() && makeOnFallthrough() &&
1158
return this->
IsValid
;
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/Windows/
WindowsSupport.h
92
if (HandleTraits::
IsValid
(Handle))
103
if (HandleTraits::
IsValid
(Handle))
111
return HandleTraits::
IsValid
(Handle) ? true : false;
130
static bool
IsValid
(handle_type h) {
152
static bool
IsValid
(handle_type h) {
168
static bool
IsValid
(handle_type h) {
/src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Function.h
103
bool isConstexpr() const { return
IsValid
; }
124
IsValid
= true;
152
bool
IsValid
= false;
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h
157
unsigned
IsValid
: 1;
160
LiveOutInfo() : NumSignBits(0),
IsValid
(true) {}
222
if (!LOI->
IsValid
)
266
LiveOutRegInfo[Reg].
IsValid
= false;
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.h
148
bool
IsValid
() const { return Node != nullptr; }
151
assert(
IsValid
() && "bad iterator");
FunctionLoweringInfo.cpp
422
if (!LOI->
IsValid
)
473
DestLOI.
IsValid
= false;
478
DestLOI.
IsValid
= false;
508
DestLOI.
IsValid
= false;
513
DestLOI.
IsValid
= false;
/src/external/apache2/llvm/dist/clang/include/clang/AST/
Attr.h
232
unsigned
IsValid
: 1;
235
assert(
isValid
() && I.
isValid
() &&
246
/// Construct an invalid parameter index (\c
isValid
returns false and
248
ParamIdx() : Idx(0), HasThis(false),
IsValid
(false) {}
257
: Idx(Idx), HasThis(false),
IsValid
(true) {
281
assert((!P.
IsValid
|| P.Idx >= 1) && "valid Idx must be one-origin");
286
bool
isValid
() const { return
IsValid
; }
295
assert(
isValid
() && "ParamIdx must be valid")
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LoopCacheAnalysis.h
53
bool
isValid
() const { return
IsValid
; }
126
bool
IsValid
= false;
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
LoopCacheAnalysis.cpp
121
if (!R.
IsValid
) {
123
OS << ",
IsValid
=false.";
144
IsValid
= delinearize(LI);
145
if (
IsValid
)
153
assert(
IsValid
&& "Expecting a valid reference");
210
assert(
IsValid
&& "Expecting a valid reference");
266
assert(
IsValid
&& "Expecting a valid reference");
326
assert(!
IsValid
&& "Should be called once from the constructor");
553
if (!R->
isValid
())
TFUtils.cpp
288
bool
isValid
() const { return
IsValid
; }
324
void invalidate() {
IsValid
= false; }
326
bool
IsValid
= true;
381
if (!Impl->
isValid
())
411
IsValid
= false;
412
return
IsValid
;
416
if (!
isValid
())
/src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Cuda.h
31
bool
IsValid
= false;
60
bool
isValid
() const { return
IsValid
; }
Gnu.h
192
bool
IsValid
;
219
explicit GCCInstallationDetector(const Driver &D) :
IsValid
(false), D(D) {}
224
bool
isValid
() const { return
IsValid
; }
/src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_debugging.cc
53
if (!chunk.
IsValid
()) return 0;
asan_allocator.h
54
bool
IsValid
() const; // Checks if AsanChunkView points to a valid
/src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_debugging.cpp
53
if (!chunk.
IsValid
()) return 0;
asan_allocator.h
54
bool
IsValid
() const; // Checks if AsanChunkView points to a valid
/src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_debugging.cpp
53
if (!chunk.
IsValid
()) return 0;
asan_allocator.h
54
bool
IsValid
() const; // Checks if AsanChunkView points to a valid
/src/external/apache2/llvm/dist/clang/include/clang/Basic/
FileEntry.h
68
inline bool
isValid
() const;
341
bool
IsValid
= false; // Is this \c FileEntry initialized and valid?
368
bool
isValid
() const { return
IsValid
; }
386
bool FileEntryRef::
isValid
() const { return getFileEntry().
isValid
(); }
/src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/AsmParser/
RISCVAsmParser.cpp
364
bool
IsValid
;
366
IsValid
= RISCVAsmParser::classifySymbolRef(getImm(), VK);
368
IsValid
= isShiftedInt<N - 1, 1>(Imm);
369
return
IsValid
&& VK == RISCVMCExpr::VK_RISCV_None;
610
bool
IsValid
;
615
IsValid
= RISCVAsmParser::classifySymbolRef(getImm(), VK);
617
IsValid
= isInt<12>(Imm);
618
return
IsValid
&& ((IsConstantImm && VK == RISCVMCExpr::VK_RISCV_None) ||
641
bool
IsValid
;
646
IsValid
= RISCVAsmParser::classifySymbolRef(getImm(), VK)
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Basic/
FileManager.cpp
297
if (UFE.
isValid
()) { // Already have an entry with this inode, return it.
329
UFE.
IsValid
= true;
419
if (UFE->
isValid
())
436
UFE->
IsValid
= true;
467
BFE.
IsValid
= true;
/src/external/apache2/llvm/dist/clang/include/clang/Lex/
HeaderSearch.h
87
unsigned
IsValid
: 1;
116
Resolved(false), IndexHeaderMapHeader(false),
IsValid
(false) {}
/src/external/apache2/llvm/dist/clang/lib/Lex/
HeaderSearch.cpp
1173
HFI.External = (!HFI.
IsValid
|| HFI.External);
1174
HFI.
IsValid
= true;
1191
if (ExternalHFI.
IsValid
) {
1198
HFI->
IsValid
= true;
1219
if (!WantExternal && (!HFI->
IsValid
|| HFI->External))
1223
if (ExternalHFI.
IsValid
) {
1235
if (!HFI->
IsValid
|| (HFI->External && !WantExternal))
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFAcceleratorTable.cpp
78
IsValid
= true;
204
if (!
IsValid
)
330
if (!
IsValid
)
Completed in 62 milliseconds
1
2
3
Indexes created Thu Jun 18 00:24:58 UTC 2026