HomeSort by relevance Sort by last modified time
    Searched defs:StrVal (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/AsmParser/
LLLexer.h 39 std::string StrVal;
57 const std::string &getStrVal() const { return StrVal; }
LLParser.h 47 t_LocalName, t_GlobalName, // Name in StrVal.
52 t_InlineAsm, // Value in StrVal/StrVal2/UIntVal.
61 std::string StrVal, StrVal2;
81 return StrVal < RHS.StrVal;
  /external/llvm/lib/TableGen/
TGLexer.h 56 Id, StrVal, VarName, CodeFragment
70 std::string CurStrVal; // This is valid for ID, STRVAL, VARNAME, CODEFRAGMENT
94 assert((CurCode == tgtok::Id || CurCode == tgtok::StrVal ||
  /external/clang/lib/Lex/
Pragma.cpp 221 std::string StrVal = getSpelling(StrTok);
228 if (StrVal[0] == 'L') // Remove L prefix.
229 StrVal.erase(StrVal.begin());
230 assert(StrVal[0] == '"' && StrVal[StrVal.size()-1] == '"' &&
235 StrVal[0] = ' ';
238 StrVal[StrVal.size()-1] = '\n'
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp     [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/llvm/lib/VMCore/
AsmWriter.cpp 732 SmallString<128> StrVal;
733 raw_svector_ostream(StrVal) << Val;
739 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
740 ((StrVal[0] == '-' || StrVal[0] == '+') &&
741 (StrVal[1] >= '0' && StrVal[1] <= '9'))) {
743 if (APFloat(APFloat::IEEEdouble, StrVal).convertToDouble() == Val) {
744 Out << StrVal.str()
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp     [all...]

Completed in 143 milliseconds