OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StrVal
(Results
1 - 9
of
9
) sorted by null
/external/llvm/lib/AsmParser/
LLLexer.h
39
std::string
StrVal
;
57
const std::string &getStrVal() const { return
StrVal
; }
LLParser.h
48
t_LocalName, t_GlobalName, // Name in
StrVal
.
53
t_InlineAsm, // Value in
StrVal
/StrVal2/UIntVal.
62
std::string
StrVal
, StrVal2;
82
return
StrVal
< RHS.
StrVal
;
/external/llvm/lib/TableGen/
TGLexer.h
57
Id,
StrVal
, VarName, CodeFragment
71
std::string CurStrVal; // This is valid for ID,
STRVAL
, VARNAME, CODEFRAGMENT
99
assert((CurCode == tgtok::Id || CurCode == tgtok::
StrVal
||
/external/clang/lib/Lex/
Pragma.cpp
224
std::string
StrVal
= getSpelling(StrTok);
231
if (
StrVal
[0] == 'L' ||
StrVal
[0] == 'U' ||
232
(
StrVal
[0] == 'u' &&
StrVal
[1] != '8'))
233
StrVal
.erase(
StrVal
.begin());
234
else if (
StrVal
[0] == 'u')
235
StrVal
.erase(
StrVal
.begin(), StrVal.begin() + 2)
[
all
...]
/external/llvm/lib/Target/CppBackend/
CPPBackend.cpp
236
std::string
StrVal
= ftostr(CFP->getValueAPF());
238
while (
StrVal
[0] == ' ')
239
StrVal
.erase(
StrVal
.begin());
243
if (((
StrVal
[0] >= '0' &&
StrVal
[0] <= '9') ||
244
((
StrVal
[0] == '-' ||
StrVal
[0] == '+') &&
245
(
StrVal
[1] >= '0' &&
StrVal
[1] <= '9'))) &
[
all
...]
/external/clang/lib/CodeGen/
CGStmt.cpp
[
all
...]
/external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp
[
all
...]
/external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp
[
all
...]
/external/llvm/lib/IR/
AsmWriter.cpp
793
SmallString<128>
StrVal
;
794
raw_svector_ostream(
StrVal
) << Val;
800
if ((
StrVal
[0] >= '0' &&
StrVal
[0] <= '9') ||
801
((
StrVal
[0] == '-' ||
StrVal
[0] == '+') &&
802
(
StrVal
[1] >= '0' &&
StrVal
[1] <= '9'))) {
804
if (APFloat(APFloat::IEEEdouble,
StrVal
).convertToDouble() == Val) {
805
Out <<
StrVal
.str()
[
all
...]
Completed in 140 milliseconds