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

  /external/swiftshader/third_party/LLVM/utils/FileCheck/
FileCheck.cpp 72 /// VariableDefs - Entries in this vector map to definitions of a variable in
74 /// contain "foo(.*)baz" and VariableDefs will contain the pair "bar",1. The
76 std::vector<std::pair<StringRef, unsigned> > VariableDefs;
215 VariableDefs.push_back(std::make_pair(Name, CurParen));
337 for (unsigned i = 0, e = VariableDefs.size(); i != e; ++i) {
338 assert(VariableDefs[i].second < MatchInfo.size() &&
340 VariableTable[VariableDefs[i].first] = MatchInfo[VariableDefs[i].second];
  /external/llvm/utils/FileCheck/
FileCheck.cpp 121 /// VariableDefs - Maps definitions of variables to their parenthesized
123 /// E.g. for the pattern "foo[[bar:.*]]baz", VariableDefs will map "bar" to 1.
124 std::map<StringRef, unsigned> VariableDefs;
159 VariableDefs.empty()); }
319 if (VariableDefs.find(Name) != VariableDefs.end()) {
320 unsigned VarParenNum = VariableDefs[Name];
335 VariableDefs[Name] = CurParen;
466 for (const auto &VariableDef : VariableDefs) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/FileCheck/
FileCheck.cpp 153 /// E.g. for the pattern "foo[[bar:.*]]baz", VariableDefs will map "bar" to
155 std::map<StringRef, unsigned> VariableDefs;
179 return !(VariableUses.empty() && VariableDefs.empty());
348 if (VariableDefs.find(Name) != VariableDefs.end()) {
349 unsigned VarParenNum = VariableDefs[Name];
364 VariableDefs[Name] = CurParen;
500 for (const auto &VariableDef : VariableDefs) {
    [all...]

Completed in 66 milliseconds