HomeSort by relevance Sort by last modified time
    Searched defs:Keyword (Results 1 - 25 of 29) sorted by null

1 2

  /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))])