Searched defs:Declaration (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/v8/tools/
H A Djsmin.py89 def Declaration(self, m): member in class:JavaScriptMinifier
278 self.Declaration,
/external/llvm/lib/Transforms/IPO/
H A DExtractGV.cpp109 llvm::Value *Declaration; local
111 Declaration = Function::Create(FTy, GlobalValue::ExternalLinkage,
115 Declaration =
120 CurI->replaceAllUsesWith(Declaration);
/external/v8/tools/
H A Djsmin.py89 def Declaration(self, m): member in class:JavaScriptMinifier
278 self.Declaration,
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.h67 struct tgsi_declaration Declaration; member in struct:tgsi_full_declaration
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dcparse.py586 class Declaration(Node,Parser): class in inherits:Node,Parser
672 class ParameterDeclaration(Declaration):
692 class StructDeclaration(Declaration):
743 node=Declaration()
H A Dgenpyx.py473 class Declaration(object): class in inherits:object
478 class ParameterDeclaration(Declaration):
483 class StructDeclaration(Declaration):
H A Dir.py793 class Declaration(genpyx.Declaration, Node): class in inherits:genpyx.Declaration, Node
811 if isinstance(node,Declaration):
814 self.expose(Declaration)
821 class ParameterDeclaration(genpyx.ParameterDeclaration, Declaration):
827 class StructDeclaration(genpyx.StructDeclaration, Declaration):
974 assert isinstance(declaration,Declaration)
1040 declaration = cparse.Declaration()
1157 cparse.Declaration : Declaration ,
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.h67 struct tgsi_declaration Declaration; member in struct:tgsi_full_declaration
/external/chromium/third_party/libevent/
H A Devent_rpcgen.py86 dcl = entry.Declaration()
461 def Declaration(self): member in class:EntryBytes
552 def Declaration(self): member in class:EntryInt
619 def Declaration(self): member in class:EntryString
745 def Declaration(self): member in class:EntryStruct
850 def Declaration(self): member in class:EntryVarBytes
1044 def Declaration(self): function
/external/chromium_org/third_party/libevent/
H A Devent_rpcgen.py86 dcl = entry.Declaration()
461 def Declaration(self): member in class:EntryBytes
552 def Declaration(self): member in class:EntryInt
619 def Declaration(self): member in class:EntryString
745 def Declaration(self): member in class:EntryStruct
850 def Declaration(self): member in class:EntryVarBytes
1044 def Declaration(self): function
/external/clang/include/clang/AST/
H A DTemplateBase.h50 Declaration, enumerator in enum:clang::TemplateArgument::ArgKind
122 TemplateArgument(ValueDecl *D, bool ForRefParam) : Kind(Declaration) {
234 assert(Kind == Declaration && "Unexpected kind");
241 assert(Kind == Declaration && "Unexpected kind");
467 assert(Argument.getKind() == TemplateArgument::Declaration);
/external/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp412 virtual bool classIsDerivedFrom(const CXXRecordDecl *Declaration,
663 bool MatchASTVisitor::classIsDerivedFrom(const CXXRecordDecl *Declaration, argument
666 if (!Declaration->hasDefinition())
669 for (BaseIterator It = Declaration->bases_begin(),
670 End = Declaration->bases_end();
680 if (ClassDecl == Declaration) {
/external/clang/tools/libclang/
H A DCXComment.cpp921 SmallString<128> &Declaration);
949 SmallString<128> &Declaration) {
952 std::string StringDecl = Declaration.str();
963 unsigned Length = Declaration.size();
974 Declaration = FormatRewriterContext.getRewrittenText(ID);
1289 Result << "<Declaration>";
1290 SmallString<128> Declaration; local
1291 getSourceTextOfDeclaration(DI, Declaration);
1292 formatTextOfDeclaration(DI, Declaration);
1293 appendToResultWithXMLEscaping(Declaration);
947 formatTextOfDeclaration( const DeclInfo *DI, SmallString<128> &Declaration) argument
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
H A DBeautifulSoup.py475 class Declaration(NavigableString): class in inherits:NavigableString
1444 "Handle DOCTYPEs and the like as Declaration objects."
1445 self._toStringSubclass(data, Declaration)
/external/clang/lib/AST/
H A DASTDiagnostic.cpp420 /// Declaration difference, uses ValueDecl
421 Declaration enumerator in enum:__anon16009::TemplateDiff::DiffTree::DiffKind
897 FromIter->getKind() == TemplateArgument::Declaration;
900 ToIter->getKind() == TemplateArgument::Declaration;
968 Tree.SetKind(DiffTree::Declaration);
1111 case TemplateArgument::Declaration:
1255 case DiffTree::Declaration: {
/external/clang/include/clang/Serialization/
H A DASTReader.h477 Declaration, enumerator in enum:clang::ASTReader::HiddenName::NameKind
490 HiddenName(Decl *D) : Kind(Declaration), D(D), Id() { }
498 assert(getKind() == Declaration && "Hidden name is not a declaration");
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp547 bool Declaration) {
574 getOrCreateType(Qc.apply(CGM.getContext(), T), Unit, Declaration);
757 bool Declaration) {
761 getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit, Declaration);
1232 case TemplateArgument::Declaration: {
1420 llvm::DIType CGDebugInfo::CreateType(const RecordType *Ty, bool Declaration) { argument
1424 if (DebugKind <= CodeGenOptions::LimitedDebugInfo && Declaration &&
1984 bool Declaration) {
1997 getOrCreateType(TTy->getDecl()->getUnderlyingType(), Unit, Declaration);
1999 getOrCreateType(QualType(Ty.getTypePtr(), 0), Unit, Declaration); local
546 CreateQualifiedType(QualType Ty, llvm::DIFile Unit, bool Declaration) argument
756 CreateType(const TypedefType *Ty, llvm::DIFile Unit, bool Declaration) argument
1983 getOrCreateType(QualType Ty, llvm::DIFile Unit, bool Declaration) argument
2069 CreateTypeNode(QualType Ty, llvm::DIFile Unit, bool Declaration) argument
[all...]
/external/v8/src/
H A Dast.h125 class Declaration;
222 virtual Declaration* AsDeclaration() { return NULL; }
446 class Declaration: public AstNode { class in namespace:v8::internal
454 virtual Declaration* AsDeclaration() { return this; }
457 Declaration(VariableProxy* proxy, function in class:v8::internal::Declaration
478 class VariableDeclaration: public Declaration {
492 : Declaration(proxy, mode, scope) {
497 class FunctionDeclaration: public Declaration {
514 : Declaration(proxy, mode, scope),
526 class ModuleDeclaration: public Declaration {
[all...]
/external/chromium_org/v8/src/
H A Dast.h134 class Declaration;
488 class Declaration : public AstNode { class in namespace:v8::internal
497 Declaration(VariableProxy* proxy, function in class:v8::internal::Declaration
517 class VariableDeclaration V8_FINAL : public Declaration {
530 : Declaration(proxy, mode, scope, pos) {
535 class FunctionDeclaration V8_FINAL : public Declaration {
551 : Declaration(proxy, mode, scope, pos),
563 class ModuleDeclaration V8_FINAL : public Declaration {
577 : Declaration(proxy, MODULE, scope, pos),
586 class ImportDeclaration V8_FINAL : public Declaration {
[all...]
/external/clang/lib/Sema/
H A DSemaDecl.cpp1811 /// DeclhasAttr - returns true if decl Declaration already has the target
3842 /// hasSimilarParameters - Determine whether the C++ functions Declaration
3850 FunctionDecl *Declaration,
3854 if (Declaration->param_size() != Definition->param_size())
3856 for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
3857 QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
3849 hasSimilarParameters(ASTContext &Context, FunctionDecl *Declaration, FunctionDecl *Definition, SmallVectorImpl<unsigned> &Params) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 970 milliseconds