HomeSort by relevance Sort by last modified time
    Searched refs:Preprocessor (Results 76 - 100 of 157) sorted by null

1 2 34 5 6 7

  /external/clang/lib/ARCMigrate/
TransformActions.cpp 14 #include "clang/Lex/Preprocessor.h"
32 Preprocessor &PP;
68 CharRange(CharSourceRange range, SourceManager &srcMgr, Preprocessor &PP) {
99 SourceManager &SrcMgr, Preprocessor &PP) {
123 ASTContext &ctx, Preprocessor &PP)
179 SourceManager &SM,Preprocessor &PP);
593 Preprocessor &PP) {
603 ASTContext &ctx, Preprocessor &PP)
Internals.h 55 ASTContext &ctx, Preprocessor &PP);
  /external/clang/tools/libclang/
Indexing.cpp 28 #include "clang/Lex/Preprocessor.h"
59 Preprocessor &pp) { }
69 /// preprocessor conditional directive that it belongs to.
72 /// As an example of different regions separated by preprocessor directives:
172 Preprocessor &PP;
182 Preprocessor &pp)
248 Preprocessor &PP;
253 IndexPPCallbacks(Preprocessor &PP, IndexingContext &indexCtx)
427 Preprocessor &PP = CI.getPreprocessor();
695 Preprocessor &PP = Unit.getPreprocessor()
    [all...]
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 20 #include "clang/Lex/Preprocessor.h"
84 Preprocessor PP(new PreprocessorOptions(), Diags, LangOpts, SourceMgr,
201 Preprocessor PP(new PreprocessorOptions(), Diags, LangOpts, SourceMgr,
299 Preprocessor PP(new PreprocessorOptions(), Diags, LangOpts, SourceMgr,
  /external/ceres-solver/include/ceres/
problem.h 59 class Preprocessor;
  /external/clang/include/clang/StaticAnalyzer/Core/
AnalyzerOptions.h 28 class Preprocessor;
  /external/clang/lib/Lex/
MacroInfo.cpp 15 #include "clang/Lex/Preprocessor.h"
72 bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP,
PPExpressions.cpp 1 //===--- PPExpressions.cpp - Preprocessor Expression Evaluation -----------===//
10 // This file implements the Preprocessor::EvaluateDirectiveExpression method,
19 #include "clang/Lex/Preprocessor.h"
32 /// PPValue - Represents the value of a subexpression of a preprocessor
59 Preprocessor &PP);
83 bool ValueLive, Preprocessor &PP) {
170 bool ValueLive, Preprocessor &PP) {
189 // preprocessor keywords and it wasn't macro expanded, it turns
459 Preprocessor &PP) {
737 bool Preprocessor:
    [all...]
  /external/clang/lib/Rewrite/Frontend/
InclusionRewriter.cpp 20 #include "clang/Lex/Preprocessor.h"
31 /// created by preprocessor callbacks.
40 Preprocessor &PP; ///< Used to find inclusion directives.
43 const llvm::MemoryBuffer *PredefinesBuffer; ///< The preprocessor predefines.
52 InclusionRewriter(Preprocessor &PP, raw_ostream &OS, bool ShowLineMarkers);
89 InclusionRewriter::InclusionRewriter(Preprocessor &PP, raw_ostream &OS,
113 // http://gcc.gnu.org/onlinedocs/cpp/Preprocessor-Output.html
137 /// FileChanged - Whenever the preprocessor enters or exits a #include file
164 /// This should be called whenever the preprocessor encounters include
493 // the whole #include could be inside a preprocessor conditiona
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 20 #include "clang/Lex/Preprocessor.h"
43 const Preprocessor &PP;
46 HTMLDiagnostics(AnalyzerOptions &AnalyzerOpts, const std::string& prefix, const Preprocessor &pp);
76 const Preprocessor &pp)
83 const Preprocessor &PP) {
167 // If we have a preprocessor, relex the file and syntax highlight.
168 // We might not have a preprocessor if we come from a deserialized AST file,
PlistDiagnostics.cpp 19 #include "clang/Lex/Preprocessor.h"
70 const Preprocessor &PP) {
78 const Preprocessor &PP) {
  /external/clang/unittests/Lex/
PPConditionalDirectiveRecordTest.cpp 21 #include "clang/Lex/Preprocessor.h"
99 Preprocessor PP(new PreprocessorOptions(), Diags, LangOpts, SourceMgr,
  /external/chromium_org/third_party/markdown/extensions/
footnotes.py 61 from ..preprocessors import Preprocessor
107 # Insert a preprocessor before ReferencePreprocessor
197 class FootnotePreprocessor(Preprocessor):
  /external/clang/lib/Frontend/
ChainedIncludesSource.cpp 19 #include "clang/Lex/Preprocessor.h"
80 Preprocessor &PP = CI.getPreprocessor();
170 Preprocessor &PP = Clang->getPreprocessor();
VerifyDiagnosticConsumer.cpp 20 #include "clang/Lex/Preprocessor.h"
62 /// \brief Hook into the preprocessor and update the list of parsed
63 /// files when the preprocessor indicates a new file is entered.
77 const Preprocessor *PP) {
84 const_cast<Preprocessor*>(PP)->addCommentHandler(this);
88 const_cast<Preprocessor*>(PP)->addPPCallbacks(V);
93 assert((!PP || CurrentPreprocessor == PP) && "Preprocessor changed!");
104 const_cast<Preprocessor*>(CurrentPreprocessor)->removeCommentHandler(this);
314 Preprocessor *PP, SourceLocation Pos,
403 // Lookup file via Preprocessor, like a #include
    [all...]
CacheTokens.cpp 22 #include "clang/Lex/Preprocessor.h"
156 // and the preprocessor blocks table.
187 Preprocessor& PP;
239 PTHWriter(llvm::raw_fd_ostream& out, Preprocessor& pp)
315 // preprocessor directive. Observe that we continue processing
440 assert(PPStartCond.empty() && "Error: imblanced preprocessor conditionals.");
563 void clang::CacheTokens(Preprocessor &PP, llvm::raw_fd_ostream* OS) {
FrontendActions.cpp 20 #include "clang/Lex/Preprocessor.h"
499 Out.indent(2) << "Preprocessor options:\n";
544 // Preprocessor Actions
548 Preprocessor &PP = getCompilerInstance().getPreprocessor();
566 Preprocessor &PP = getCompilerInstance().getPreprocessor();
593 Preprocessor &PP = getCompilerInstance().getPreprocessor();
CompilerInstance.cpp 31 #include "clang/Lex/Preprocessor.h"
96 void CompilerInstance::setPreprocessor(Preprocessor *Value) { PP = Value; }
287 // Preprocessor
297 // Create the Preprocessor.
303 PP = new Preprocessor(&getPreprocessorOpts(), getDiagnostics(), getLangOpts(),
308 // Note that this is different then passing PTHMgr to Preprocessor's ctor.
323 // Predefine macros and configure the preprocessor.
379 Preprocessor &PP = getPreprocessor();
404 bool AllowPCHWithCompilerErrors, Preprocessor &PP, ASTContext &Context,
450 static bool EnableCodeCompletion(Preprocessor &PP
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 1 //===--- Preprocessor.h - C Language Family Preprocessor --------*- C++ -*-===//
11 /// \brief Defines the clang::Preprocessor interface.
86 /// know anything about preprocessor-level issues like the \#include stack,
88 class Preprocessor : public RefCountedBase<Preprocessor> {
108 /// objects internal to the Preprocessor.
140 // State that is set before the preprocessor begins.
145 // State that changes while the preprocessor runs:
148 /// Whether the preprocessor owns the header search object
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h 78 class Preprocessor;
159 /// \brief Receives the preprocessor options.
162 /// that are suggested by the preprocessor options. Typically only used when
165 /// \returns true to indicate the preprocessor options are invalid, or false
234 /// the PCH file against an initialized Preprocessor.
236 Preprocessor &PP;
240 PCHValidator(Preprocessor &PP, ASTReader &Reader)
352 /// \brief The preprocessor that will be loading the source file.
353 Preprocessor &PP;
    [all...]
  /external/clang/lib/AST/
RawCommentList.cpp 144 const Preprocessor *PP,
  /external/markdown/markdown/extensions/
footnotes.py 59 # Insert a preprocessor before ReferencePreprocessor
147 class FootnotePreprocessor(markdown.preprocessors.Preprocessor):
  /frameworks/compile/slang/
slang_rs_context.cpp 45 RSContext::RSContext(clang::Preprocessor &PP,
  /external/chromium_org/third_party/angle/src/
preprocessor.target.darwin-arm.mk 25 third_party/angle/src/compiler/preprocessor/DiagnosticsBase.cpp \
26 third_party/angle/src/compiler/preprocessor/DirectiveHandlerBase.cpp \
27 third_party/angle/src/compiler/preprocessor/DirectiveParser.cpp \
28 third_party/angle/src/compiler/preprocessor/ExpressionParser.cpp \
29 third_party/angle/src/compiler/preprocessor/Input.cpp \
30 third_party/angle/src/compiler/preprocessor/Lexer.cpp \
31 third_party/angle/src/compiler/preprocessor/Macro.cpp \
32 third_party/angle/src/compiler/preprocessor/MacroExpander.cpp \
33 third_party/angle/src/compiler/preprocessor/Preprocessor.cpp
    [all...]
preprocessor.target.darwin-arm64.mk 25 third_party/angle/src/compiler/preprocessor/DiagnosticsBase.cpp \
26 third_party/angle/src/compiler/preprocessor/DirectiveHandlerBase.cpp \
27 third_party/angle/src/compiler/preprocessor/DirectiveParser.cpp \
28 third_party/angle/src/compiler/preprocessor/ExpressionParser.cpp \
29 third_party/angle/src/compiler/preprocessor/Input.cpp \
30 third_party/angle/src/compiler/preprocessor/Lexer.cpp \
31 third_party/angle/src/compiler/preprocessor/Macro.cpp \
32 third_party/angle/src/compiler/preprocessor/MacroExpander.cpp \
33 third_party/angle/src/compiler/preprocessor/Preprocessor.cpp
    [all...]

Completed in 582 milliseconds

1 2 34 5 6 7