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

/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/llvm/tools/llvm-pdbdump/
H A DLinePrinter.h66 Keyword, member in class:llvm::PDB_ColorItem
/external/v8/src/
H A Ddateparser.h192 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
153 static void AddKeyword(StringRef Keyword, argument
171 Table.get(Keyword, AddResult == KS_Future ? tok::identifier : TokenCode);
178 static void AddCXXOperatorKeyword(StringRef Keyword, argument
181 IdentifierInfo &Info = Table.get(Keyword, TokenCode);
/external/clang/lib/Sema/
H A DDeclSpec.cpp1173 StringRef Keyword; local
1177 Keyword = "virtual";
1180 Keyword = "explicit";
1186 << Keyword << Hint;
H A DSemaTemplateInstantiate.cpp744 ElaboratedTypeKeyword Keyword,
985 ElaboratedTypeKeyword Keyword,
997 if (Id && Keyword != ETK_None && Keyword != ETK_Typename) {
998 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForKeyword(Keyword);
1011 Keyword,
984 RebuildElaboratedType(SourceLocation KeywordLoc, ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, QualType T) argument
H A DSemaLookup.cpp3475 void TypoCorrectionConsumer::addKeywordResult(StringRef Keyword) { argument
3478 addName(Keyword, nullptr, nullptr, true);
H A DSemaType.cpp910 ElaboratedTypeKeyword Keyword local
912 Result = S.getElaboratedType(Keyword, DS.getTypeSpecScope(), Result);
3639 ElaboratedTypeKeyword Keyword local
3649 TL.setElaboratedKeywordLoc(Keyword != ETK_None
5465 /// \brief Retrieve a version of the type 'T' that is elaborated by Keyword
5467 QualType Sema::getElaboratedType(ElaboratedTypeKeyword Keyword, argument
5475 if (Keyword == ETK_None)
5479 return Context.getElaboratedType(Keyword, NNS, T);
H A DSemaCodeComplete.cpp2573 Result.AddTypedTextChunk(Keyword);
2753 std::string Keyword; local
2757 Keyword += II->getName();
2758 Keyword += ":";
2760 Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword));
2762 Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword));
4513 /// Keyword, depending on whether NeedAt is true or false.
4514 #define OBJC_AT_KEYWORD_NAME(NeedAt,Keyword) ((NeedAt)? "@" Keyword : Keyword)
[all...]
H A DSemaTemplate.cpp2257 ElaboratedTypeKeyword Keyword local
2261 QualType T = Context.getDependentTemplateSpecializationType(Keyword,
2324 Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result);
8029 Sema::CheckTypenameType(ElaboratedTypeKeyword Keyword, argument
8042 return Context.getDependentNameType(Keyword,
8095 return Context.getDependentNameType(Keyword,
H A DTreeTransform.h861 ElaboratedTypeKeyword Keyword,
864 return SemaRef.Context.getElaboratedType(Keyword,
875 ElaboratedTypeKeyword Keyword,
893 return SemaRef.Context.getDependentTemplateSpecializationType(Keyword,
904 if (Keyword == ETK_None && QualifierLoc.getNestedNameSpecifier() == nullptr)
907 return SemaRef.Context.getElaboratedType(Keyword,
917 QualType RebuildDependentNameType(ElaboratedTypeKeyword Keyword, argument
928 return SemaRef.Context.getDependentNameType(Keyword,
933 if (Keyword == ETK_None || Keyword
860 RebuildElaboratedType(SourceLocation KeywordLoc, ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, QualType Named) argument
874 RebuildDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo *Name, SourceLocation NameLoc, TemplateArgumentListInfo &Args) argument
[all...]
H A DSemaDeclCXX.cpp12275 ElaboratedTypeKeyword Keyword local
12277 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
/external/clang/lib/Lex/
H A DLexer.cpp621 StringRef Keyword = TheTok.getRawIdentifier(); local
623 = llvm::StringSwitch<PreambleDirectiveKind>(Keyword)
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dpageint.h23 typedef enum { EndOfData, Number, Keyword, Name, Others } SyntaxType; enumerator in enum:CPDF_StreamParser::__anon13131
/external/clang/lib/AST/
H A DType.cpp1401 TypeWithKeyword::getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword) { argument
1402 switch (Keyword) {
1416 TypeWithKeyword::KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword) { argument
1417 switch (Keyword) {
1431 StringRef TypeWithKeyword::getKeywordName(ElaboratedTypeKeyword Keyword) { argument
1432 switch (Keyword) {
1446 ElaboratedTypeKeyword Keyword,
1450 : TypeWithKeyword(Keyword, DependentTemplateSpecialization, Canon, true, true,
1467 ElaboratedTypeKeyword Keyword,
1472 ID.AddInteger(Keyword);
1445 DependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args, QualType Canon) argument
1465 Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *Qualifier, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args) argument
1480 ElaboratedTypeKeyword Keyword; local
[all...]
H A DASTContext.cpp3342 ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword, argument
3346 ElaboratedType::Profile(ID, Keyword, NNS, NamedType);
3361 T = new (*this, TypeAlignment) ElaboratedType(Keyword, NNS, NamedType, Canon);
3391 QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword, argument
3397 ElaboratedTypeKeyword CanonKeyword = Keyword;
3398 if (Keyword == ETK_None)
3401 if (CanonNNS != NNS || CanonKeyword != Keyword)
3406 DependentNameType::Profile(ID, Keyword, NNS, Name);
3414 T = new (*this, TypeAlignment) DependentNameType(Keyword, NNS, Name, Canon);
3422 ElaboratedTypeKeyword Keyword,
3421 getDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, const TemplateArgumentListInfo &Args) const argument
3436 getDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args) const argument
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmscgats.c92 char* Keyword; // Name of variable member in struct:_KeyVal
1132 if (cmsstrcasecmp(Key, p->Keyword) == 0)
1187 p->Keyword = AllocString(it8, Key);
1625 if (*p ->Keyword == '#') {
1645 if (!IsAvailableOnList(it8-> ValidKeywords, p->Keyword, NULL, NULL)) {
1649 WriteStr(fp, p->Keyword);
1653 AddAvailableProperty(it8, p->Keyword, WRITE_UNCOOKED);
1656 WriteStr(fp, p->Keyword);
1935 if (!GetVal(it8, Buffer, MAXSTR-1, "Keyword expected")) return FALSE;
1943 if (!GetVal(it8, Buffer, MAXSTR-1, "Keyword expecte
[all...]
/external/clang/lib/Parse/
H A DParseDecl.cpp872 IdentifierInfo *Keyword = Tok.getIdentifierInfo(); local
875 if (Keyword == Ident_unavailable) {
878 << Keyword << SourceRange(UnavailableLoc);
885 Diag(Tok, diag::err_expected_after) << Keyword << tok::equal;
890 if (Keyword == Ident_message) {
914 if ((Keyword == Ident_introduced || Keyword == Ident_deprecated) &&
919 if (Keyword == Ident_introduced)
934 if (Keyword == Ident_introduced)
936 else if (Keyword
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/components/polymer/
H A Dpolymer.js2201 Keyword: 4,
2212 TokenName[Token.Keyword] = 'Keyword';
2334 type = Token.Keyword;
2585 token.type === Token.Keyword ||
2699 return lookahead.type === Token.Keyword && lookahead.value === keyword;
2826 } else if (type === Token.Keyword) {
2936 if (lookahead.type !== Token.Punctuator && lookahead.type !== Token.Keyword) {
2954 if (token.type !== Token.Punctuator && token.type !== Token.Keyword) {
/external/clang/include/clang/AST/
H A DType.h1325 unsigned Keyword : 8;
4006 TypeWithKeyword(ElaboratedTypeKeyword Keyword, TypeClass tc, argument
4012 TypeWithKeywordBits.Keyword = Keyword;
4017 return static_cast<ElaboratedTypeKeyword>(TypeWithKeywordBits.Keyword);
4036 static TagTypeKind getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword);
4038 static bool KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword);
4040 static StringRef getKeywordName(ElaboratedTypeKeyword Keyword);
4066 ElaboratedType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, argument
4068 : TypeWithKeyword(Keyword, Elaborate
4100 Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, QualType NamedType) argument
4132 DependentNameType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, QualType CanonType) argument
4163 Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name) argument
[all...]
/external/clang/include/clang/Sema/
H A DSema.h1322 QualType getElaboratedType(ElaboratedTypeKeyword Keyword,
1393 const IdentifierInfo *Keyword; member in class:clang::Sema::NameClassification
1402 NameClassification(const IdentifierInfo *Keyword) argument
1403 : Kind(NC_Keyword), Keyword(Keyword) { }
5647 QualType CheckTypenameType(ElaboratedTypeKeyword Keyword,
/external/clang/lib/Serialization/
H A DASTReader.cpp5540 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; local
5543 return Context.getElaboratedType(Keyword, NNS, NamedType);
5619 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; local
5625 return Context.getDependentNameType(Keyword, NNS, Name, Canon);
5630 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; local
5638 return Context.getDependentTemplateSpecializationType(Keyword, NNS, Name,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 2592 milliseconds