OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StrVal
(Results
1 - 9
of
9
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLLexer.h
38
std::string
StrVal
;
59
const std::string &getStrVal() const { return
StrVal
; }
LLParser.h
47
t_LocalName, t_GlobalName, // Name in
StrVal
.
52
t_InlineAsm, // Value in FTy/
StrVal
/StrVal2/UIntVal.
60
std::string
StrVal
, StrVal2;
69
StrVal
(RHS.
StrVal
), StrVal2(RHS.StrVal2), APSIntVal(RHS.APSIntVal),
80
return
StrVal
< RHS.
StrVal
;
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
MILexer.cpp
70
MIToken &MIToken::setStringValue(StringRef
StrVal
) {
71
StringValue =
StrVal
;
75
MIToken &MIToken::setOwnedStringValue(std::string
StrVal
) {
76
StringValueStorage = std::move(
StrVal
);
569
StringRef
StrVal
= Range.upto(C);
570
if (
StrVal
.size() <= PrefLen)
588
StringRef
StrVal
= Range.upto(C);
589
Token.reset(MIToken::IntegerLiteral,
StrVal
).setIntegerValue(APSInt(
StrVal
));
616
StringRef
StrVal
= Range.upto(C)
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Lex/
Pragma.cpp
263
std::string
StrVal
= getSpelling(StrTok);
270
if (
StrVal
[0] == 'L' ||
StrVal
[0] == 'U' ||
271
(
StrVal
[0] == 'u' &&
StrVal
[1] != '8'))
272
StrVal
.erase(
StrVal
.begin());
273
else if (
StrVal
[0] == 'u')
274
StrVal
.erase(
StrVal
.begin(), StrVal.begin() + 2)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGLexer.h
71
Id,
StrVal
, VarName, CodeFragment,
89
std::string CurStrVal; // This is valid for Id,
StrVal
, VarName, CodeFragment
117
assert((CurCode == tgtok::Id || CurCode == tgtok::
StrVal
||
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmt.cpp
2124
StringRef
StrVal
= Str->getString();
2125
if (!
StrVal
.empty()) {
2133
for (unsigned i = 0, e =
StrVal
.size() - 1; i != e; ++i) {
2134
if (
StrVal
[i] != '\n') continue;
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp
2341
SVal
StrVal
= C.getSVal(Init);
2342
assert(
StrVal
.isValid() && "Initializer string is unknown or undefined");
2344
getCStringLength(C, state, Init,
StrVal
).castAs<DefinedOrUnknownSVal>();
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp
2778
SmallString<8>
StrVal
;
2779
APF.toString(
StrVal
);
2781
AP.OutStreamer->GetCommentOS() << ' ' <<
StrVal
<< '\n';
/src/external/apache2/llvm/dist/llvm/lib/IR/
AsmWriter.cpp
1372
SmallString<128>
StrVal
;
1373
APF.toString(
StrVal
, 6, 0, false);
1378
assert((isDigit(
StrVal
[0]) || ((
StrVal
[0] == '-' ||
StrVal
[0] == '+') &&
1379
isDigit(
StrVal
[1]))) &&
1382
if (APFloat(APFloat::IEEEdouble(),
StrVal
).convertToDouble() == Val) {
1383
Out <<
StrVal
;
Completed in 27 milliseconds
Indexes created Wed Aug 05 00:25:39 UTC 2026