/external/autotest/site_utils/suite_scheduler/ |
driver_unittest.py | 36 self.nightly_bvt = task.Task(timed_event.Nightly.KEYWORD, '', '') 37 self.weekly_bvt = task.Task(timed_event.Weekly.KEYWORD, '', '') 38 self.new_build_bvt = task.Task(build_event.NewBuild.KEYWORD, '', '') 45 event.keyword = klass.KEYWORD 68 self.config.add_section(timed_event.Nightly.KEYWORD) 69 self.config.add_section(timed_event.Weekly.KEYWORD) 72 self.config, timed_event.Nightly.KEYWORD).InAnyOrder().AndReturn( 73 (timed_event.Nightly.KEYWORD, self.nightly_bvt)) 75 self.config, timed_event.Weekly.KEYWORD).InAnyOrder().AndReturn [all...] |
build_event.py | 19 def __init__(self, keyword, manifest_versions, always_handle): 22 @param keyword: the keyword/name of this event, e.g. nightly. 26 super(BuildEvent, self).__init__(keyword, manifest_versions, 83 KEYWORD = 'new_build' 94 super(NewBuild, self).__init__(self.KEYWORD, mv, always_handle)
|
task_unittest.py | 53 @var _EVENT_KEY: fake event-to-run-on keyword for tasks in config. 73 keyword, new_task = task.Task.CreateFromConfigSection(self.config, 75 self.assertEquals(keyword, self._EVENT_KEY) 90 keyword, new_task = task.Task.CreateFromConfigSection(self.config, 92 self.assertEquals(keyword, self._EVENT_KEY) 111 keyword, new_task = task.Task.CreateFromConfigSection(self.config, 113 self.assertEquals(keyword, self._EVENT_KEY) 129 keyword, new_task = task.Task.CreateFromConfigSection(self.config, 131 self.assertEquals(keyword, self._EVENT_KEY) 143 keyword, new_task = task.Task.CreateFromConfigSection(self.config [all...] |
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/ |
UnicodeLocaleExtension.java | 59 for (Entry<String, String> keyword : _keywords.entrySet()) { 60 String key = keyword.getKey(); 61 String value = keyword.getValue();
|
/libcore/ojluni/src/main/java/sun/util/locale/ |
UnicodeLocaleExtension.java | 77 for (Entry<String, String> keyword : this.keywords.entrySet()) { 78 String key = keyword.getKey(); 79 String value = keyword.getValue();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidContentAssist.java | 559 * - Pair of Strings: the first value is the keyword to insert, and the second value 573 String keyword = null; local 579 keyword = ((ElementDescriptor)choice).getXmlName(); 587 keyword = ((AttributeDescriptor)choice).getXmlLocalName(); 606 keyword = (String) choice; 613 keyword = pair.getFirst(); 620 keyword = type.getFullyQualifiedName(); 626 String nsKeyword = nsPrefix == null ? keyword : (nsPrefix + keyword); 629 keyword = nsKeyword 714 String keyword = proposal.getDisplayString(); local [all...] |
/external/ImageMagick/coders/ |
miff.c | 408 keyword[MagickPathExtent], 506 (void) ResetMagickMemory(keyword,0,sizeof(keyword)); 567 Get the keyword. 570 p=keyword; 575 if ((size_t) (p-keyword) < (MagickPathExtent-1)) 586 Get the keyword value. 624 Assign a value to the specified keyword. 626 switch (*keyword) 631 if (LocaleCompare(keyword,"alpha-color") == 0 403 keyword[MagickPathExtent], local [all...] |
hdr.c | 143 keyword[MagickPathExtent], 259 Determine a keyword and its value. 261 p=keyword; 264 if ((size_t) (p-keyword) < (MagickPathExtent-1)) 276 if (LocaleCompare(keyword,"Y") == 0) 289 Assign a value to the specified keyword. 291 switch (*keyword) 296 if (LocaleCompare(keyword,"format") == 0) 301 (void) FormatLocaleString(tag,MagickPathExtent,"hdr:%s",keyword); 308 if (LocaleCompare(keyword,"gamma") == 0 139 keyword[MagickPathExtent], local [all...] |
fits.c | 255 keyword[9], 332 count=ReadBlob(image,8,(unsigned char *) keyword); 337 if (isspace((int) ((unsigned char) keyword[i])) != 0) 339 keyword[i]=tolower((int) ((unsigned char) keyword[i])); 341 keyword[i]='\0'; 353 if (LocaleCompare(keyword,"end") == 0) 355 if (LocaleCompare(keyword,"extend") == 0) 357 if (LocaleCompare(keyword,"simple") == 0) 359 if (LocaleCompare(keyword,"bitpix") == 0 250 keyword[9], local [all...] |
/external/ImageMagick/MagickCore/ |
policy.c | 758 keyword[MagickPathExtent], 792 (void) CopyMagickString(keyword,token,MagickPathExtent); 793 if (LocaleNCompare(keyword,"<!DOCTYPE",9) == 0) 802 if (LocaleNCompare(keyword,"<!--",4) == 0) 811 if (LocaleCompare(keyword,"<include") == 0) 818 (void) CopyMagickString(keyword,token,MagickPathExtent); 823 if (LocaleCompare(keyword,"file") == 0) 854 if (LocaleCompare(keyword,"<policy") == 0) 870 if (LocaleCompare(keyword,"/>") == 0) 885 switch (*keyword) 744 keyword[MagickPathExtent], local [all...] |
type.c | 1074 keyword[MagickPathExtent], local [all...] |
magic.c | 848 keyword[MagickPathExtent], 882 (void) CopyMagickString(keyword,token,MagickPathExtent); 883 if (LocaleNCompare(keyword,"<!DOCTYPE",9) == 0) 892 if (LocaleNCompare(keyword,"<!--",4) == 0) 901 if (LocaleCompare(keyword,"<include") == 0) 908 (void) CopyMagickString(keyword,token,MagickPathExtent); 913 if (LocaleCompare(keyword,"file") == 0) 835 keyword[MagickPathExtent], local [all...] |
locale.c | 1155 keyword[MagickLocaleExtent], local [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
PluralFormat.java | 83 * selector = explicitValue | keyword 85 * keyword = [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+ 100 * If there is no exact-number match, then a keyword is selected by calling 103 * If there is no clause with that keyword, then the "other" clauses is returned. 160 * <code>String</code>(plural case keyword) --> <code>String</code> 423 * @param selector the PluralSelector for mapping the number (minus offset) to a keyword. 441 // The keyword is null until we need to match against a non-explicit, not-"other" value. 442 // Then we get the keyword from the selector. 444 // or if the only non-explicit keyword is "other".) 445 String keyword=null local 700 String keyword = null; local [all...] |
Collator.java | 603 private static final boolean getYesOrNo(String keyword, String s) { 610 throw new IllegalArgumentException("illegal locale keyword=value: " + keyword + "=" + s); 613 private static final int getIntValue(String keyword, String s, String... values) { 619 throw new IllegalArgumentException("illegal locale keyword=value: " + keyword + "=" + s); 622 private static final int getReorderCode(String keyword, String s) { 624 getIntValue(keyword, s, "space", "punct", "symbol", "currency", "digit"); 643 throw new UnsupportedOperationException("locale keyword kh/colHiraganaQuaternary"); 647 throw new UnsupportedOperationException("locale keyword vt/variableTop") [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
PluralFormat.java | 82 * selector = explicitValue | keyword 84 * keyword = [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+ 99 * If there is no exact-number match, then a keyword is selected by calling 102 * If there is no clause with that keyword, then the "other" clauses is returned. 160 * <code>String</code>(plural case keyword) --> <code>String</code> 438 * @param selector the PluralSelector for mapping the number (minus offset) to a keyword. 456 // The keyword is null until we need to match against a non-explicit, not-"other" value. 457 // Then we get the keyword from the selector. 459 // or if the only non-explicit keyword is "other".) 460 String keyword=null local 719 String keyword = null; local [all...] |
/external/libjpeg-turbo/ |
cdjpeg.c | 78 * Case-insensitive matching of possibly-abbreviated keyword switches. 79 * keyword is the constant keyword (must be lower case already), 84 keymatch (char * arg, const char * keyword, int minchars) 90 if ((ck = *keyword++) == '\0') 91 return FALSE; /* arg longer than keyword, no good */
|
/external/icu/icu4c/source/common/unicode/ |
uloc.h | 297 * Invariant character for assigning value to a keyword 303 * Unicode code point for '=' for assigning value to a keyword. 637 * Gets the keyword name suitable for display for the specified locale. 639 * string for the keyword collation. 643 * const char* keyword =NULL; 655 * keyword = uenum_next(keywordEnum, &keywordLen, &status); 656 * displayKeywordLen = uloc_getDisplayKeyword(keyword, "en_US", displayKeyword, 256); 661 * @param keyword The keyword whose display string needs to be returned. 666 * @param dest the buffer to which the displayable keyword should be written [all...] |
/external/llvm/utils/vim/syntax/ |
tablegen.vim | 17 syn keyword tgKeyword def let in code dag field include defm foreach 18 syn keyword tgType class int string list bit bits multiclass 28 syn keyword tgTodo contained TODO FIXME
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cid/ |
cidload.c | 72 const T1_Field keyword ) 81 /* if the keyword has a dedicated callback, call it */ 82 if ( keyword->type == T1_FIELD_TYPE_CALLBACK ) 84 keyword->reader( (FT_Face)face, parser ); 90 switch ( keyword->location ) 116 keyword->ident )); 122 switch ( keyword->location ) 136 /* now, load the keyword data in the object's field(s) */ 137 if ( keyword->type == T1_FIELD_TYPE_INTEGER_ARRAY || 138 keyword->type == T1_FIELD_TYPE_FIXED_ARRAY 384 T1_Field keyword = (T1_Field)cid_field_records; local [all...] |
/external/pdfium/third_party/freetype/src/cid/ |
cidload.c | 72 const T1_Field keyword ) 81 /* if the keyword has a dedicated callback, call it */ 82 if ( keyword->type == T1_FIELD_TYPE_CALLBACK ) 84 keyword->reader( (FT_Face)face, parser ); 90 switch ( keyword->location ) 116 keyword->ident )); 122 switch ( keyword->location ) 136 /* now, load the keyword data in the object's field(s) */ 137 if ( keyword->type == T1_FIELD_TYPE_INTEGER_ARRAY || 138 keyword->type == T1_FIELD_TYPE_FIXED_ARRAY 358 T1_Field keyword = (T1_Field)cid_field_records; local [all...] |
/external/toybox/scripts/ |
config2help.c | 41 char *keyword(char *name, char *line) function 158 // source or config keyword at left edge? 160 if ((s = keyword("config", line))) { 165 } else if ((s = keyword("source", line))) parse(s); 178 else if ((s = keyword("depends", line)) && (s = keyword("on", s))) 180 else if (keyword("help", line)) sym->help_indent = -1; 255 if (catch->help && (that = keyword("usage:", catch->help->data))) {
|
/external/icu/icu4c/source/test/intltest/ |
plurults.cpp | 401 const UnicodeString* keyword; local 402 while (NULL != (keyword = keywords->snext(status))) { 403 int32_t count = rules->getSamples(*keyword, values, UPRV_LENGTHOF(values), status); 407 UNICODE_STRING_SIMPLE(", keyword ") + *keyword); 412 // errln(UNICODE_STRING_SIMPLE("no samples for keyword ") + *keyword + UNICODE_STRING_SIMPLE(" in locale ") + locales[i].getName() ); 418 UNICODE_STRING_SIMPLE(", keyword ") + *keyword); 429 if (*keyword != resultKeyword) 451 UnicodeString keyword = rules->select((int32_t)26); local 597 UnicodeString keyword = pr->select(2.); local 910 UnicodeString keyword = pr->select(n); local [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
Collator.java | 633 private static final boolean getYesOrNo(String keyword, String s) { 640 throw new IllegalArgumentException("illegal locale keyword=value: " + keyword + "=" + s); 643 private static final int getIntValue(String keyword, String s, String... values) { 649 throw new IllegalArgumentException("illegal locale keyword=value: " + keyword + "=" + s); 652 private static final int getReorderCode(String keyword, String s) { 654 getIntValue(keyword, s, "space", "punct", "symbol", "currency", "digit"); 673 throw new UnsupportedOperationException("locale keyword kh/colHiraganaQuaternary"); 677 throw new UnsupportedOperationException("locale keyword vt/variableTop") [all...] |
/external/autotest/client/cros/cellular/wardmodem/ |
global_state.py | 6 import keyword namespace 131 keyword.iskeyword(component_name): 145 keyword.iskeyword(component_name):
|