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

  /external/bison/doc/
refcard.tex 485 \section{Macros}
  /external/smack/src/org/jivesoftware/smackx/workgroup/ext/macros/
Macros.java 20 package org.jivesoftware.smackx.workgroup.ext.macros;
31 * Macros iq is responsible for handling global and personal macros in the a Live Assistant
34 public class Macros extends IQ {
68 public static final String ELEMENT_NAME = "macros";
104 Macros macroGroup = new Macros();
111 String macros = parser.nextText(); local
112 MacroGroup group = parseMacroGroups(macros);
181 public MacroGroup parseMacroGroups(String macros) throws Exception {
    [all...]
  /external/clang/include/clang/Lex/
PreprocessorOptions.h 46 std::vector<std::pair<std::string, bool/*isUndef*/> > Macros;
188 Macros.push_back(std::make_pair(Name, false));
191 Macros.push_back(std::make_pair(Name, true));
Preprocessor.h 97 /// \brief External source of macros.
109 /// Identifiers for builtin macros and other builtins.
157 /// \brief Whether we have already loaded macros from the external source.
277 /// \#included, and macros currently being expanded from, not counting
308 /// Macros - For each IdentifierInfo that was associated with a macro, we
311 llvm::DenseMap<const IdentifierInfo*, MacroDirective*> Macros;
314 /// \brief Macros that we want to warn because they are not used at the end
317 /// deserializing from PCH, we don't need to deserialize identifier & macros
342 /// Predefines - This string is the predefined macros that preprocessor
572 /// history table. Currently defined macros hav
    [all...]
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 248 std::vector<MacroAction> &Macros;
251 explicit MacroTracker(std::vector<MacroAction> &Macros) : Macros(Macros) { }
255 Macros.push_back(MacroAction(MD->getLocation(),
261 Macros.push_back(MacroAction(MacroNameTok.getLocation(),
297 std::vector<MacroAction> Macros;
298 PP.addPPCallbacks(new MacroTracker(Macros));
314 ASSERT_EQ(9U, Macros.size());
316 ASSERT_TRUE(Macros[0].isDefinition)
    [all...]

Completed in 167 milliseconds