Searched refs:Macros (Results 1 - 25 of 32) sorted by relevance

12

/external/clang/unittests/Basic/
H A DSourceManagerTest.cpp256 std::vector<MacroAction> &Macros; member in class:__anon19539::__anon19540::MacroTracker
259 explicit MacroTracker(std::vector<MacroAction> &Macros) : Macros(Macros) { } argument
263 Macros.push_back(MacroAction(MD->getLocation(),
269 Macros.push_back(MacroAction(MacroNameTok.getLocation(),
305 std::vector<MacroAction> Macros; local
306 PP.addPPCallbacks(new MacroTracker(Macros));
322 ASSERT_EQ(9U, Macros.size());
324 ASSERT_TRUE(Macros[
[all...]
/external/clang/include/clang/Lex/
H A DPreprocessorOptions.h46 std::vector<std::pair<std::string, bool/*isUndef*/> > Macros; member in class:clang::PreprocessorOptions
153 Macros.push_back(std::make_pair(Name, false));
156 Macros.push_back(std::make_pair(Name, true));
H A DPreprocessor.h351 llvm::DenseMap<const IdentifierInfo*, MacroDirective*> Macros; member in class:clang::Preprocessor
354 /// \brief Macros that we want to warn because they are not used at the end
/external/smack/src/org/jivesoftware/smackx/workgroup/ext/macros/
H A DMacros.java31 * Macros iq is responsible for handling global and personal macros in the a Live Assistant
34 public class Macros extends IQ { class in inherits:IQ
104 Macros macroGroup = new Macros();
/external/chromium_org/native_client_sdk/src/tools/
H A Dhost_vc.mk12 # Macros for TOOLS
39 # Individual Macros
H A Dhost_gcc.mk12 # Macros for TOOLS
40 # Individual Macros
H A Dnacl_gcc.mk11 # Macros for TOOLS
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/
H A DAgentSession.java29 import org.jivesoftware.smackx.workgroup.ext.macros.Macros;
919 * Asks the workgroup for it's Global Macros.
926 Macros request = new Macros();
935 Macros response = (Macros)collector.nextResult(SmackConfiguration.getPacketReplyTimeout());
955 Macros request = new Macros();
/external/clang/lib/Lex/
H A DPreprocessor.cpp254 llvm::errs() << "\n Macros: " << llvm::capacity_in_bytes(Macros);
271 return Macros.begin();
278 + llvm::capacity_in_bytes(Macros)
292 return Macros.end();
H A DPPMacroExpansion.cpp40 macro_iterator Pos = Macros.find(II);
41 assert(Pos != Macros.end() && "Identifier macro info is missing!");
49 MacroDirective *&StoredMD = Macros[II];
62 MacroDirective *&StoredMD = Macros[II];
/external/clang/lib/Frontend/
H A DFrontendActions.cpp505 if (!PPOpts.Macros.empty()) {
510 I = PPOpts.Macros.begin(), IEnd = PPOpts.Macros.end();
H A DInitPreprocessor.cpp792 // Macros to control C99 numerics and <float.h>
887 for (unsigned i = 0, e = InitOpts.Macros.size(); i != e; ++i) {
888 if (InitOpts.Macros[i].second) // isUndef
889 Builder.undefineMacro(InitOpts.Macros[i].first);
891 DefineBuiltinMacro(Builder, InitOpts.Macros[i].first,
H A DChainedIncludesSource.cpp135 CInvok->getPreprocessorOpts().Macros.clear();
H A DCompilerInstance.cpp877 PPOpts.Macros.erase(
878 std::remove_if(PPOpts.Macros.begin(), PPOpts.Macros.end(),
883 PPOpts.Macros.end());
H A DCompilerInvocation.cpp1930 I = getPreprocessorOpts().Macros.begin(),
1931 IEnd = getPreprocessorOpts().Macros.end();
/external/chromium_org/base/debug/
H A Dtrace_event_win_unittest.cc288 TEST_F(TraceEventWinTest, Macros) {
/external/libunwind/doc/
H A Dlibunwind-ia64.tex73 \subsection{Frame-register Macros}
103 \subsection{Normal Register Macros}
157 \subsection{Convenience Macros}
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
H A Dxdflong.asm2 ;; Macros
H A Dxdfprotect.asm2 ;; Macros
/external/qemu/distrib/sdl-1.2.15/src/hermes/
H A Dmmxp2_32.asm31 ;; Macros for conversion routines
/external/bison/doc/
H A Drefcard.tex485 \section{Macros}
482 \\section{Macros} section
/external/mdnsresponder/mDNSShared/
H A DCommonServices.h431 // Macros to allow the same code to work on Windows and other sockets API-compatible platforms.
565 #pragma mark == Macros ==
795 // Macros for minimum-width integer constants
/external/clang/lib/Serialization/
H A DASTReader.cpp417 MacroDefinitionsMap &Macros,
419 for (unsigned I = 0, N = PPOpts.Macros.size(); I != N; ++I) {
420 StringRef Macro = PPOpts.Macros[I].first;
421 bool IsUndef = PPOpts.Macros[I].second;
429 if (MacroNames && !Macros.count(MacroName))
432 Macros[MacroName] = std::make_pair("", true);
445 if (MacroNames && !Macros.count(MacroName))
447 Macros[MacroName] = std::make_pair(MacroBody, false);
1581 Deserializing Macros(this);
1789 // Macros i
416 collectMacroDefinitions(const PreprocessorOptions &PPOpts, MacroDefinitionsMap &Macros, SmallVectorImpl<StringRef> *MacroNames = nullptr) argument
[all...]
H A DASTWriter.cpp1212 Record.push_back(PPOpts.Macros.size());
1213 for (unsigned I = 0, N = PPOpts.Macros.size(); I != N; ++I) {
1214 AddString(PPOpts.Macros[I].first, Record);
1215 Record.push_back(PPOpts.Macros[I].second);
/external/chromium_org/third_party/x86inc/
H A Dx86inc.asm116 ; Macros to eliminate most code duplication between x86_32 and x86_64:

Completed in 1256 milliseconds

12