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 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/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 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/Analysis/
ConstantFolding.cpp 487 APInt StrVal(NumBits, 0);
492 StrVal = (StrVal << 8) | SingleChar;
497 StrVal = (StrVal << 8) | SingleChar;
501 StrVal = (StrVal << 8) | SingleChar;
504 Constant *Res = ConstantInt::get(CE->getContext(), StrVal);
    [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/CodeGen/
CGStmt.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp     [all...]

Completed in 160 milliseconds