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

  /external/clang/lib/Lex/
Pragma.cpp 218 std::string StrVal = getSpelling(StrTok);
225 if (StrVal[0] == 'L') // Remove L prefix.
226 StrVal.erase(StrVal.begin());
227 assert(StrVal[0] == '"' && StrVal[StrVal.size()-1] == '"' &&
232 StrVal[0] = ' ';
235 StrVal[StrVal.size()-1] = '\n'
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.h 39 std::string StrVal;
57 const std::string &getStrVal() const { return StrVal; }
LLLexer.cpp 219 StrVal.assign(TokStart, CurPtr-1);
230 StrVal.assign(TokStart, CurPtr-1);
281 StrVal.assign(TokStart+2, CurPtr-1);
282 UnEscapeLexed(StrVal);
318 StrVal.assign(Start, CurPtr-1);
319 UnEscapeLexed(StrVal);
335 StrVal.assign(NameStart, CurPtr);
399 StrVal.assign(TokStart+1, CurPtr); // Skip !
400 UnEscapeLexed(StrVal);
424 StrVal.assign(StartChar-1, CurPtr++)
    [all...]
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;
LLParser.cpp 76 TheFn = M->getFunction(Fn.StrVal);
134 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
142 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
    [all...]
  /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 ||
TGParser.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 235 std::string StrVal = ftostr(CFP->getValueAPF());
237 while (StrVal[0] == ' ')
238 StrVal.erase(StrVal.begin());
242 if (((StrVal[0] >= '0' && StrVal[0] <= '9') ||
243 ((StrVal[0] == '-' || StrVal[0] == '+') &&
244 (StrVal[1] >= '0' && StrVal[1] <= '9'))) &
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 484 APInt StrVal(NumBits, 0);
489 StrVal = (StrVal << 8) | SingleChar;
494 StrVal = (StrVal << 8) | SingleChar;
498 StrVal = (StrVal << 8) | SingleChar;
501 Constant *Res = ConstantInt::get(CE->getContext(), StrVal);
    [all...]
  /external/llvm/lib/VMCore/
AsmWriter.cpp 727 SmallString<128> StrVal;
728 raw_svector_ostream(StrVal) << Val;
734 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
735 ((StrVal[0] == '-' || StrVal[0] == '+') &&
736 (StrVal[1] >= '0' && StrVal[1] <= '9'))) {
738 if (APFloat(APFloat::IEEEdouble, StrVal).convertToDouble() == Val) {
739 Out << StrVal.str()
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp     [all...]

Completed in 652 milliseconds