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

1 2 3 4 5 6 7 8

  /external/icu/android_icu4j/src/main/java/android/icu/impl/
StandardPlural.java 44 private final String keyword; field in class:StandardPlural
47 keyword = kw;
51 * @return the lowercase CLDR keyword string for the plural form
54 return keyword;
58 * @param keyword for example "few" or "other"
59 * @return the plural form corresponding to the keyword, or null
61 public static final StandardPlural orNullFromString(CharSequence keyword) {
62 switch (keyword.length()) {
64 if ("one".contentEquals(keyword)) {
66 } else if ("two".contentEquals(keyword)) {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
StandardPlural.java 42 private final String keyword; field in class:StandardPlural
45 keyword = kw;
49 * @return the lowercase CLDR keyword string for the plural form
52 return keyword;
56 * @param keyword for example "few" or "other"
57 * @return the plural form corresponding to the keyword, or null
59 public static final StandardPlural orNullFromString(CharSequence keyword) {
60 switch (keyword.length()) {
62 if ("one".contentEquals(keyword)) {
64 } else if ("two".contentEquals(keyword)) {
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
HyperParser.py 12 import keyword namespace
157 keyword.iskeyword(str[i:pos])):
ColorDelegator.py 3 import keyword namespace
16 kw = r"\b" + any("KEYWORD", keyword.kwlist) + r"\b"
68 "KEYWORD": idleConf.GetHighlight(theme, "keyword"),
229 self.tag_add("KEYWORD",
  /prebuilts/gdb/darwin-x86/lib/python2.7/
rlcompleter.py 103 import keyword namespace
106 for word in keyword.kwlist:
cgitb.py 25 import keyword namespace
86 if ttype == tokenize.NAME and token not in keyword.kwlist:
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
HyperParser.py 12 import keyword namespace
157 keyword.iskeyword(str[i:pos])):
ColorDelegator.py 3 import keyword namespace
16 kw = r"\b" + any("KEYWORD", keyword.kwlist) + r"\b"
68 "KEYWORD": idleConf.GetHighlight(theme, "keyword"),
229 self.tag_add("KEYWORD",
  /prebuilts/gdb/linux-x86/lib/python2.7/
rlcompleter.py 103 import keyword namespace
106 for word in keyword.kwlist:
cgitb.py 25 import keyword namespace
86 if ttype == tokenize.NAME and token not in keyword.kwlist:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
HyperParser.py 12 import keyword namespace
157 keyword.iskeyword(str[i:pos])):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
rlcompleter.py 103 import keyword namespace
106 for word in keyword.kwlist:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
HyperParser.py 12 import keyword namespace
157 keyword.iskeyword(str[i:pos])):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rlcompleter.py 103 import keyword namespace
106 for word in keyword.kwlist:
  /external/autotest/client/cros/cellular/wardmodem/
global_state.py 6 import keyword namespace
131 keyword.iskeyword(component_name):
145 keyword.iskeyword(component_name):
state_machine.py 5 import keyword namespace
172 keyword.iskeyword(function):
  /external/icu/icu4c/source/test/cintltst/
cpluralrulestest.c 70 UChar keyword[kKeywordBufLen]; local
72 int32_t keywdLen = uplrules_select(uplrules, testItemPtr->number, keyword, kKeywordBufLen, &status);
74 keyword[kKeywordBufLen-1] = 0;
78 if ( u_strcmp(keyword, keywordExpected) != 0 ) {
81 testItemPtr->locale, testItemPtr->number, testItemPtr->keywordExpected, u_austrcpy(bcharBuf,keyword) );
96 UChar keyword[8]; local
105 length = uplrules_select(upr, 2., keyword, 8, &errorCode);
106 if (U_FAILURE(errorCode) || u_strCompare(keyword, length, two, 3, FALSE) != 0) {
  /external/ImageMagick/coders/
vicar.c 153 keyword[MagickPathExtent],
228 Determine a keyword and its value.
230 p=keyword;
233 if ((size_t) (p-keyword) < (MagickPathExtent-1))
259 Assign a value to the specified keyword.
261 if (LocaleCompare(keyword,"Label_RECORDS") == 0)
263 if (LocaleCompare(keyword,"LBLSIZE") == 0)
265 if (LocaleCompare(keyword,"RECORD_BYTES") == 0)
267 if (LocaleCompare(keyword,"NS") == 0)
269 if (LocaleCompare(keyword,"LINES") == 0
149 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...]
  /external/autotest/site_utils/suite_scheduler/
base_event.py 21 def SectionName(keyword):
23 return keyword + _SECTION_SUFFIX
49 @var _keyword: the keyword/name of this event, e.g. new_build, nightly.
72 Uses cls.KEYWORD to determine which section to look at, and parses
78 section = SectionName(cls.KEYWORD)
82 def __init__(self, keyword, manifest_versions, always_handle):
85 @param keyword: the keyword/name of this event, e.g. nightly.
89 self._keyword = keyword
96 def keyword(self) member in class:BaseEvent
    [all...]
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
import_statement.py 6 import keyword namespace
38 if keyword.iskeyword(value_part):
39 raise ValueError('%s is a reserved keyword.' % value_part)
81 if keyword.iskeyword(value):
82 raise ValueError('%s is a reserved keyword.' % value)
280 if keyword.iskeyword(value):
281 raise ValueError('%s is a reserved keyword.' % value)
  /external/chromium-trace/catapult/third_party/coverage/coverage/
phystokens.py 7 import keyword namespace
116 if ttype == token.NAME and keyword.iskeyword(ttext):
  /external/ImageMagick/MagickCore/
coder.c 827 keyword[MagickPathExtent],
861 (void) CopyMagickString(keyword,token,MagickPathExtent);
862 if (LocaleNCompare(keyword,"<!DOCTYPE",9) == 0)
871 if (LocaleNCompare(keyword,"<!--",4) == 0)
880 if (LocaleCompare(keyword,"<include") == 0)
887 (void) CopyMagickString(keyword,token,MagickPathExtent);
892 if (LocaleCompare(keyword,"file") == 0)
923 if (LocaleCompare(keyword,"<coder") == 0)
939 if (LocaleCompare(keyword,"/>") == 0)
955 switch (*keyword)
813 keyword[MagickPathExtent], local
    [all...]
  /external/dng_sdk/source/
dng_iptc.cpp 409 dng_string keyword; local
411 ParseString (stream, keyword, charSet);
413 if (keyword.NotEmpty ())
415 fKeywords.Append (keyword);
  /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...]

Completed in 961 milliseconds

1 2 3 4 5 6 7 8