Searched defs:Keyword (Results 1 - 25 of 32) sorted by relevance

12

/external/javassist/src/main/javassist/compiler/ast/
H A DKeyword.java21 * Keyword.
23 public class Keyword extends ASTree { class in inherits:ASTree
26 public Keyword(int token) { method in class:Keyword
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_streamparser.h22 enum SyntaxType { EndOfData, Number, Keyword, Name, Others }; enumerator in enum:CPDF_StreamParser::SyntaxType
/external/llvm/tools/llvm-pdbdump/
H A DLinePrinter.h71 Keyword, member in class:llvm::pdb::PDB_ColorItem
/external/clang/lib/Sema/
H A DSemaCoroutine.cpp104 checkCoroutineContext(Sema &S, SourceLocation Loc, StringRef Keyword) { argument
107 S.Diag(Loc, diag::err_coroutine_unevaluated_context) << Keyword;
117 : diag::err_coroutine_outside_function) << Keyword;
125 << isa<CXXDestructorDecl>(FD) << Keyword;
127 S.Diag(Loc, diag::err_coroutine_constexpr) << Keyword;
129 S.Diag(Loc, diag::err_coroutine_varargs) << Keyword;
H A DDeclSpec.cpp1204 StringRef Keyword; local
1208 Keyword = "virtual";
1211 Keyword = "explicit";
1217 << Keyword << Hint;
H A DSemaTemplateInstantiate.cpp760 ElaboratedTypeKeyword Keyword,
971 ElaboratedTypeKeyword Keyword,
983 if (Id && Keyword != ETK_None && Keyword != ETK_Typename) {
984 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForKeyword(Keyword);
997 Keyword,
970 RebuildElaboratedType(SourceLocation KeywordLoc, ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, QualType T) argument
H A DSemaCodeComplete.cpp2637 Result.AddTypedTextChunk(Keyword);
2813 std::string Keyword; local
2817 Keyword += II->getName();
2818 Keyword += ":";
2820 Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword));
2822 Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword));
4599 /// Keyword, depending on whether NeedAt is true or false.
4600 #define OBJC_AT_KEYWORD_NAME(NeedAt,Keyword) ((NeedAt)? "@" Keyword : Keyword)
[all...]
H A DSemaTemplate.cpp2362 ElaboratedTypeKeyword Keyword local
2366 QualType T = Context.getDependentTemplateSpecializationType(Keyword,
2429 Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result);
8287 Sema::CheckTypenameType(ElaboratedTypeKeyword Keyword, argument
8300 return Context.getDependentNameType(Keyword,
8353 return Context.getDependentNameType(Keyword,
H A DSemaType.cpp1461 ElaboratedTypeKeyword Keyword local
1463 Result = S.getElaboratedType(Keyword, DS.getTypeSpecScope(), Result);
2937 unsigned Keyword; local
2939 case DeclSpec::TST_auto: Keyword = 0; break;
2940 case DeclSpec::TST_decltype_auto: Keyword = 1; break;
2941 case DeclSpec::TST_auto_type: Keyword = 2; break;
2945 << Keyword << Error << AutoRange;
4919 ElaboratedTypeKeyword Keyword local
4929 TL.setElaboratedKeywordLoc(Keyword != ETK_None
7210 /// \brief Retrieve a version of the type 'T' that is elaborated by Keyword
7212 getElaboratedType(ElaboratedTypeKeyword Keyword, const CXXScopeSpec &SS, QualType T) argument
[all...]
H A DSemaDeclCXX.cpp12557 ElaboratedTypeKeyword Keyword local
12559 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
H A DTreeTransform.h860 QualType RebuildAutoType(QualType Deduced, AutoTypeKeyword Keyword) { argument
864 return SemaRef.Context.getAutoType(Deduced, Keyword,
891 ElaboratedTypeKeyword Keyword,
894 return SemaRef.Context.getElaboratedType(Keyword,
905 ElaboratedTypeKeyword Keyword,
923 return SemaRef.Context.getDependentTemplateSpecializationType(Keyword,
934 if (Keyword == ETK_None && QualifierLoc.getNestedNameSpecifier() == nullptr)
937 return SemaRef.Context.getElaboratedType(Keyword,
947 QualType RebuildDependentNameType(ElaboratedTypeKeyword Keyword, argument
958 return SemaRef.Context.getDependentNameType(Keyword,
890 RebuildElaboratedType(SourceLocation KeywordLoc, ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, QualType Named) argument
904 RebuildDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo *Name, SourceLocation NameLoc, TemplateArgumentListInfo &Args) argument
[all...]
/external/clang/lib/Tooling/Core/
H A DQualTypeNames.cpp436 ElaboratedTypeKeyword Keyword = ETK_None; local
440 Keyword = ETypeInput->getKeyword();
459 if (Prefix || Keyword != ETK_None) {
460 QT = Ctx.getElaboratedType(Keyword, Prefix, QT);
/external/one-true-awk/
H A Dlex.c40 typedef struct Keyword { struct
44 } Keyword; typedef in typeref:struct:Keyword
46 Keyword keywords[] ={ /* keep sorted: binary searched */
437 int binsearch(char *w, Keyword *kp, int n)
457 Keyword *kp;
/external/python/cpython2/Lib/plat-mac/
H A Daetypes.py127 class Keyword: class in inherits:
134 return "Keyword(%r)" % repr(self.keyword)
143 return isinstance(x, Keyword)
/external/libmojo/third_party/jinja2/
H A Dnodes.py513 class Keyword(Helper): class in inherits:Helper
593 of keyword arguments (list of :class:`Keyword` nodes), and `dyn_args`
894 a :class:`Keyword` has to be added to the :attr:`options` list.
898 EvalContextModifier(options=[Keyword('autoescape', Const(True))])
/external/python/cpython2/Lib/compiler/
H A Dast.py757 class Keyword(Node): class in inherits:Node
770 return "Keyword(%s, %s)" % (repr(self.name), repr(self.expr))
/external/v8/src/
H A Ddateparser.h177 static DateToken Keyword(KeywordType tag, int value, int length) { function in struct:v8::internal::DateParser::DateToken
/external/clang/lib/Basic/
H A DIdentifierTable.cpp90 // Language Keyword Implementation
160 static void AddKeyword(StringRef Keyword, argument
178 Table.get(Keyword, AddResult == KS_Future ? tok::identifier : TokenCode);
185 static void AddCXXOperatorKeyword(StringRef Keyword, argument
188 IdentifierInfo &Info = Table.get(Keyword, TokenCode);
/external/clang/lib/Lex/
H A DLexer.cpp621 StringRef Keyword = TheTok.getRawIdentifier(); local
623 = llvm::StringSwitch<PreambleDirectiveKind>(Keyword)
/external/pdfium/third_party/lcms/src/
H A Dcmscgats.c92 char* Keyword; // Name of variable member in struct:_KeyVal
1133 if (cmsstrcasecmp(Key, p->Keyword) == 0)
1188 p->Keyword = AllocString(it8, Key);
1626 if (*p ->Keyword == '#') {
1646 if (!IsAvailableOnList(it8-> ValidKeywords, p->Keyword, NULL, NULL)) {
1650 WriteStr(fp, p->Keyword);
1654 AddAvailableProperty(it8, p->Keyword, WRITE_UNCOOKED);
1657 WriteStr(fp, p->Keyword);
1936 if (!GetVal(it8, Buffer, MAXSTR-1, "Keyword expected")) return FALSE;
1944 if (!GetVal(it8, Buffer, MAXSTR-1, "Keyword expecte
[all...]
/external/clang/lib/Parse/
H A DParseDecl.cpp918 IdentifierInfo *Keyword = Tok.getIdentifierInfo(); local
921 if (Keyword == Ident_strict) {
924 << Keyword << SourceRange(StrictLoc);
930 if (Keyword == Ident_unavailable) {
933 << Keyword << SourceRange(UnavailableLoc);
940 Diag(Tok, diag::err_expected_after) << Keyword << tok::equal;
945 if (Keyword == Ident_message || Keyword == Ident_replacement) {
952 if (Keyword == Ident_message)
967 if (Keyword
[all...]
/external/clang/lib/Serialization/
H A DASTReader.cpp5451 AutoTypeKeyword Keyword = (AutoTypeKeyword)Record[Idx++]; local
5453 return Context.getAutoType(Deduced, Keyword, IsDependent);
5519 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; local
5522 return Context.getElaboratedType(Keyword, NNS, NamedType);
5603 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; local
5609 return Context.getDependentNameType(Keyword, NNS, Name, Canon);
5614 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; local
5622 return Context.getDependentTemplateSpecializationType(Keyword, NNS, Name,
/external/clang/include/clang/AST/
H A DType.h1441 unsigned Keyword : 8;
1475 unsigned Keyword : 2;
4088 AutoType(QualType DeducedType, AutoTypeKeyword Keyword, bool IsDependent) argument
4096 AutoTypeBits.Keyword = (unsigned)Keyword;
4106 return (AutoTypeKeyword)AutoTypeBits.Keyword;
4126 AutoTypeKeyword Keyword, bool IsDependent) {
4128 ID.AddInteger((unsigned)Keyword);
4384 TypeWithKeyword(ElaboratedTypeKeyword Keyword, TypeClass tc, argument
4390 TypeWithKeywordBits.Keyword
4125 Profile(llvm::FoldingSetNodeID &ID, QualType Deduced, AutoTypeKeyword Keyword, bool IsDependent) argument
4441 ElaboratedType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, QualType NamedType, QualType CanonType) argument
4475 Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, QualType NamedType) argument
4507 DependentNameType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, QualType CanonType) argument
4537 Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name) argument
[all...]
/external/clang/include/clang/Sema/
H A DSema.h1487 QualType getElaboratedType(ElaboratedTypeKeyword Keyword,
1564 const IdentifierInfo *Keyword; member in class:clang::Sema::NameClassification
1573 NameClassification(const IdentifierInfo *Keyword) argument
1574 : Kind(NC_Keyword), Keyword(Keyword) { }
6036 QualType CheckTypenameType(ElaboratedTypeKeyword Keyword,
/external/clang/lib/AST/
H A DASTContext.cpp3500 ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword, argument
3504 ElaboratedType::Profile(ID, Keyword, NNS, NamedType);
3519 T = new (*this, TypeAlignment) ElaboratedType(Keyword, NNS, NamedType, Canon);
3549 QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword, argument
3555 ElaboratedTypeKeyword CanonKeyword = Keyword;
3556 if (Keyword == ETK_None)
3559 if (CanonNNS != NNS || CanonKeyword != Keyword)
3564 DependentNameType::Profile(ID, Keyword, NNS, Name);
3572 T = new (*this, TypeAlignment) DependentNameType(Keyword, NNS, Name, Canon);
3580 ElaboratedTypeKeyword Keyword,
3579 getDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, const TemplateArgumentListInfo &Args) const argument
3592 getDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, ArrayRef<TemplateArgument> Args) const argument
4040 getAutoType(QualType DeducedType, AutoTypeKeyword Keyword, bool IsDependent) const argument
[all...]

Completed in 792 milliseconds

12