Searched refs:keywords (Results 1 - 25 of 98) sorted by relevance

1234

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DKeywordsBox.java27 * List of keywords according to 3GPP 26.244.
33 private String[] keywords; field in class:KeywordsBox
44 return keywords;
51 public void setKeywords(String[] keywords) { argument
52 this.keywords = keywords;
57 for (String keyword : keywords) {
68 keywords = new String[keywordCount];
71 keywords[i] = IsoTypeReader.readString(content);
79 IsoTypeWriter.writeUInt8(byteBuffer, keywords
[all...]
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/
H A Doptions.js183 var keywords = JSON.parse(window.localStorage.getItem('keywords'));
184 if (keywords) {
189 for (var i = 0; i < keywords.length; i++) {
195 template.push(keywords[i]);
205 if (keywords.length == MAX_CUS_TOPICS) {
212 if (!keywords && !topics) {
246 var keywords = JSON.parse(window.localStorage.getItem('keywords'));
250 if (keywords) {
[all...]
H A Dfeed.js331 var keywords = JSON.parse(window.localStorage.getItem('keywords'));
333 if (keywords) {
334 for (i = 0; i < keywords.length; i++) {
335 if (topicVal == keywords[i]) {
356 var keywords = JSON.parse(window.localStorage.getItem('keywords'));
360 if (!topics && !keywords) {
373 if (keywords) {
374 for (i = 0; i < (keywords
[all...]
/external/llvm/utils/lit/
H A Dsetup.py15 keywords = 'test C++ automatic discovery', variable
/external/doclava/res/assets/templates/
H A Dkeywords.cs14 <div class="jd-letterlist"><?cs each:letter=keywords ?>
18 <?cs each:letter=keywords ?>
/external/v8/test/mjsunit/
H A Dkeywords-and-reserved_words.js28 // Test proper handling of keywords, future reserved words and
33 // http://trac.webkit.org/export/89109/trunk/LayoutTests/fast/js/script-tests/keywords-and-reserved_words.js
60 // All non-strict keywords are also keywords in strict code.
107 // Not keywords - these are all just identifiers.
127 var keywords = [ variable
144 for (var i = 0; i < keywords.length; i++) {
145 testKeyword(keywords[i]);
H A Dobject-literal.js108 // Test keywords are valid as property names in initializers and dot-access.
109 var keywords = [ variable
190 for (var i = 0; i < keywords.length; i++) {
191 testKeywordProperty(keywords[i]);
/external/libvpx/libvpx/examples/includes/geshi/geshi/
H A Dapache.php17 * - Added missing php keywords (milian)
18 * - Added some more keywords
58 /*keywords*/
114 /*keywords 2*/
121 /*keywords 3*/
H A Dcfm.php288 'DISALLOWED_BEFORE' => '(?<![a-zA-Z0-9\$_\|\#>|^])', // allow ; before keywords
289 'DISALLOWED_AFTER' => '(?![a-zA-Z0-9_\|%\\-])', // allow & after keywords
292 'DISALLOWED_BEFORE' => '(?<![a-zA-Z0-9\$_\|\#>&|^])', // allow ; before keywords
293 'DISALLOWED_AFTER' => '(?![a-zA-Z0-9_\|%\\-])', // allow & after keywords
H A Ddos.php23 * - Add missing keywords.
24 * - Find a good hyperlink for keywords.
40 * as keywords but, for example, as arguments to the echo command.
72 /* Flow control keywords */
78 /* IF statement keywords */
H A Dmysql.php14 * types of keywords; several minor errors were corrected as well.
17 * keywords in MySQL have a double function: many of those are either a function
24 * Other keywords with double usage cannot be distinguished and are classified
73 // Mix: statement keywords and keywords that don't fit in any other
109 // Mix: statement keywords distinguished from functions by the same name
181 // String functions distinguished from other keywords by the same name
210 // Date-time functions distinguished from other keywords by the same name
219 // Comparison functions distinguished from other keywords by the same name
241 // Information functions distinguished from other keywords b
[all...]
H A Dsql.php23 * - Added many more keywords (mostly MYSQL keywords)
29 * * Add all keywords
H A Dactionscript3.php12 * All keywords scraped from the Flex 2.0.1 Documentation
17 * For styling, keywords data from 0 to 1 (accessible through .kw1, etc.) are described here :
22 * 4 : 'class' and 'package' keywords
340 //FIX: Must be last in order to avoid conflicts with keywords present
H A Djava5.php25 * - Added extra missed keywords
68 /* see the authoritative list of all 50 Java keywords at */
71 /* java keywords, part 1: control flow */
81 /* java keywords, part 2 */
93 /* Java keywords, part 3: primitive data types and 'void' */
613 /* all Java keywords are case sensitive */
H A Dobjc.php18 * - Added keywords for Objective-C 2.0 (Leopard+).
70 // Objective-C keywords
297 1 => 'color: #a61390;', // Objective-C keywords
H A Dqbasic.php22 * - Removed unnessecary slashes from some keywords
28 * * Make sure all possible combinations of keywords with
H A Dverilog.php17 * - extended macro keywords
51 // keywords
H A Dgml.php15 * All GML keywords were extracted from the Game Maker HTML Help file using a PHP
28 * - div and mod are language keywords, moved (from symbols) to the appropiate section (1).
29 * - Moved self, other, all, noone and global identifiers to language keywords section 1.
72 // language keywords
H A Dabap.php18 * Be aware that in ABAP language, keywords may be composed of several tokens,
21 * it's why we must decode them with REGEXPS. As there are many keywords with several tokens,
27 * Styles used : keywords are all displayed in upper case, and they are organized into 4 categories :
29 * 3) other statements (blue-green), 4) keywords (violet).
40 * - Major Release, more than 1000 statements and keywords added = whole abap 7.1 (Sandra Rossi)
420 'keywords from',
778 // keywords
1343 4 => 'color: #500066; text-transform: uppercase; font-weight: bold; zzz:keyword;', // next tokens of other statements ("keywords")
H A Dbash.php15 * - Added loads of keywords and commands of GNU/Linux
22 * - Added a lot of keywords (BenBE / Jan G)
/external/icu4c/common/
H A Dlocid.cpp91 char *keywords, int32_t keywordCapacity,
890 char *keywords; member in class:KeywordEnumeration
901 : keywords((char *)&fgClassID), current((char *)&fgClassID), length(0) {
906 keywords = (char *)uprv_malloc(keywordLen+1);
907 if (keywords == NULL) {
911 uprv_memcpy(keywords, keys, keywordLen);
912 keywords[keywordLen] = 0;
913 current = keywords + currentIndex;
925 return new KeywordEnumeration(keywords, length, (int32_t)(current - keywords), statu
977 char keywords[256]; local
[all...]
/external/valgrind/main/include/
H A Dpub_tool_gdbserver.h137 keywords is a set of keywords separated by a space
141 It returns -2 if two or more keywords are starting with input_word
143 Example with keywords = "hello world here is hell" :
154 kwd_report_all : the error msg will show all possible keywords
163 extern Int VG_(keyword_id) (Char* keywords, Char* input_word,
/external/libvpx/libvpx/examples/includes/geshi/contrib/
H A Dlangcheck.php448 foreach($language_data['KEYWORDS'] as $key => $keywords) {
455 if(empty($keywords)) {
458 foreach($keywords as $id => $kw) {
467 if(count($keywords) != count(array_unique($keywords))) {
468 $kw_diffs = array_count_values($keywords);
480 foreach($language_data['KEYWORDS'] as $key => $keywords) {
485 $kw_diffs = array_intersect($keywords, $keywords2);
524 foreach($language_data['CASE_SENSITIVE'] as $key => $keywords) {
529 foreach($language_data['URLS'] as $key => $keywords) {
[all...]
/external/icu4c/test/intltest/
H A Dselfmts.cpp115 // ICU 4.8 does not check for duplicate keywords any more.
168 logln("SelectFormat Unit test: Testing format() with keyword method and with invalid keywords...");
171 UnicodeString keywords[] = { local
186 for (int32_t i = 0; i < LENGTHOF(keywords); i++ ){
188 selFmt->format( keywords[i], result , ignore , status);
191 keywords[i]+" ("+u_errorName(status)+")");
/external/libvpx/libvpx/
H A Ddocs.mk18 keywords.dox \

Completed in 307 milliseconds

1234