OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isLiteral
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/include/clang/Basic/
TokenKinds.h
86
inline bool
isLiteral
(TokenKind K) {
/src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
BitCodes.h
98
bool
IsLiteral
: 1; // Indicate whether this is a literal value or not.
109
explicit BitCodeAbbrevOp(uint64_t V) : Val(V),
IsLiteral
(true) {}
111
: Val(Data),
IsLiteral
(false), Enc(E) {}
113
bool
isLiteral
() const { return
IsLiteral
; }
114
bool isEncoding() const { return !
IsLiteral
; }
117
uint64_t getLiteralValue() const { assert(
isLiteral
()); return Val; }
/src/external/apache2/llvm/dist/clang/include/clang/Lex/
Token.h
53
/// Literals:
isLiteral
() returns true.
115
bool
isLiteral
() const {
116
return tok::
isLiteral
(getKind());
184
if (
isLiteral
()) return nullptr;
218
assert(
isLiteral
() && "Cannot get literal data of non-literal");
222
assert(
isLiteral
() && "Cannot set literal data of non-literal");
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DerivedTypes.h
278
bool
isLiteral
() const { return (getSubclassData() & SCDB_IsLiteral) != 0; }
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclCXX.h
1398
bool
isLiteral
() const {
1411
return
isLiteral
() && data().StructuralIfLiteral;
Completed in 79 milliseconds
Indexes created Thu Jun 25 00:25:11 UTC 2026