reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h
  256   VariantValue &operator=(const VariantValue &Other);

References

tools/clang/lib/ASTMatchers/Dynamic/Parser.cpp
  170           Result.Value = true;
  173           Result.Value = false;
  225         Result->Value = doubleValue;
  232         Result->Value = Value;
  263         Result->Value = Code.substr(1, Length - 1);
  347         *Value = NamedValue;
  361           *Value = VariantMatcher::SingleMatcher(*Bound);
  503   *Value = Result;
  560     *Value = Tokenizer->consumeNextToken().Value;
tools/clang/lib/ASTMatchers/Dynamic/VariantValue.cpp
  250   *this = Other;
tools/clang/tools/extra/clang-query/Query.cpp
  147     QS.NamedValues[Name] = Value;
tools/clang/unittests/ASTMatchers/Dynamic/ParserTest.cpp
  202   Values["nameX"] = llvm::StringRef("x");
  203   Values["hasParamA"] = VariantMatcher::SingleMatcher(
tools/clang/unittests/ASTMatchers/Dynamic/RegistryTest.cpp
   26     Out[0].Value = Arg1;
   32     Out[0].Value = Arg1;
   33     Out[1].Value = Arg2;
tools/clang/unittests/ASTMatchers/Dynamic/VariantValueTest.cpp
   56   Value = VariantMatcher::SingleMatcher(recordDecl());
   62   Value = VariantMatcher::SingleMatcher(ignoringImpCasts(expr()));
   83   Value = VariantMatcher::SingleMatcher(recordDecl());
   94   Value = true;
  102   Value = 3.14;
  111   Value = 17;
  120   Value = VariantValue();
  139   Value = StringRef();