HomeSort by relevance Sort by last modified time
    Searched refs:keyword (Results 251 - 275 of 656) sorted by null

<<11121314151617181920>>

  /external/tensorflow/tensorflow/tools/compatibility/
tf_upgrade.py 282 # Examine any non-keyword argument and make it into a keyword argument
294 "Failed to add keyword %r to reordered function %r" %
300 error="A necessary keyword argument failed to be inserted.")
306 self._file_edit.add("Added keyword %r to reordered function %r" %
310 # Examine each keyword argument and convert it to the final renamed form
313 for keyword in node.keywords:
314 argkey = keyword.arg
315 argval = keyword.value
321 # keyword key. Unfortunately ast does not give you the location o
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUResourceBundle.java 101 * Returns a functionally equivalent locale, considering keywords as well, for the specified keyword.
104 * @param keyword a particular keyword to consider (such as "collation" )
109 * @param omitDefault if true, omit keyword and value if default.
115 String resName, String keyword, ULocale locID,
117 String kwVal = locID.getKeywordValue(keyword);
129 kwVal = ""; // default tag is treated as no keyword
177 // we need to re calculate the "default" keyword.
216 // we need to re calculate the "default" keyword.
234 "Could not find locale containing requested or default keyword."
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundle.java 97 * Returns a functionally equivalent locale, considering keywords as well, for the specified keyword.
100 * @param keyword a particular keyword to consider (such as "collation" )
105 * @param omitDefault if true, omit keyword and value if default.
111 String resName, String keyword, ULocale locID,
113 String kwVal = locID.getKeywordValue(keyword);
125 kwVal = ""; // default tag is treated as no keyword
173 // we need to re calculate the "default" keyword.
212 // we need to re calculate the "default" keyword.
230 "Could not find locale containing requested or default keyword."
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
cgitb.py 25 import keyword
86 if ttype == tokenize.NAME and token not in keyword.kwlist:
  /external/llvm/docs/_ocamldoc/
style.css 83 .keyword { font-weight: bold; }
  /external/python/cpython2/Lib/
cgitb.py 25 import keyword
86 if ttype == tokenize.NAME and token not in keyword.kwlist:
  /external/python/cpython3/Lib/
cgitb.py 25 import keyword
85 if ttype == tokenize.NAME and token not in keyword.kwlist:
  /external/python/cpython3/Parser/
asdl.py 374 def _at_keyword(self, keyword):
376 self.cur_token.value == keyword)
  /external/skia/tests/
EncodeTest.cpp 176 std::vector<std::string>& comments, const char* keyword, const char* text) {
177 comments.push_back(keyword);
  /external/skqp/tests/
EncodeTest.cpp 175 std::vector<std::string>& comments, const char* keyword, const char* text) {
176 comments.push_back(keyword);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cgitb.py 25 import keyword
86 if ttype == tokenize.NAME and token not in keyword.kwlist:
  /prebuilts/gdb/linux-x86/lib/python2.7/
cgitb.py 25 import keyword
86 if ttype == tokenize.NAME and token not in keyword.kwlist:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgitb.py 25 import keyword
86 if ttype == tokenize.NAME and token not in keyword.kwlist:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgitb.py 25 import keyword
86 if ttype == tokenize.NAME and token not in keyword.kwlist:
  /external/autotest/site_utils/
server_manager_utils.py 271 @param kwargs: keyword arguments for function to be called.
  /external/icu/icu4c/source/i18n/
coll.cpp 881 Collator::getKeywordValues(const char *keyword, UErrorCode& status) {
883 ucol_getKeywordValues(keyword, &status), status);
896 Collator::getFunctionalEquivalent(const char* keyword, const Locale& locale,
901 keyword, locale.getName(), &isAvailable, &status);
plurrule.cpp 303 PluralRules::getUniqueKeywordValue(const UnicodeString& /* keyword */) {
309 PluralRules::getAllKeywordValues(const UnicodeString & /* keyword */, double * /* dest */,
378 // This results in test failures with values mapping back to a different keyword.
395 PluralRules::getSamples(const UnicodeString &keyword, double *dest,
397 RuleChain *rc = rulesForKeyword(keyword);
409 RuleChain *PluralRules::rulesForKeyword(const UnicodeString &keyword) const {
412 if (rc->fKeyword == keyword) {
421 PluralRules::isKeyword(const UnicodeString& keyword) const {
422 if (0 == keyword.compare(PLURAL_KEYWORD_OTHER, 5)) {
425 return rulesForKeyword(keyword) != NULL
    [all...]
calendar.cpp 238 static UBool isStandardSupportedKeyword(const char *keyword, UErrorCode& status) {
242 ECalType calType = getCalendarType(keyword);
290 // when calendar keyword is not available or not supported, read supplementalData
418 // char keyword[ULOC_FULLNAME_CAPACITY];
419 // getCalendarKeyword(id, keyword, (int32_t)sizeof(keyword));
420 // return isStandardSupportedKeyword(keyword, status);
448 char keyword[ULOC_FULLNAME_CAPACITY]; local
452 getCalendarKeyword(str, keyword, (int32_t) sizeof(keyword));
949 char keyword[ULOC_FULLNAME_CAPACITY]; local
    [all...]
  /prebuilts/go/darwin-x86/src/go/build/
read.go 120 // readKeyword reads the given keyword from the input.
121 // If the keyword is not present, readKeyword records a syntax error.
  /prebuilts/go/linux-x86/src/go/build/
read.go 120 // readKeyword reads the given keyword from the input.
121 // If the keyword is not present, readKeyword records a syntax error.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
getargs.c 1544 const char *fname, *msg, *custom_msg, *keyword; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
getargs.c 1544 const char *fname, *msg, *custom_msg, *keyword; local
    [all...]
  /external/python/cpython2/Python/
getargs.c 1570 const char *fname, *msg, *custom_msg, *keyword; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/auth/x500/
X500PrincipalTest.java 292 Map<String, String> keyword = new HashMap<String, String>(); local
293 keyword.put("CN", "2.19");
294 keyword.put("OU", "1.2.5.19");
295 keyword.put("O", "1.2.5");
296 X500Principal X500p = new X500Principal("CN=Duke, OU=JavaSoft, O=Sun Microsystems, C=US ,CN=DD", keyword);
318 Map<String, String> keyword = new HashMap<String, String>(); local
319 keyword.put("CN", "2.19");
320 keyword.put("OU", "1.2.5.19");
321 keyword.put("O", "1.2.5");
322 X500Principal X500p = new X500Principal("CN=Duke, OU=JavaSoft, O=Sun Microsystems, C=US ,CN=DD", keyword);
    [all...]
  /external/ImageMagick/coders/
pnm.c 319 keyword[MagickPathExtent],
345 p=keyword;
348 if ((size_t) (p-keyword) < (MagickPathExtent-1))
353 if (LocaleCompare(keyword,"endhdr") == 0)
366 Assign a value to the specified keyword.
368 if (LocaleCompare(keyword,"depth") == 0)
371 if (LocaleCompare(keyword,"height") == 0)
373 if (LocaleCompare(keyword,"maxval") == 0)
375 if (LocaleCompare(keyword,"TUPLTYPE") == 0)
416 if (LocaleCompare(keyword,"width") == 0
315 keyword[MagickPathExtent], local
    [all...]

Completed in 1358 milliseconds

<<11121314151617181920>>