Home
last modified time | relevance | path

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

12345

/external/clang/unittests/Basic/
DSourceManagerTest.cpp256 std::vector<MacroAction> &Macros; member in __anonc0f8f66c0111::__anonc0f8f66c0211::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(new 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/smack/src/org/jivesoftware/smackx/workgroup/ext/macros/
DMacros.java34 public class Macros extends IQ { class
104 Macros macroGroup = new Macros(); in parseIQ()
/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/smack/src/org/jivesoftware/smackx/workgroup/agent/
DAgentSession.java29 import org.jivesoftware.smackx.workgroup.ext.macros.Macros;
926 Macros request = new Macros(); in getMacros()
935 Macros response = (Macros)collector.nextResult(SmackConfiguration.getPacketReplyTimeout()); in getMacros()
955 Macros request = new Macros(); in saveMacros()
/external/clang/lib/Lex/
DPreprocessor.cpp254 llvm::errs() << "\n Macros: " << llvm::capacity_in_bytes(Macros); in PrintStats()
271 return Macros.begin(); in macro_begin()
278 + llvm::capacity_in_bytes(Macros) in getTotalMemory()
292 return Macros.end(); in macro_end()
/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/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.cpp505 if (!PPOpts.Macros.empty()) { in ReadPreprocessorOptions()
510 I = PPOpts.Macros.begin(), IEnd = PPOpts.Macros.end(); in ReadPreprocessorOptions()
DInitPreprocessor.cpp887 for (unsigned i = 0, e = InitOpts.Macros.size(); i != e; ++i) { in InitializePreprocessor()
888 if (InitOpts.Macros[i].second) // isUndef in InitializePreprocessor()
889 Builder.undefineMacro(InitOpts.Macros[i].first); in InitializePreprocessor()
891 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/eigen/Eigen/
DEigen2Support43 #include "src/Eigen2Support/Macros.h"

12345