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

1 2 3 4 5

  /external/javassist/src/main/javassist/compiler/ast/
Keyword.java 21 * Keyword.
23 public class Keyword extends ASTree {
26 public Keyword(int token) {
Visitor.java 46 public void atKeyword(Keyword n) throws CompileError {}
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/i18n/
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...]
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...]
  /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...]
  /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...]
  /external/chromium_org/tools/gyp/pylib/gyp/
easy_xml_test.py 72 '<Keyword>Win32Proj</Keyword>'
88 ['Keyword', 'Win32Proj'],
  /external/markdown/markdown/
inlinepatterns.py 123 Keyword arguments:
145 Keyword arguments:
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 45 /// \brief Priority for a language keyword (that isn't any of the other
204 /// \brief Code completion occurred after the "enum" keyword, to indicate
207 /// \brief Code completion occurred after the "union" keyword, to indicate
210 /// \brief Code completion occurred after the "struct" or "class" keyword,
327 /// match the code-completion string, typically a keyword or the name of a
639 RK_Keyword, ///< Refers to a keyword or symbol.
649 /// \brief When Kind == RK_Keyword, the string representing the keyword
651 const char *Keyword;
715 /// \brief Build a result that refers to a keyword or symbol.
716 CodeCompletionResult(const char *Keyword, unsigned Priority = CCP_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;
  /external/protobuf/editors/
proto.vim 53 syn keyword pbTodo contained TODO FIXME XXX
56 syn keyword pbSyntax syntax import option
57 syn keyword pbStructure package message group
58 syn keyword pbRepeat optional required repeated
59 syn keyword pbDefault default
60 syn keyword pbExtend extend extensions to max
61 syn keyword pbRPC service rpc returns
63 syn keyword pbType int32 int64 uint32 uint64 sint32 sint64
64 syn keyword pbType fixed32 fixed64 sfixed32 sfixed64
65 syn keyword pbType float double bool string byte
    [all...]
  /external/clang/lib/Basic/
IdentifierTable.cpp 85 // Add the '_experimental_modules_import' contextual keyword.
90 // Language Keyword Implementation
119 /// The C90/C99/CPP/CPP0x flags are set to 3 if the token is a keyword in a
123 static void AddKeyword(StringRef Keyword,
146 // Don't add this keyword under MSVCCompat.
149 // Don't add this keyword if disabled in this language.
153 Table.get(Keyword, AddResult == 3 ? tok::identifier : TokenCode);
158 /// AddCXXOperatorKeyword - Register a C++ operator keyword alternative
160 static void AddCXXOperatorKeyword(StringRef Keyword,
163 IdentifierInfo &Info = Table.get(Keyword, TokenCode)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_aepack.py 14 aetypes.Keyword('kwrd'),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_aepack.py 14 aetypes.Keyword('kwrd'),
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
named_params.hpp 41 template<typename unique_id,bool required> struct keyword;
132 res_type operator[]( keyword<typename NP::id,true> kw ) const { return m_param[kw]; }
133 res_type operator[]( keyword<typename NP::id,false> kw ) const { return m_param[kw]; }
136 bool has( keyword<typename NP::id,false> kw ) const { return m_param.has( kw ); }
139 void erase( keyword<typename NP::id,false> kw ) const { m_param.erase( kw ); }
190 ref_type operator[]( keyword<unique_id,true> ) const { return m_erased ? nil_t::inst().template any_cast<ref_type>() : m_value; }
191 ref_type operator[]( keyword<unique_id,false> ) const { return m_erased ? nil_t::inst().template any_cast<ref_type>() : m_value; }
193 nil_t operator[]( keyword<UnknownId,false> ) const { return nil_t::inst(); }
195 bool has( keyword<unique_id,false> ) const { return !m_erased; }
197 bool has( keyword<UnknownId,false> ) const { return false;
237 struct keyword { struct in namespace:boost::nfp
    [all...]
  /external/chromium_org/components/test/data/web_database/
version_25.sql 6 INSERT INTO "meta" VALUES('Builtin Keyword Version','29');
7 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_default_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DEFAULT 0,logo_id INTEGER DEFAULT 0);
version_26.sql 6 INSERT INTO "meta" VALUES('Builtin Keyword Version','29');
7 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_default_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DEFAULT 0,logo_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0);
version_48.sql 6 INSERT INTO "meta" VALUES('Builtin Keyword Version','48');
8 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,show_in_default_list INTEGER,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0,sync_guid VARCHAR,alternate_urls VARCHAR);
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_parser_old.cpp 51 case CPDF_StreamParser::Keyword:
79 if (type == CPDF_StreamParser::Keyword) {
119 if (type != CPDF_StreamParser::Keyword) {
156 case CPDF_StreamParser::Keyword: {
403 if (type != CPDF_StreamParser::Keyword) {
507 return Keyword;
    [all...]
  /external/clang/lib/AST/
Type.cpp     [all...]
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromeBackgroundScript.js     [all...]
chromeVoxChromeOptionsScript.js     [all...]
chromeVoxChromePageScript.js     [all...]
  /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/include/clang/AST/
Type.h     [all...]

Completed in 597 milliseconds

1 2 3 4 5