Searched refs:Macros (Results 1 – 25 of 98) sorted by relevance
1234
/external/clang/unittests/Basic/ |
D | SourceManagerTest.cpp | 256 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/ |
D | PreprocessorOptions.h | 46 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/ |
D | cassert | 14 Macros:
|
D | cstdbool | 17 Macros:
|
D | climits | 17 Macros:
|
D | csetjmp | 17 Macros:
|
D | clocale | 17 Macros:
|
D | cstdarg | 17 Macros:
|
D | csignal | 17 Macros:
|
D | cfloat | 17 Macros:
|
D | ctime | 17 Macros:
|
D | cfenv | 19 Macros:
|
D | cstddef | 17 Macros:
|
D | cstdint | 17 Macros:
|
D | cinttypes | 21 Macros:
|
/external/llvm/include/llvm/IR/ |
D | DebugInfoFlags.def | 10 // Macros for running through debug info flags.
|
D | Metadata.def | 10 // Macros for running through all types of metadata.
|
/external/ceres-solver/cmake/ |
D | FindEigen.cmake | 39 # 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/ |
D | Preprocessor.cpp | 269 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/ |
D | FindEigen2.cmake | 32 file(READ "${EIGEN2_INCLUDE_DIR}/Eigen/src/Core/util/Macros.h" _eigen2_version_header)
|
D | FindEigen3.cmake | 33 file(READ "${EIGEN3_INCLUDE_DIR}/Eigen/src/Core/util/Macros.h" _eigen3_version_header)
|
/external/clang/lib/Frontend/ |
D | FrontendActions.cpp | 528 if (!PPOpts.Macros.empty()) { in ReadPreprocessorOptions() 533 I = PPOpts.Macros.begin(), IEnd = PPOpts.Macros.end(); in ReadPreprocessorOptions()
|
D | InitPreprocessor.cpp | 938 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/ |
D | interop.dox | 78 /// \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/ |
D | style.md | 135 Macros are all caps with underscores between words. Macros that have greater 160 Macros section in Coding Style Guidelines
|
1234