Home
last modified time | relevance | path

Searched refs:Macros (Results 1 – 25 of 98) sorted by relevance

1234

/external/clang/unittests/Basic/
DSourceManagerTest.cpp256 std::vector<MacroAction> &Macros; member in __anonce5a69150111::__anonce5a69150211::MacroTracker
259 explicit MacroTracker(std::vector<MacroAction> &Macros) : Macros(Macros) { } in MacroTracker() argument
263 Macros.push_back(MacroAction(MD->getLocation(), in MacroDefined()
269 Macros.push_back(MacroAction(MacroNameTok.getLocation(), in MacroExpands()
305 std::vector<MacroAction> Macros; in TEST_F() local
306 PP.addPPCallbacks(llvm::make_unique<MacroTracker>(Macros)); in TEST_F()
322 ASSERT_EQ(9U, Macros.size()); in TEST_F()
324 ASSERT_TRUE(Macros[0].isDefinition); in TEST_F()
325 ASSERT_EQ("M", Macros[0].Name); in TEST_F()
327 ASSERT_TRUE(Macros[1].isDefinition); in TEST_F()
[all …]
/external/clang/include/clang/Lex/
DPreprocessorOptions.h46 std::vector<std::pair<std::string, bool/*isUndef*/> > Macros;
153 Macros.push_back(std::make_pair(Name, false)); in addMacroDef()
156 Macros.push_back(std::make_pair(Name, true)); in addMacroUndef()
/external/libcxx/include/
Dcassert14 Macros:
Dcstdbool17 Macros:
Dclimits17 Macros:
Dcsetjmp17 Macros:
Dclocale17 Macros:
Dcstdarg17 Macros:
Dcsignal17 Macros:
Dcfloat17 Macros:
Dctime17 Macros:
Dcfenv19 Macros:
Dcstddef17 Macros:
Dcstdint17 Macros:
Dcinttypes21 Macros:
/external/llvm/include/llvm/IR/
DDebugInfoFlags.def10 // Macros for running through debug info flags.
DMetadata.def10 // Macros for running through all types of metadata.
/external/ceres-solver/cmake/
DFindEigen.cmake39 # EIGEN_VERSION: Extracted from Eigen/src/Core/util/Macros.h
113 # Extract Eigen version from Eigen/src/Core/util/Macros.h
115 SET(EIGEN_VERSION_FILE ${EIGEN_INCLUDE_DIR}/Eigen/src/Core/util/Macros.h)
/external/clang/lib/Lex/
DPreprocessor.cpp269 llvm::errs() << "\n Macros: " << llvm::capacity_in_bytes(Macros); in PrintStats()
286 return Macros.begin(); in macro_begin()
293 + llvm::capacity_in_bytes(Macros) in getTotalMemory()
307 return Macros.end(); in macro_end()
/external/eigen/cmake/
DFindEigen2.cmake32 file(READ "${EIGEN2_INCLUDE_DIR}/Eigen/src/Core/util/Macros.h" _eigen2_version_header)
DFindEigen3.cmake33 file(READ "${EIGEN3_INCLUDE_DIR}/Eigen/src/Core/util/Macros.h" _eigen3_version_header)
/external/clang/lib/Frontend/
DFrontendActions.cpp528 if (!PPOpts.Macros.empty()) { in ReadPreprocessorOptions()
533 I = PPOpts.Macros.begin(), IEnd = PPOpts.Macros.end(); in ReadPreprocessorOptions()
DInitPreprocessor.cpp938 for (unsigned i = 0, e = InitOpts.Macros.size(); i != e; ++i) { in InitializePreprocessor()
939 if (InitOpts.Macros[i].second) // isUndef in InitializePreprocessor()
940 Builder.undefineMacro(InitOpts.Macros[i].first); in InitializePreprocessor()
942 DefineBuiltinMacro(Builder, InitOpts.Macros[i].first, in InitializePreprocessor()
/external/antlr/antlr-3.4/runtime/C/doxygen/
Dinterop.dox78 /// \bNB: Macros that act like statements must be terminated with a ';'. The macro body does not
79 /// supply this, nor should it. Macros that call functions are declared with () even if they
82 /// \section lexermacros Lexer Macros
85 /// macros, common to all recognizer, and these are documented in the section Common Macros.
249 /// \section parsermacros Parser and Tree Parser Macros
286 /// \section commonmacros Macros Common to All Recognizers
/external/skia/site/dev/contrib/
Dstyle.md135 Macros are all caps with underscores between words. Macros that have greater
160 Macros section in Coding Style Guidelines

1234