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

1 2 3

  /external/clang/include/clang/Basic/
Attributes.h 27 // Is the identifier known as a pragma attribute?
28 Pragma
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
Attributes.h 29 // Is the identifier known as a pragma attribute?
30 Pragma
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
Attributes.h 29 // Is the identifier known as a pragma attribute?
30 Pragma
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
Attributes.h 29 // Is the identifier known as a pragma attribute?
30 Pragma
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
Attributes.h 29 // Is the identifier known as a pragma attribute?
30 Pragma
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
Attributes.h 29 // Is the identifier known as a pragma attribute?
30 Pragma
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
Attributes.h 29 // Is the identifier known as a pragma attribute?
30 Pragma
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
Attributes.h 29 // Is the identifier known as a pragma attribute?
30 Pragma
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
Attributes.h 29 // Is the identifier known as a pragma attribute?
30 Pragma
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
syntax.go 33 // A Pragma value is a set of flags that augment a function or
36 type Pragma uint16
39 // they're scanned. The returned Pragma value will be unioned into the
41 type PragmaHandler func(pos, line int, text string) Pragma
51 // If a PragmaHandler is provided, it is called with each pragma encountered.
nodes.go 79 Pragma Pragma
104 Pragma Pragma // TODO(mdempsky): Cleaner solution.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
syntax.go 33 // A Pragma value is a set of flags that augment a function or
36 type Pragma uint16
39 // they're scanned. The returned Pragma value will be unioned into the
41 type PragmaHandler func(pos, line int, text string) Pragma
51 // If a PragmaHandler is provided, it is called with each pragma encountered.
nodes.go 79 Pragma Pragma
104 Pragma Pragma // TODO(mdempsky): Cleaner solution.
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
lex.go 41 type Pragma syntax.Pragma
45 Nointerface Pragma = 1 << iota
64 func pragmaValue(verb string) Pragma {
noder.go 26 file, _ := syntax.Parse(src, p.error, p.pragma, 0) // errors are tracked via p.error
190 name.Name.Param.Pragma = Pragma(decl.Pragma)
227 pragma := Pragma(fun.Pragma)
230 f.Noescape = pragma&Noescape != 0
234 f.Func.Pragma = pragma
1023 func (p *noder) pragma(pos, line int, text string) syntax.Pragma { func
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
lex.go 41 type Pragma syntax.Pragma
45 Nointerface Pragma = 1 << iota
64 func pragmaValue(verb string) Pragma {
noder.go 26 file, _ := syntax.Parse(src, p.error, p.pragma, 0) // errors are tracked via p.error
190 name.Name.Param.Pragma = Pragma(decl.Pragma)
227 pragma := Pragma(fun.Pragma)
230 f.Noescape = pragma&Noescape != 0
234 f.Func.Pragma = pragma
1023 func (p *noder) pragma(pos, line int, text string) syntax.Pragma { func
    [all...]
  /frameworks/compile/libbcc/bcinfo/
MetadataExtractor.cpp 138 // Name of metadata node where pragma info resides (should be synced with
140 static const llvm::StringRef PragmaMetadataName = "#pragma";
330 llvm::MDNode *Pragma = PragmaMetadata->getOperand(i);
331 if (Pragma != nullptr && Pragma->getNumOperands() == 2) {
332 llvm::Metadata *PragmaKeyMDS = Pragma->getOperand(0);
334 llvm::Metadata *PragmaValueMDS = Pragma->getOperand(1);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
tokens.h 19 #define Pragma 92
  /external/clang/lib/Sema/
SemaStmtAttr.cpp 69 const char *Pragma =
71 .Case("unroll", "#pragma unroll")
72 .Case("nounroll", "#pragma nounroll")
73 .Default("#pragma clang loop");
74 S.Diag(St->getLocStart(), diag::err_pragma_loop_precedes_nonloop) << Pragma;
82 // #pragma nounroll
89 // #pragma unroll N
93 // #pragma unroll
98 // #pragma clang loop ...
216 // compatible with enable or full form of the unroll pragma because thes
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp 58 if (V == "CXX11" || V == "Pragma")
    [all...]
  /frameworks/compile/slang/
slang_backend.cpp 304 // Insert #pragma information into metadata section of module
311 llvm::SmallVector<llvm::Metadata*, 2> Pragma;
313 Pragma.push_back(llvm::MDString::get(mLLVMContext, I->first));
315 Pragma.push_back(llvm::MDString::get(mLLVMContext, I->second));
319 llvm::MDNode::get(mLLVMContext, Pragma));
650 // Handle forward reference from pragma (see
714 "missing pragma for version in source file"));
723 "missing \"#pragma rs "
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
response.go 198 // Pragma: no-cache
202 if hp, ok := header["Pragma"]; ok && len(hp) > 0 && hp[0] == "no-cache" {
  /prebuilts/go/linux-x86/src/net/http/
response.go 198 // Pragma: no-cache
202 if hp, ok := header["Pragma"]; ok && len(hp) > 0 && hp[0] == "no-cache" {
  /external/clang/lib/Parse/
ParsePragma.cpp 1 //===--- ParsePragma.cpp - Language specific pragma parsing ---------------===//
10 // This file implements the language specific #pragma handlers.
101 /// PragmaCommentHandler - "\#pragma comment ...".
138 /// PragmaOptimizeHandler - "\#pragma clang optimize on/off".
248 // Remove the pragma handlers we installed.
318 /// \brief Handle the annotation token produced for #pragma unused(...)
321 /// "#pragma unused(x,y)" becomes:
524 PP.Lex(Tok); // pragma kind
526 // Figure out which #pragma we're dealing with. The switch has no default
538 // Pragma handling failed, and has been diagnosed. Slurp up the token
    [all...]

Completed in 1131 milliseconds

1 2 3