/external/javassist/src/main/javassist/compiler/ast/ |
Keyword.java | 21 * Keyword. 23 public class Keyword extends ASTree { 26 public Keyword(int token) {
|
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/i18n/ |
ordinalrules.js | 30 * Ordinal pattern keyword 33 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 [all...] |
pluralrules.js | 30 * Plural pattern keyword 33 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 [all...] |
/external/chromium_org/third_party/sqlite/src/tool/ |
mkkeywordhash.c | 22 "** or not a given identifier is really an SQL keyword. The same thing\n" 34 typedef struct Keyword Keyword; 35 struct Keyword { 36 char *zName; /* The keyword name */ 37 char *zTokenType; /* Token value for this keyword */ 38 int mask; /* Code this keyword if non-zero */ 40 int hash; /* Hash on the keyword */ 42 int len; /* Length of this keyword, not counting final \000 */ 46 int substrId; /* Id to another keyword this keyword is embedded in * [all...] |
/external/clang/lib/Sema/ |
DeclSpec.cpp | [all...] |
SemaCodeComplete.cpp | [all...] |
SemaTemplate.cpp | 234 // The code is missing a 'template' keyword prior to the dependent template 540 /// the keyword "typename" was used to declare the type parameter 542 /// "class" or "typename" keyword. ParamName is the name of the [all...] |
SemaType.cpp | [all...] |
SemaDeclCXX.cpp | 113 // The keyword this shall not be used in a default argument of a 786 // function which uses the 'virtual' keyword. [all...] |
/ndk/sources/host-tools/nawk-20071023/ |
lex.c | 40 typedef struct Keyword { 44 } Keyword; 46 Keyword keywords[] ={ /* keep sorted: binary searched */ 437 int binsearch(char *w, Keyword *kp, int n) 457 Keyword *kp;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
evntprov.h | 63 ULONGLONG Keyword; 125 ULONGLONG Keyword 147 ULONGLONG Keyword, 195 ULONGLONG Keyword) 203 EventDescriptor->Keyword = Keyword; 267 return (EventDescriptor->Keyword); 334 ULONGLONG Keyword) 336 EventDescriptor->Keyword = Keyword; [all...] |
wincred.h | 92 LPSTR Keyword; 99 LPWSTR Keyword;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
aetypes.py | 127 class Keyword: 128 """An AE 4-char keyword object""" 130 def __init__(self, keyword): 131 self.keyword = "%-4.4s" % str(keyword) 134 return "Keyword(%r)" % repr(self.keyword) 137 return string.strip(self.keyword) 140 return pack(self.keyword, typeKeyword) 143 return isinstance(x, Keyword) [all...] |
/external/chromium_org/third_party/jinja2/ |
nodes.py | 118 positional arguments, attributes as keyword arguments. Each node has 513 class Keyword(Helper): 514 """A key, value pair for keyword arguments where key is a string.""" 593 of keyword arguments (list of :class:`Keyword` nodes), and `dyn_args` 595 node for dynamic positional (``*args``) or keyword (``**kwargs``) 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/ |
dateparser.h | 192 static DateToken Keyword(KeywordType tag, int value, int length) { 268 // Look up a word in the keyword table and return an index. 272 // Get the type of the keyword at index i. 276 // Get the value of the keyword at index i.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 757 class Keyword(Node): 770 return "Keyword(%s, %s)" % (repr(self.name), repr(self.expr)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 757 class Keyword(Node): 770 return "Keyword(%s, %s)" % (repr(self.name), repr(self.expr)) [all...] |
/external/clang/lib/AST/ |
Type.cpp | [all...] |
/external/clang/lib/Lex/ |
Lexer.cpp | 35 /// isObjCAtKeyword - Return true if we have an ObjC keyword identifier. 42 /// getObjCKeywordID - Return the ObjC keyword kind. 627 StringRef Keyword = TheTok.getRawIdentifier(); 629 = llvm::StringSwitch<PreambleDirectiveKind>(Keyword) [all...] |
/external/clang/utils/TableGen/ |
ClangAttrEmitter.cpp | [all...] |
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
pageint.h | 20 typedef enum { EndOfData, Number, Keyword, Name, Others } SyntaxType;
|
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
cmscgats.c | 92 char* Keyword; // Name of variable 196 // A keyword 202 } KEYWORD; 204 // The keyword->symbol translation table. Sorting is required. 205 static const KEYWORD TabKeys[] = { 215 {"KEYWORD", SKEYWORD} 218 #define NUMKEYS (sizeof(TabKeys)/sizeof(KEYWORD)) 283 // name-value pair following the WEIGHTING_FUNCTION tag/keyword. The first attribute 287 // the weighting function keyword. A semi-colon separates attribute pairs from each 510 // Try to see if current identifier is a keyword, if so return the referred symbo [all...] |
/external/clang/lib/Parse/ |
ParseDecl.cpp | 810 IdentifierInfo *Keyword = Tok.getIdentifierInfo(); 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 << VersionRange [all...] |
/external/clang/lib/Serialization/ |
ASTReader.cpp | 766 "Incorrect C++ operator keyword flag"); [all...] |
/external/clang/include/clang/Sema/ |
Sema.h | [all...] |