Searched refs:Declaration (Results 1 - 25 of 120) sorted by relevance

12345

/external/llvm/lib/Transforms/IPO/
H A DExtractGV.cpp137 llvm::Value *Declaration; variable
139 Declaration = Function::Create(FTy, GlobalValue::ExternalLinkage,
143 Declaration =
148 CurI->replaceAllUsesWith(Declaration);
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_two_side.c76 if (decl->Declaration.File == TGSI_FILE_INPUT) {
88 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
109 decl.Declaration.File = TGSI_FILE_INPUT;
110 decl.Declaration.Interpolate = 1;
111 decl.Declaration.Semantic = 1;
125 decl.Declaration.File = TGSI_FILE_TEMPORARY;
135 decl.Declaration.File = TGSI_FILE_INPUT;
136 decl.Declaration.Semantic = 1;
H A Dtgsi_emulate.c53 decl->Declaration.File == TGSI_FILE_INPUT) {
54 assert(decl->Declaration.Interpolate);
70 decl.Declaration.File = TGSI_FILE_INPUT;
76 decl.Declaration.File = TGSI_FILE_OUTPUT;
77 decl.Declaration.Semantic = true;
H A Dtgsi_parse.c108 copy_token(&decl->Declaration, &token);
112 if (decl->Declaration.Dimension) {
116 if (decl->Declaration.Interpolate) {
120 if (decl->Declaration.Semantic) {
124 if (decl->Declaration.File == TGSI_FILE_IMAGE) {
128 if (decl->Declaration.File == TGSI_FILE_SAMPLER_VIEW) {
132 if (decl->Declaration.Array) {
H A Dtgsi_transform.h104 decl.Declaration.File = TGSI_FILE_TEMPORARY;
124 decl.Declaration.File = TGSI_FILE_CONSTANT;
139 decl.Declaration.File = TGSI_FILE_INPUT;
140 decl.Declaration.Interpolate = 1;
141 decl.Declaration.Semantic = 1;
160 decl.Declaration.File = TGSI_FILE_OUTPUT;
161 decl.Declaration.Interpolate = 1;
162 decl.Declaration.Semantic = 1;
179 decl.Declaration.File = TGSI_FILE_SAMPLER;
194 decl.Declaration
[all...]
H A Dtgsi_dump.c306 TXT(tgsi_file_name(decl->Declaration.File));
311 if (decl->Declaration.File == TGSI_FILE_INPUT &&
320 if (decl->Declaration.File == TGSI_FILE_OUTPUT &&
326 if (decl->Declaration.Dimension) {
342 decl->Declaration.UsageMask );
344 if (decl->Declaration.Array) {
350 if (decl->Declaration.Local)
353 if (decl->Declaration.Semantic) {
378 if (decl->Declaration.File == TGSI_FILE_IMAGE) {
389 if (decl->Declaration
[all...]
H A Dtgsi_build.c382 full_declaration.Declaration = tgsi_default_declaration();
410 full_decl->Declaration.File,
411 full_decl->Declaration.UsageMask,
412 full_decl->Declaration.Interpolate,
413 full_decl->Declaration.Dimension,
414 full_decl->Declaration.Semantic,
415 full_decl->Declaration.Invariant,
416 full_decl->Declaration.Local,
417 full_decl->Declaration.Array,
418 full_decl->Declaration
[all...]
H A Dtgsi_parse.h62 struct tgsi_declaration Declaration; member in struct:tgsi_full_declaration
H A Dtgsi_aa_point.c67 if (decl->Declaration.File == TGSI_FILE_OUTPUT &&
72 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
75 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
H A Dtgsi_scan.c432 const uint file = fulldecl->Declaration.File;
436 if (fulldecl->Declaration.Array) {
470 if (fulldecl->Declaration.Dimension)
548 info->output_usagemask[reg] |= fulldecl->Declaration.UsageMask;
551 if (fulldecl->Declaration.UsageMask & TGSI_WRITEMASK_X) {
555 if (fulldecl->Declaration.UsageMask & TGSI_WRITEMASK_Y) {
559 if (fulldecl->Declaration.UsageMask & TGSI_WRITEMASK_Z) {
563 if (fulldecl->Declaration.UsageMask & TGSI_WRITEMASK_W) {
784 if (decl->Declaration.Array && decl->Declaration
[all...]
/external/v8/src/ast/
H A Dast-expression-rewriter.h32 virtual void VisitDeclarations(Declaration::List* declarations);
H A Dscopes.h20 class Declaration;
123 ThreadedList<Declaration>::Iterator top_decl_;
178 Variable* DeclareVariable(Declaration* declaration, VariableMode mode,
188 ThreadedList<Declaration>* declarations() { return &decls_; }
222 Declaration* CheckConflictingVarDeclarations();
229 Declaration* CheckLexDeclarationsConflictingWith(
508 ThreadedList<Declaration> decls_;
H A Dprettyprinter.h87 void PrintDeclarations(Declaration::List* declarations);
/external/clang/unittests/AST/
H A DPostOrderASTVisitor.cpp1 //===- unittests/AST/PostOrderASTVisitor.cpp - Declaration printer tests --===//
62 bool VisitCXXRecordDecl(CXXRecordDecl *Declaration) { argument
63 VisitedNodes.push_back(Declaration->getQualifiedNameAsString());
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_pstipple.c204 if (decl->Declaration.File == TGSI_FILE_SAMPLER) {
210 else if (decl->Declaration.File == pctx->wincoordFile) {
215 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
286 decl.Declaration.File = pctx->wincoordFile;
287 decl.Declaration.Semantic = 1;
293 decl.Declaration.Interpolate = 1;
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_vs_draw.c83 decl.Declaration.File = TGSI_FILE_TEMPORARY;
96 decl.Declaration.File = TGSI_FILE_OUTPUT;
97 decl.Declaration.Interpolate = 1;
98 decl.Declaration.Semantic = TRUE;
151 if (decl->Declaration.File == TGSI_FILE_OUTPUT) {
205 } else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
214 if (decl->Declaration.File == TGSI_FILE_OUTPUT &&
/external/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h636 const NamedDecl *Declaration;
691 CodeCompletionResult(const NamedDecl *Declaration,
696 : Declaration(Declaration), Priority(Priority),
707 : Declaration(nullptr), Keyword(Keyword), Priority(Priority),
717 : Declaration(nullptr), Macro(Macro), Priority(Priority), StartParameter(0),
730 : Declaration(D), Pattern(Pattern), Priority(Priority), StartParameter(0),
742 : Declaration(D), Pattern(Pattern), Priority(Priority), StartParameter(0),
753 return Declaration;
/external/swiftshader/third_party/subzero/src/
H A DIceGlobalInits.h338 const GlobalDeclaration *Declaration,
342 RelocInitializer(VDL, Declaration, OffsetExpr, NoFixup);
346 const GlobalDeclaration *Declaration,
351 RelocInitializer(VDL, Declaration, OffsetExpr, HasFixup, Fixup);
368 const GlobalDeclaration *getDeclaration() const { return Declaration; }
378 const GlobalDeclaration *Declaration,
382 Declaration(Declaration), // The global declaration used in the reloc.
392 const GlobalDeclaration *Declaration; member in class:Ice::VariableDeclaration::RelocInitializer
337 create(VariableDeclarationList *VDL, const GlobalDeclaration *Declaration, const RelocOffsetArray &OffsetExpr) argument
345 create(VariableDeclarationList *VDL, const GlobalDeclaration *Declaration, const RelocOffsetArray &OffsetExpr, FixupKind Fixup) argument
377 RelocInitializer(VariableDeclarationList *VDL, const GlobalDeclaration *Declaration, const RelocOffsetArray &OffsetExpr, bool HasFixup, FixupKind Fixup = 0) argument
H A DIceGlobalInits.cpp236 Declaration->dumpType(Stream);
237 Stream << "* @" << Declaration->getName() << " to ";
/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp443 OS << *Results[I].Declaration;
536 if (!Declaration) {
544 switch (getDeclAvailability(Declaration)) {
559 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(Declaration))
563 CursorKind = getCursorKindForDecl(Declaration);
568 if (isa<ObjCInterfaceDecl>(Declaration))
570 else if (isa<ObjCProtocolDecl>(Declaration))
608 DeclarationName Name = R.Declaration->getDeclName();
/external/clang/include/clang/Index/
H A DIndexSymbol.h75 Declaration = 1 << 0, member in class:clang::index::SymbolRole
/external/v8/src/crankshaft/
H A Dtyping.h72 void VisitDeclarations(Declaration::List* declarations);
/external/clang/include/clang/AST/
H A DTemplateBase.h51 Declaration, enumerator in enum:clang::TemplateArgument::ArgKind
138 DeclArg.Kind = Declaration;
246 assert(getKind() == Declaration && "Unexpected kind");
251 assert(getKind() == Declaration && "Unexpected kind");
489 assert(Argument.getKind() == TemplateArgument::Declaration);
/external/pdfium/xfa/fde/xml/
H A Dcfx_saxreader.h22 Declaration, member in class:CFX_SAXItem::Type
/external/v8/tools/
H A Djsmin.py89 def Declaration(self, m): member in class:JavaScriptMinifier
294 self.Declaration,

Completed in 919 milliseconds

12345