| /freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/ |
| HD | Token.h | 115 bool isLiteral() const { in isLiteral() function 116 return tok::isLiteral(getKind()); in isLiteral() 184 if (isLiteral()) return nullptr; in getIdentifierInfo() 218 assert(isLiteral() && "Cannot get literal data of non-literal"); in getLiteralData() 222 assert(isLiteral() && "Cannot set literal data of non-literal"); in setLiteralData()
|
| HD | Preprocessor.h | 98 assert(!tok::isLiteral(Kind) && "Literals are not supported."); in TokenValue()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/ |
| HD | BitstreamWriter.h | 259 assert(Op.isLiteral() && "Not a literal"); in EmitAbbreviatedLiteral() 270 assert(!Op.isLiteral() && "Literals should use EmitAbbreviatedLiteral!"); in EmitAbbreviatedField() 311 if (Op.isLiteral()) in EmitRecordWithAbbrevImpl() 324 if (Op.isLiteral()) { in EmitRecordWithAbbrevImpl() 477 Emit(Op.isLiteral(), 1); in EncodeAbbrev() 478 if (Op.isLiteral()) { in EncodeAbbrev()
|
| HD | BitCodes.h | 112 bool isLiteral() const { return IsLiteral; } in isLiteral() function 116 uint64_t getLiteralValue() const { assert(isLiteral()); return Val; } in getLiteralValue()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitstream/Reader/ |
| HD | BitstreamReader.cpp | 69 assert(!Op.isLiteral() && "Not to be used with literals!"); in readAbbreviatedField() 114 if (CodeOp.isLiteral()) in skipRecord() 130 if (Op.isLiteral()) in skipRecord() 232 if (CodeOp.isLiteral()) in readRecord() 246 if (Op.isLiteral()) { in readRecord()
|
| /freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/ |
| HD | TokenKinds.h | 85 inline bool isLiteral(TokenKind K) { in isLiteral() function
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| HD | MetaRenamer.cpp | 117 if (STy->isLiteral() || STy->getName().empty()) continue; in runOnModule()
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/ |
| HD | ClangHighlighter.cpp | 64 else if (tok::isLiteral(token.getKind())) in determineClangStyle()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/ |
| HD | MacroInfo.cpp | 169 else if (Tok.isLiteral() && Tok.getLiteralData()) in dump()
|
| HD | TokenConcatenation.cpp | 133 if (Tok.isLiteral() && Tok.getLiteralData()) { in GetFirstChar()
|
| HD | TokenLexer.cpp | 618 FirstTok.getIdentifierInfo()->isStr("L") && SecondTok.isLiteral() && in isWideStringLiteralFromMacro()
|
| HD | Preprocessor.cpp | 501 else if (Tok.isLiteral()) in CreateString()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| HD | StripSymbols.cpp | 181 if (STy->isLiteral() || STy->getName().empty()) continue; in StripTypeNames()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Format/ |
| HD | TokenAnnotator.cpp | 83 if (Previous.Previous->Tok.isLiteral()) in parseAngle() 1432 Current.Previous->Tok.isLiteral())) { in determineTokenType() 1694 (Tok.Next->Tok.isLiteral() || in rParenEndsCast() 1790 if (PrevToken->Tok.isLiteral() || in determineStarAmpUsage() 1793 NextToken->Tok.isLiteral() || in determineStarAmpUsage() 2241 Tok->Tok.isLiteral()) in isFunctionDeclarationName() 2671 return Left.Tok.isLiteral() || (Left.is(tok::identifier) && Left.Previous && in spaceRequiredBetween() 2686 return (Left.Tok.isLiteral() || in spaceRequiredBetween() 2699 return Right.Tok.isLiteral() || Right.is(TT_BlockComment) || in spaceRequiredBetween()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Linker/ |
| HD | IRMover.cpp | 173 if (DSTy->isLiteral() != SSTy->isLiteral() || in areTypesIsomorphic() 240 bool IsUniqued = !isa<StructType>(Ty) || cast<StructType>(Ty)->isLiteral(); in get()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| HD | DerivedTypes.h | 302 bool isLiteral() const { return (getSubclassData() & SCDB_IsLiteral) != 0; } in isLiteral() function
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| HD | ClangModulesDeclVendor.cpp | 510 if (ti->isLiteral()) { in ForEachMacro()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/ |
| HD | PrintPreprocessedOutput.cpp | 789 } else if (Tok.isLiteral() && !Tok.needsCleaning() && in PrintPreprocessedTokens()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/ |
| HD | Type.cpp | 505 assert(!isLiteral() && "Literal structs never have names"); in getName()
|
| HD | AsmWriter.cpp | 546 if (STy->isLiteral()) in incorporateTypes() 597 if (STy->isLiteral()) in print() 4299 if (!STy->isLiteral()) { in print()
|
| HD | Function.cpp | 616 if (!STyp->isLiteral()) { in getMangledTypeStr()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
| HD | ValueEnumerator.cpp | 865 if (!STy->isLiteral()) in EnumerateType()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| HD | HexagonCommonGEP.cpp | 260 if (!STy->isLiteral()) in operator <<()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ |
| HD | TextNodeDumper.cpp | 1570 FLAG(isLiteral, literal); in VisitCXXRecordDecl()
|
| HD | JSONNodeDumper.cpp | 445 FIELD1(isLiteral); in createCXXRecordDefinitionData()
|