HomeSort by relevance Sort by last modified time
    Searched defs:Macros (Results 1 - 6 of 6) sorted by null

  /external/bison/doc/
refcard.tex 485 \section{Macros}
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugMacro.h 47 MacroList Macros;
  /external/clang/include/clang/Lex/
PreprocessorOptions.h 46 std::vector<std::pair<std::string, bool/*isUndef*/> > Macros;
152 void addMacroDef(StringRef Name) { Macros.emplace_back(Name, false); }
153 void addMacroUndef(StringRef Name) { Macros.emplace_back(Name, true); }
Preprocessor.h 108 /// \brief External source of macros.
120 /// Identifiers for builtin macros and other builtins.
171 /// \brief Whether we have already loaded macros from the external source.
323 /// \#included, and macros currently being expanded from, not counting
379 /// The active module macros for this identifier.
386 /// The module macros that are overridden by this macro.
459 // FIXME: Incorporate module macros into the result of this.
525 /// The macros for the submodule.
526 MacroMap Macros;
541 /// The set of known macros exported from modules
906 macros(bool IncludeExternalMacros = true) const { function in class:clang::Preprocessor
    [all...]
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 255 std::vector<MacroAction> &Macros;
258 explicit MacroTracker(std::vector<MacroAction> &Macros) : Macros(Macros) { }
262 Macros.push_back(MacroAction(MD->getLocation(),
268 Macros.push_back(MacroAction(MacroNameTok.getLocation(),
304 std::vector<MacroAction> Macros;
305 PP.addPPCallbacks(llvm::make_unique<MacroTracker>(Macros));
321 ASSERT_EQ(9U, Macros.size());
323 ASSERT_TRUE(Macros[0].isDefinition)
    [all...]
  /external/llvm/unittests/IR/
MetadataTest.cpp     [all...]

Completed in 402 milliseconds