Searched defs:VariableDefs (Results 1 - 1 of 1) sorted by relevance

/external/llvm/utils/FileCheck/
H A DFileCheck.cpp95 /// VariableDefs - Maps definitions of variables to their parenthesized
97 /// E.g. for the pattern "foo[[bar:.*]]baz", VariableDefs will map "bar" to 1.
98 std::map<StringRef, unsigned> VariableDefs; member in class:Pattern
133 VariableDefs.empty()); }
285 if (VariableDefs.find(Name) != VariableDefs.end()) {
286 unsigned VarParenNum = VariableDefs[Name];
301 VariableDefs[Name] = CurParen;
426 for (std::map<StringRef, unsigned>::const_iterator I = VariableDefs.begin(),
427 E = VariableDefs
[all...]

Completed in 88 milliseconds