OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Directive
(Results
1 - 9
of
9
) sorted by null
/external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp
151
unsigned
Directive
= ST->getDarwinDirective();
154
if (
Directive
== PPC::DIR_440)
159
if (
Directive
== PPC::DIR_A2)
163
if (
Directive
== PPC::DIR_E500mc ||
Directive
== PPC::DIR_E5500)
PPCAsmPrinter.cpp
805
///
directive
.
846
unsigned
Directive
= Subtarget.getDarwinDirective();
847
if (Subtarget.hasMFOCRF() &&
Directive
< PPC::DIR_970)
848
Directive
= PPC::DIR_970;
849
if (Subtarget.hasAltivec() &&
Directive
< PPC::DIR_7400)
850
Directive
= PPC::DIR_7400;
851
if (Subtarget.isPPC64() &&
Directive
< PPC::DIR_64)
852
Directive
= PPC::DIR_64;
853
assert(
Directive
<= PPC::DIR_64 && "
Directive
out of range.")
[
all
...]
PPCInstrInfo.cpp
57
unsigned
Directive
= TM->getSubtarget<PPCSubtarget>().getDarwinDirective();
58
if (
Directive
== PPC::DIR_440 ||
Directive
== PPC::DIR_A2 ||
59
Directive
== PPC::DIR_E500mc ||
Directive
== PPC::DIR_E5500) {
72
unsigned
Directive
= TM.getSubtarget<PPCSubtarget>().getDarwinDirective();
75
if (
Directive
!= PPC::DIR_440 &&
Directive
!= PPC::DIR_A2 &&
76
Directive
!= PPC::DIR_E500mc &&
Directive
!= PPC::DIR_E5500)
[
all
...]
/external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h
66
/// the diagnostic will appear, rather than placing the expected-*
directive
in
129
/// VerifyDiagnosticConsumer expects at least one expected-*
directive
to
131
/// following
directive
can be used to indicate this:
140
///
Directive
- Abstract class representing a parsed verify
directive
.
142
class
Directive
{
144
static
Directive
*create(bool RegexKind, SourceLocation DirectiveLoc,
156
virtual ~
Directive
() { }
158
// Returns true if
directive
text is valid.
166
Directive
(SourceLocation DirectiveLoc, SourceLocation DiagnosticLoc
[
all
...]
/external/clang/lib/Parse/
ParseOpenMP.cpp
29
/// threadprivate-
directive
:
33
assert(Tok.is(tok::annot_pragma_openmp) && "Not an OpenMP
directive
!");
74
/// threadprivate-
directive
:
78
/// parallel-
directive
:
82
assert(Tok.is(tok::annot_pragma_openmp) && "Not an OpenMP
directive
!");
92
StmtResult
Directive
= StmtError();
108
Directive
= Actions.ActOnDeclStmt(Res, Loc, Tok.getLocation());
130
// End location of the
directive
.
155
Directive
= Actions.ActOnOpenMPExecutableDirective(DKind, Clauses,
174
return
Directive
;
[
all
...]
/external/chromium_org/native_client_sdk/src/doc/_sphinxext/
devsite_builder.py
15
from docutils.parsers.rst import
Directive
, directives
339
class NaclCodeDirective(
Directive
):
340
""" Custom "naclcode"
directive
for code snippets. To keep it under our
/external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp
26
typedef VerifyDiagnosticConsumer::
Directive
Directive
;
161
/// StandardDirective -
Directive
with string matching.
163
class StandardDirective : public
Directive
{
167
:
Directive
(DirectiveLoc, DiagnosticLoc, Text, Min, Max) { }
179
/// RegexDirective -
Directive
with regular-expression matching.
181
class RegexDirective : public
Directive
{
185
:
Directive
(DirectiveLoc, DiagnosticLoc, Text, Min, Max), Regex(Text) { }
282
/// diagnostics. If so, then put them in the appropriate
directive
list.
329
// If a
directive
has been found but we're not intereste
[
all
...]
/external/clang/lib/Lex/
PPDirectives.cpp
1
//===--- PPDirectives.cpp -
Directive
Handling for Preprocessor -----------===//
11
/// \brief Implements #
directive
processing for the Preprocessor.
32
// Utility Methods for Preprocessor
Directive
Handling.
127
assert(Tmp.isNot(tok::eof) && "EOF seen while discarding
directive
tokens");
136
/// this is due to a a \#define, 2 if \#undef
directive
, 0 if it is something
211
// There should be no tokens after the
directive
, but we allow them as an
218
// or if this is a macro-style preprocessing
directive
, because it is more
232
/// SkipExcludedConditionalBlock - We just read a \#if or related
directive
and
236
/// this \#if
directive
, so \#else/\#elif blocks should never be entered.
238
/// already seen one so a \#else
directive
is a duplicate. When this returns
[
all
...]
/external/llvm/lib/MC/
MCAsmStreamer.cpp
568
// Note: a .zerofill
directive
does not switch sections.
571
// This is a mach-o specific
directive
.
590
// This is a mach-o specific
directive
and section.
669
const char *
Directive
= 0;
672
case 1:
Directive
= MAI->getData8bitsDirective(); break;
673
case 2:
Directive
= MAI->getData16bitsDirective(); break;
674
case 4:
Directive
= MAI->getData32bitsDirective(); break;
676
Directive
= MAI->getData64bitsDirective();
678
if (
Directive
) break;
692
assert(
Directive
&& "Invalid size for machine code value!")
[
all
...]
Completed in 751 milliseconds