HomeSort by relevance Sort by last modified time
    Searched refs:Macros (Results 1 - 25 of 32) sorted by null

1 2

  /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...]
  /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/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/chromium_org/native_client_sdk/src/tools/
host_gcc.mk 12 # Macros for TOOLS
35 # Individual Macros
host_vc.mk 12 # Macros for TOOLS
39 # Individual Macros
nacl_gcc.mk 20 # Macros for TOOLS
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
AgentSession.java 28 import org.jivesoftware.smackx.workgroup.ext.macros.MacroGroup;
29 import org.jivesoftware.smackx.workgroup.ext.macros.Macros;
    [all...]
  /external/clang/lib/Lex/
Preprocessor.cpp 115 // Initialize builtin macros like __LINE__ and friends.
244 << NumBuiltinMacroExpanded << " obj/fn/builtin macros expanded, "
256 llvm::errs() << "\n Macros: " << llvm::capacity_in_bytes(Macros);
273 return Macros.begin();
280 + llvm::capacity_in_bytes(Macros)
294 return Macros.end();
461 // information) and predefined macros aren't guaranteed to be set properly.
PPMacroExpansion.cpp 39 macro_iterator Pos = Macros.find(II);
40 assert(Pos != Macros.end() && "Identifier macro info is missing!");
48 MacroDirective *&StoredMD = Macros[II];
61 MacroDirective *&StoredMD = Macros[II];
85 /// RegisterBuiltinMacros - Register builtin macros, such as __LINE__ with the
610 // Reading macro arguments can cause macros that we are currently
613 // identifiers we lex as macro arguments correspond to disabled macros.
680 // separators inside macros. Attempt to correct for this with parentheses.
    [all...]
  /external/clang/lib/Frontend/
FrontendActions.cpp 408 if (!PPOpts.Macros.empty()) {
409 Out.indent(4) << "Predefined macros:\n";
413 I = PPOpts.Macros.begin(), IEnd = PPOpts.Macros.end();
InitPreprocessor.cpp 332 // Compiler version introspection macros.
358 // Define macros for the C11 / C++11 memory orderings
483 // Define type sizing macros based on the target properties.
616 // Macros to control C99 numerics and <float.h>
763 // Even with predefines off, some macros are still predefined.
775 for (unsigned i = 0, e = InitOpts.Macros.size(); i != e; ++i) {
776 if (InitOpts.Macros[i].second) // isUndef
777 Builder.undefineMacro(InitOpts.Macros[i].first);
779 DefineBuiltinMacro(Builder, InitOpts.Macros[i].first,
    [all...]
ChainedIncludesSource.cpp 87 CInvok->getPreprocessorOpts().Macros.clear();
CompilerInstance.cpp 762 /// be removed, because it is one of the ignored macros.
821 PPOpts.Macros.erase(std::remove_if(PPOpts.Macros.begin(), PPOpts.Macros.end(),
823 PPOpts.Macros.end());
    [all...]
CompilerInvocation.cpp     [all...]
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
rails.php 143 'ActionController::Macros',
144 'ActionController::Macros::AutoComplete::ClassMethods',
145 'ActionController::Macros::InPlaceEditing::ClassMethods',
  /external/chromium/base/debug/
trace_event_win_unittest.cc 282 TEST_F(TraceEventTest, Macros) {
  /external/chromium_org/base/debug/
trace_event_win_unittest.cc 288 TEST_F(TraceEventWinTest, Macros) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdflong.asm 2 ;; Macros
xdfprotect.asm 2 ;; Macros
  /external/qemu/distrib/sdl-1.2.15/src/hermes/
mmxp2_32.asm 31 ;; Macros for conversion routines
  /external/clang/lib/Serialization/
ASTReader.cpp 220 MacroDefinitionsMap &Macros,
222 for (unsigned I = 0, N = PPOpts.Macros.size(); I != N; ++I) {
223 StringRef Macro = PPOpts.Macros[I].first;
224 bool IsUndef = PPOpts.Macros[I].second;
232 if (MacroNames && !Macros.count(MacroName))
235 Macros[MacroName] = std::make_pair("", true);
248 if (MacroNames && !Macros.count(MacroName))
250 Macros[MacroName] = std::make_pair(MacroBody, false);
    [all...]
  /external/bison/doc/
refcard.tex 485 \section{Macros}
  /external/mdnsresponder/mDNSShared/
CommonServices.h 260 #pragma warning( disable:4127 ) // Disable "conditional expression is constant" warning for debug macros.
431 // Macros to allow the same code to work on Windows and other sockets API-compatible platforms.
565 #pragma mark == Macros ==
709 Stringify macros to process raw text passed via -D options to C string constants. The double-wrapping is necessary
710 because the C preprocessor doesn't perform its normal argument expansion pre-scan with stringified macros so the
795 // Macros for minimum-width integer constants
    [all...]
  /external/chromium_org/third_party/x86inc/
x86inc.asm 24 ; NASM/YASM syntax combined with a large number of macros to provide easy
116 ; Macros to eliminate most code duplication between x86_32 and x86_64:
629 ; I often want to use macros that permute their arguments. e.g. there's no
635 ; change everything that follows. For more complex macros I may also have multiple
638 ; Hence these macros. Insert a PERMUTE or some SWAPs at the end of a macro that
668 ; Be careful using this mode in nested macros though, as in some cases there may be

Completed in 1478 milliseconds

1 2