Searched defs:Keyword (Results 1 - 25 of 29) 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/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/i18n/
H A Dordinalrules.js33 goog.i18n.ordinalRules.Keyword = {
47 * @return {goog.i18n.ordinalRules.Keyword} Default value.
51 return goog.i18n.ordinalRules.Keyword.OTHER;
117 * @return {goog.i18n.ordinalRules.Keyword} Locale-specific ordinal value.
122 return goog.i18n.ordinalRules.Keyword.ONE;
125 return goog.i18n.ordinalRules.Keyword.TWO;
128 return goog.i18n.ordinalRules.Keyword.FEW;
130 return goog.i18n.ordinalRules.Keyword.OTHER;
138 * @return {goog.i18n.ordinalRules.Keyword} Locale-specific ordinal value.
143 return goog.i18n.ordinalRules.Keyword
[all...]
H A Dpluralrules.js33 goog.i18n.pluralRules.Keyword = {
47 * @return {goog.i18n.pluralRules.Keyword} Default value.
51 return goog.i18n.pluralRules.Keyword.OTHER;
117 * @return {goog.i18n.pluralRules.Keyword} Locale-specific plural value.
122 return goog.i18n.pluralRules.Keyword.ONE;
125 return goog.i18n.pluralRules.Keyword.TWO;
128 return goog.i18n.pluralRules.Keyword.FEW;
131 return goog.i18n.pluralRules.Keyword.MANY;
133 return goog.i18n.pluralRules.Keyword.OTHER;
141 * @return {goog.i18n.pluralRules.Keyword} Local
[all...]
/external/chromium_org/third_party/sqlite/src/tool/
H A Dmkkeywordhash.c34 typedef struct Keyword Keyword; typedef in typeref:struct:Keyword
35 struct Keyword { struct
145 static Keyword aKeywordTable[] = {
295 ** Comparision function for two Keyword records
298 const Keyword *pA = (Keyword*)a;
299 const Keyword *pB = (Keyword*)b;
308 const Keyword *p
[all...]
/external/chromium_org/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/chromium_org/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
123 static void AddKeyword(StringRef Keyword, argument
153 Table.get(Keyword, AddResult == 3 ? tok::identifier : TokenCode);
160 static void AddCXXOperatorKeyword(StringRef Keyword, argument
163 IdentifierInfo &Info = Table.get(Keyword, TokenCode);
/external/clang/lib/Sema/
H A DDeclSpec.cpp1142 StringRef Keyword; local
1146 Keyword = "virtual";
1149 Keyword = "explicit";
1155 << Keyword << Hint;
H A DSemaTemplateInstantiate.cpp760 ElaboratedTypeKeyword Keyword,
993 ElaboratedTypeKeyword Keyword,
1005 if (Id && Keyword != ETK_None && Keyword != ETK_Typename) {
1006 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForKeyword(Keyword);
1019 Keyword,
992 RebuildElaboratedType(SourceLocation KeywordLoc, ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, QualType T) argument
H A DSemaCodeComplete.cpp2570 Result.AddTypedTextChunk(Keyword);
2749 std::string Keyword; local
2753 Keyword += II->getName();
2754 Keyword += ":";
2756 Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword));
2758 Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword));
4368 /// Keyword, depending on whether NeedAt is true or false.
4369 #define OBJC_AT_KEYWORD_NAME(NeedAt,Keyword) ((NeedAt)? "@" Keyword : Keyword)
[all...]
H A DSemaLookup.cpp3355 void addKeywordResult(StringRef Keyword);
3503 void TypoCorrectionConsumer::addKeywordResult(StringRef Keyword) { argument
3506 addName(Keyword, nullptr, nullptr, true);
H A DSemaType.cpp906 ElaboratedTypeKeyword Keyword local
908 Result = S.getElaboratedType(Keyword, DS.getTypeSpecScope(), Result);
3589 ElaboratedTypeKeyword Keyword local
3599 TL.setElaboratedKeywordLoc(Keyword != ETK_None
5456 /// \brief Retrieve a version of the type 'T' that is elaborated by Keyword
5458 QualType Sema::getElaboratedType(ElaboratedTypeKeyword Keyword, argument
5466 if (Keyword == ETK_None)
5470 return Context.getElaboratedType(Keyword, NNS, T);
H A DSemaTemplate.cpp2239 ElaboratedTypeKeyword Keyword local
2243 QualType T = Context.getDependentTemplateSpecializationType(Keyword,
2306 Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result);
7867 Sema::CheckTypenameType(ElaboratedTypeKeyword Keyword, argument
7880 return Context.getDependentNameType(Keyword,
7933 return Context.getDependentNameType(Keyword,
H A DSemaDeclCXX.cpp11673 ElaboratedTypeKeyword Keyword local
11675 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
H A DTreeTransform.h834 ElaboratedTypeKeyword Keyword,
837 return SemaRef.Context.getElaboratedType(Keyword,
848 ElaboratedTypeKeyword Keyword,
866 return SemaRef.Context.getDependentTemplateSpecializationType(Keyword,
877 if (Keyword == ETK_None && QualifierLoc.getNestedNameSpecifier() == nullptr)
880 return SemaRef.Context.getElaboratedType(Keyword,
890 QualType RebuildDependentNameType(ElaboratedTypeKeyword Keyword, argument
901 return SemaRef.Context.getDependentNameType(Keyword,
906 if (Keyword == ETK_None || Keyword
833 RebuildElaboratedType(SourceLocation KeywordLoc, ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, QualType Named) argument
847 RebuildDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo *Name, SourceLocation NameLoc, TemplateArgumentListInfo &Args) argument
[all...]
/external/clang/lib/AST/
H A DType.cpp1404 TypeWithKeyword::getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword) { argument
1405 switch (Keyword) {
1419 TypeWithKeyword::KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword) { argument
1420 switch (Keyword) {
1434 StringRef TypeWithKeyword::getKeywordName(ElaboratedTypeKeyword Keyword) { argument
1435 switch (Keyword) {
1449 ElaboratedTypeKeyword Keyword,
1453 : TypeWithKeyword(Keyword, DependentTemplateSpecialization, Canon, true, true,
1470 ElaboratedTypeKeyword Keyword,
1475 ID.AddInteger(Keyword);
1448 DependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args, QualType Canon) argument
1468 Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *Qualifier, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args) argument
1483 ElaboratedTypeKeyword Keyword; local
[all...]
H A DASTContext.cpp3265 ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword, argument
3269 ElaboratedType::Profile(ID, Keyword, NNS, NamedType);
3284 T = new (*this) ElaboratedType(Keyword, NNS, NamedType, Canon);
3314 QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword, argument
3320 ElaboratedTypeKeyword CanonKeyword = Keyword;
3321 if (Keyword == ETK_None)
3324 if (CanonNNS != NNS || CanonKeyword != Keyword)
3329 DependentNameType::Profile(ID, Keyword, NNS, Name);
3337 T = new (*this) DependentNameType(Keyword, NNS, Name, Canon);
3345 ElaboratedTypeKeyword Keyword,
3344 getDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, const TemplateArgumentListInfo &Args) const argument
3359 getDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args) const argument
[all...]
/external/clang/lib/Lex/
H A DLexer.cpp627 StringRef Keyword = TheTok.getRawIdentifier(); local
629 = llvm::StringSwitch<PreambleDirectiveKind>(Keyword)
/external/clang/utils/TableGen/
H A DClangAttrEmitter.cpp1092 } else if (Variety == "Keyword") {
1874 .Case("Keyword", 3)
2539 else if (Variety == "Keyword")
2674 Keyword = 1 << 3, enumerator in enum:clang::SpellingKind
2723 .Case("Keyword", Keyword)
2759 OS << " :header: \"GNU\", \"C++11\", \"__declspec\", \"Keyword\",";
2768 if (SupportedSpellings & Keyword) OS << "X";
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dpageint.h20 typedef enum { EndOfData, Number, Keyword, Name, Others } SyntaxType; enumerator in enum:CPDF_StreamParser::__anon27688
/external/clang/lib/Parse/
H A DParseDecl.cpp810 IdentifierInfo *Keyword = Tok.getIdentifierInfo(); local
813 if (Keyword == Ident_unavailable) {
816 << Keyword << SourceRange(UnavailableLoc);
823 Diag(Tok, diag::err_expected_after) << Keyword << tok::equal;
828 if (Keyword == Ident_message) {
848 if (Keyword == Ident_introduced)
850 else if (Keyword == Ident_deprecated)
852 else if (Keyword == Ident_obsoleted)
860 << Keyword
870 << Keyword << VersionRang
[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/Serialization/
H A DASTReader.cpp5359 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; local
5362 return Context.getElaboratedType(Keyword, NNS, NamedType);
5433 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; local
5439 return Context.getDependentNameType(Keyword, NNS, Name, Canon);
5444 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; local
5452 return Context.getDependentTemplateSpecializationType(Keyword, NNS, Name,
/external/clang/include/clang/AST/
H A DType.h1303 unsigned Keyword : 8;
3950 TypeWithKeyword(ElaboratedTypeKeyword Keyword, TypeClass tc, argument
3956 TypeWithKeywordBits.Keyword = Keyword;
3961 return static_cast<ElaboratedTypeKeyword>(TypeWithKeywordBits.Keyword);
3980 static TagTypeKind getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword);
3982 static bool KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword);
3984 static StringRef getKeywordName(ElaboratedTypeKeyword Keyword);
4010 ElaboratedType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, argument
4012 : TypeWithKeyword(Keyword, Elaborate
4044 Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, QualType NamedType) argument
4076 DependentNameType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, QualType CanonType) argument
4107 Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name) argument
[all...]
/external/clang/include/clang/Sema/
H A DSema.h1376 QualType getElaboratedType(ElaboratedTypeKeyword Keyword,
1444 const IdentifierInfo *Keyword; member in class:clang::Sema::NameClassification
1453 NameClassification(const IdentifierInfo *Keyword) argument
1454 : Kind(NC_Keyword), Keyword(Keyword) { }
5550 QualType CheckTypenameType(ElaboratedTypeKeyword Keyword,

Completed in 867 milliseconds

12