OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Preamble
(Results
1 - 4
of
4
) sorted by null
/external/clang/lib/Frontend/
FrontendActions.cpp
260
unsigned
Preamble
= Lexer::ComputePreamble(Buffer, CI.getLangOpts()).first;
261
llvm::outs().write(Buffer->getBufferStart(),
Preamble
);
CompilerInstance.cpp
291
bool
Preamble
= getPreprocessorOpts().PrecompiledPreambleBytes.first != 0;
297
Preamble
));
310
bool
Preamble
) {
319
Preamble
? serialization::MK_Preamble
[
all
...]
/external/clang/include/clang/Frontend/
ASTUnit.h
136
/// \brief The set of diagnostics produced when creating the
preamble
.
155
/// precompiled
preamble
.
157
/// If zero, we will never build a precompiled
preamble
. Otherwise,
159
/// without the benefit of a precompiled
preamble
. When it hits 1,
161
/// building the precompiled
preamble
fails, we won't try again for
165
/// \brief The file in which the precompiled
preamble
is stored.
207
return
Preamble
;
212
/// \brief The contents of the
preamble
that has been precompiled to
214
PreambleData
Preamble
;
216
/// \brief Whether the
preamble
ends at the start of a new line
[
all
...]
/external/clang/lib/Rewrite/
RewriteObjC.cpp
121
std::string
Preamble
;
589
Preamble
= "#pragma once\n";
590
Preamble
+= "struct objc_selector; struct objc_class;\n";
591
Preamble
+= "struct __rw_objc_super { struct objc_object *object; ";
592
Preamble
+= "struct objc_object *superClass; ";
595
Preamble
+= "__rw_objc_super(struct objc_object *o, struct objc_object *s) "
597
Preamble
+= "object(o), superClass(s) {} ";
599
Preamble
+= "};\n";
600
Preamble
+= "#ifndef _REWRITER_typedef_Protocol\n";
601
Preamble
+= "typedef struct objc_object Protocol;\n"
[
all
...]
Completed in 130 milliseconds