HomeSort by relevance Sort by last modified time
    Searched full:keyword (Results 1 - 25 of 1337) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/core/init/
keywords.h 2 #ifndef KEYWORD
40 #define KEYWORD(symbol, flags, nargs, func) K_##symbol,
44 KEYWORD(capability, OPTION, 0, 0)
45 KEYWORD(chdir, COMMAND, 1, do_chdir)
46 KEYWORD(chroot, COMMAND, 1, do_chroot)
47 KEYWORD(class, OPTION, 0, 0)
48 KEYWORD(class_start, COMMAND, 1, do_class_start)
49 KEYWORD(class_stop, COMMAND, 1, do_class_stop)
50 KEYWORD(class_reset, COMMAND, 1, do_class_reset)
51 KEYWORD(console, OPTION, 0, 0
    [all...]
  /external/llvm/utils/vim/
llvm.vim 17 syn keyword llvmType void float double
18 syn keyword llvmType x86_fp80 fp128 ppc_fp128
19 syn keyword llvmType type label opaque
25 syn keyword llvmStatement add fadd sub fsub mul fmul
26 syn keyword llvmStatement sdiv udiv fdiv srem urem frem
27 syn keyword llvmStatement and or xor
28 syn keyword llvmStatement icmp fcmp
29 syn keyword llvmStatement eq ne ugt uge ult ule sgt sge slt sle
30 syn keyword llvmStatement oeq ogt oge olt ole one ord ueq ugt uge
31 syn keyword llvmStatement ult ule une un
    [all...]
  /external/clang/include/clang/Basic/
TokenKinds.def 12 // languages. Users of this file must optionally #define the TOK, KEYWORD,
23 #ifndef KEYWORD
24 #define KEYWORD(X,Y) TOK(kw_ ## X)
42 #define TESTING_KEYWORD(X, L) KEYWORD(X, L)
204 // KEYALL - This is a keyword in all variants of C and C++, or it
205 // is a keyword in the implementation namespace that should
206 // always be treated as a keyword
207 // KEYC99 - This is a keyword introduced to C in C99
208 // KEYC11 - This is a keyword introduced to C in C11
209 // KEYCXX - This is a C++ keyword, or a C++-specific keyword in th
    [all...]
  /external/mesa3d/src/glsl/
glsl_lexer.lpp 48 * samplerBuffer KEYWORD(130, 140, SAMPLERBUFFER)
51 * - a keyword (SAMPLERBUFFER token) ...in GLSL >= 1.40
55 #define KEYWORD(reserved_version, allowed_version, token) \
69 /* The ES macro can be used in KEYWORD checks:
71 * word KEYWORD(110 || ES, 400, TOKEN)
74 * word KEYWORD(110, 130 || ES, TOKEN)
75 * ...means the word is a legal keyword in GLSL ES 1.00.
173 uint KEYWORD(130, 130, UINT_TOK);
191 uvec2 KEYWORD(130, 130, UVEC2);
192 uvec3 KEYWORD(130, 130, UVEC3)
    [all...]
  /external/clang/test/Lexer/
cxx0x_keyword_as_cxx98.cpp 9 typedef nullptr_t nullptr; // expected-warning {{'nullptr' is a keyword in C++11}}
17 extern int ID(decltype); // expected-warning {{'decltype' is a keyword in C++11}}
19 extern int CONCAT(align,of); // expected-warning {{'alignof' is a keyword in C++11}}
27 int alignas; // expected-warning {{'alignas' is a keyword in C++11}}
29 int char16_t; // expected-warning {{'char16_t' is a keyword in C++11}}
30 int char32_t; // expected-warning {{'char32_t' is a keyword in C++11}}
31 int constexpr; // expected-warning {{'constexpr' is a keyword in C++11}}
33 int noexcept; // expected-warning {{'noexcept' is a keyword in C++11}}
35 int static_assert; // expected-warning {{'static_assert' is a keyword in C++11}}
36 int thread_local; // expected-warning {{'thread_local' is a keyword in C++11}
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_fetcher_unittest.cc 80 void StartDownload(const string16& keyword,
158 const string16& keyword,
175 keyword, osdd_url, favicon_url, new TemplateURLFetcherTestCallbacks(this),
187 string16 keyword(ASCIIToUTF16("test"));
190 ASSERT_FALSE(test_util_.model()->GetTemplateURLForKeyword(keyword));
193 StartDownload(keyword, osdd_file_name,
205 keyword);
213 string16 keyword(ASCIIToUTF16("test"));
216 ASSERT_FALSE(test_util_.model()->GetTemplateURLForKeyword(keyword));
219 StartDownload(keyword, osdd_file_name
228 string16 keyword; member in struct:__anon3410
    [all...]
  /external/chromium/chrome/browser/autocomplete/
keyword_provider.h 5 // This file contains the keyword autocomplete provider. The keyword provider
6 // is responsible for remembering/suggesting user "search keyword queries"
29 // Autocomplete provider for keyword input.
37 // of a known "keyword". A keyword is some string that maps to a search query
39 // example, the keyword "bug" might map to the URL "http://b/issue?id=%s", so
42 // Because we do prefix matching, user input could match more than one keyword
46 // The resulting matches are shown with content specified by the keyword
47 // (usually "Search [name] for %s"), description "(Keyword: [keyword])", an
    [all...]
keyword_provider.cc 25 // Helper functor for Start(), for ending keyword mode unless explicitly told
59 : AutocompleteProvider(listener, profile, "Keyword"),
76 : AutocompleteProvider(listener, NULL, "Keyword"),
84 // Helper functor for Start(), for sorting keyword matches by quality.
87 // A keyword is of higher quality when a greater fraction of it has been
91 // probably better rankings than the fraction of the keyword typed. We should
114 string16 keyword;
115 if (!ExtractKeywordFromInput(input, &keyword, remaining_input))
124 const TemplateURL* template_url = model->GetTemplateURLForKeyword(keyword);
130 // This object ensures we end keyword mode if we exit the function withou
157 string16 keyword, remaining_input; local
464 string16 keyword, remaining_input; local
    [all...]
  /external/chromium/chrome/browser/ui/views/location_bar/
selected_keyword_view.h 35 // The current keyword, or an empty string if no keyword is displayed.
36 void SetKeyword(const string16& keyword);
37 string16 keyword() const { return keyword_; } function in class:SelectedKeywordView
42 // The keyword we're showing. If empty, no keyword is selected.
48 // label contains the complete description of the keyword, the second
  /external/chromium/chrome/browser/ui/omnibox/
location_bar_util.h 15 // Returns the short name for a keyword.
16 std::wstring GetKeywordName(Profile* profile, const std::wstring& keyword);
18 // Build a short string to use in keyword-search when the field isn't
  /external/llvm/lib/AsmParser/
LLLexer.cpp 409 /// Keyword sdiv, float, ...
443 // Otherwise, this was a letter sequence. See which keyword this is.
448 #define KEYWORD(STR) \
452 KEYWORD(true); KEYWORD(false);
453 KEYWORD(declare); KEYWORD(define);
454 KEYWORD(global); KEYWORD(constant);
456 KEYWORD(private)
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/api/omnibox/simple-example/
manifest.json 6 "omnibox": { "keyword" : "omnix" }
  /external/v8/test/mjsunit/
object-literal.js 142 function testKeywordProperty(keyword) {
145 // Sanity check that what we get is a keyword.
146 eval("var " + keyword + " = 42;");
153 var x = eval("({" + keyword + ": 42})");
154 assertEquals(42, x[keyword]);
155 assertEquals(42, eval("x." + keyword));
156 eval("x." + keyword + " = 37");
157 assertEquals(37, x[keyword]);
158 assertEquals(37, eval("x." + keyword));
161 var y = eval("({value : 42, get " + keyword + "(){return this.value},"
    [all...]
  /external/apache-harmony/auth/src/test/java/common/tests/api/javax/security/auth/x500/
X500PrincipalTest.java 42 Map<String, String> keyword = new HashMap<String, String>(); local
43 keyword.put("CN", "2.19");
44 keyword.put("OU", "1.2.5.19");
45 keyword.put("O", "1.2.5");
46 X500Principal X500p = new X500Principal("CN=Duke, OU=JavaSoft, O=Sun Microsystems, C=US ,CN=DD",keyword);
68 Map<String, String> keyword = new HashMap<String, String>(); local
69 keyword.put("CN", "2.19");
70 keyword.put("OU", "1.2.5.19");
71 keyword.put("O", "1.2.5");
72 X500Principal X500p = new X500Principal("CN=Duke, OU=JavaSoft, O=Sun Microsystems, C=US ,CN=DD",keyword);
    [all...]
  /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/test/Parser/
switch-recovery.cpp 38 2: return 1; // expected-error {{expected 'case' keyword before expression}}
46 1: return -1; // expected-error {{expected 'case' keyword before expression}}
54 4:5:6:7: return 2; // expected-error 4{{expected 'case' keyword before expression}}
72 5: // expected-error {{expected 'case' keyword before expression}}
80 true ? 1 : 2: // expected-error {{expected 'case' keyword before expression}}
101 2: case; // expected-error {{expected 'case' keyword before expression}} \
103 4:5:6: return; // expected-error 3{{expected 'case' keyword before expression}}
104 7: :x; // expected-error {{expected 'case' keyword before expression}} \
139 E+1: break; // expected-error {{expected 'case' keyword before expression}}
146 0: // expected-error {{expected 'case' keyword before expression}
    [all...]
  /external/bluetooth/bluez/tools/
kword.c 54 int rfcomm_find_keyword(struct keyword_t *keyword, char *string)
56 while (keyword->string) {
57 if (!strcmp(string, keyword->string))
58 return keyword->type;
59 keyword++;
  /external/clang/test/SemaCXX/
libstdcxx_is_pod_hack.cpp 6 // GCC 4.3 and newer make __is_pod a keyword. Clang treats __is_pod as
7 // a keyword *unless* it is introduced following the struct keyword.
  /external/icu4c/i18n/
upluralrules.cpp 36 UChar *keyword, int32_t capacity,
42 if (keyword == NULL ? capacity != 0 : capacity < 0) {
47 return result.extract(keyword, capacity, *status);
  /external/javassist/src/main/javassist/compiler/ast/
Keyword.java 21 * Keyword.
23 public class Keyword extends ASTree {
26 public Keyword(int token) {
  /external/tinyxml/docs/
tinyxml_8h-source.html 92 <a name="l00085"></a>00085 <span class="keyword">class </span><a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>;
93 <a name="l00086"></a>00086 <span class="keyword">class </span><a class="code" href="classTiXmlElement.html">TiXmlElement</a>;
94 <a name="l00087"></a>00087 <span class="keyword">class </span><a class="code" href="classTiXmlComment.html">TiXmlComment</a>;
95 <a name="l00088"></a>00088 <span class="keyword">class </span><a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>;
96 <a name="l00089"></a>00089 <span class="keyword">class </span><a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>;
97 <a name="l00090"></a>00090 <span class="keyword">class </span><a class="code" href="classTiXmlText.html">TiXmlText</a>;
98 <a name="l00091"></a>00091 <span class="keyword">class </span><a class="code" href="classTiXmlDeclaration.html">TiXmlDeclaration</a>;
99 <a name="l00092"></a>00092 <span class="keyword">class </span>TiXmlParsingData;
101 <a name="l00094"></a>00094 <span class="keyword">const</span> <span class="keywordtype">int</span> TIXML_MAJOR_VERSION = 2;
102 <a name="l00095"></a>00095 <span class="keyword">const</span> <span class="keywordtype">int</span> TIXML_MINOR_VERSION = 4
    [all...]
  /external/clang/test/SemaTemplate/
dependent-template-recover.cpp 5 t->f0<U>(); // expected-error{{use 'template' keyword to treat 'f0' as a dependent template name}}
6 t->f0<int>(); // expected-error{{use 'template' keyword to treat 'f0' as a dependent template name}}
8 t->operator+<U const, 1>(); // expected-error{{use 'template' keyword to treat 'operator +' as a dependent template name}}
9 t->f1<int const, 2>(); // expected-error{{use 'template' keyword to treat 'f1' as a dependent template name}}
11 T::getAs<U>(); // expected-error{{use 'template' keyword to treat 'getAs' as a dependent template name}}
12 t->T::getAs<U>(); // expected-error{{use 'template' keyword to treat 'getAs' as a dependent template name}}
  /libcore/luni/src/main/native/
libcore_icu_NativePluralRules.cpp 42 UnicodeString keyword = toPluralRules(address)->select(value); local
43 if (keyword == "zero") {
45 } else if (keyword == "one") {
47 } else if (keyword == "two") {
49 } else if (keyword == "few") {
51 } else if (keyword == "many") {
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t021hoist.g 6 /* With this true, enum is seen as a keyword. False, it's an identifier */
13 | enumAsKeyword {enumIs = "keyword"}
  /external/antlr/antlr-3.4/runtime/Python/tests/
t021hoist.g 6 /* With this true, enum is seen as a keyword. False, it's an identifier */
13 | enumAsKeyword {enumIs = "keyword"}

Completed in 838 milliseconds

1 2 3 4 5 6 7 8 91011>>