/developers/samples/android/content/webview/PermissionRequest/Application/tests/src/com/example/android/permissionrequest/test/ |
SampleTests.java | 175 public boolean waitForKeyword(String keyword, long timeoutMs) throws InterruptedException { 180 if (message.contains(keyword)) {
|
/development/tools/repo_diff/ |
repo_diff_android.py | 102 def get_commit_with_keyword(project_path, keyword): 103 """Get the latest commit in $project_path with the specific keyword.""" 108 (project_path, keyword), shell=True).rstrip()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_genexps.py | 85 Verify that parenthesis are required when used as a keyword argument value
92 Verify that parenthesis are required when used as a keyword argument value
|
/external/autotest/client/cros/cellular/wardmodem/ |
state_machine.py | 5 import keyword 172 keyword.iskeyword(function):
|
/external/e2fsprogs/lib/ss/ |
ct_c.sed | 54 # Dispatch based on the keyword.... illegal keywords are prefixed by ERROR: 61 s/^/ERROR: unknown keyword: / 65 # Handle the command_table keyword 73 # Handle the request keyword --- this is the heart of the sed script. 156 # Handle the end keyword --- it's basically ignored.
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
ICUResourceBundleCollationTest.java | 142 errln("Error - 'standard' is in the keyword list twice!"); 148 errln("Error - 'standard' was not in the collation tree as a keyword."); 150 logln("'standard' was found as a collation keyword."); 162 private void getFunctionalEquivalentTestCases(String path, ClassLoader cl, String resName, String keyword, 177 ULocale equivLocale = ICUResourceBundle.getFunctionalEquivalent(path, cl, resName, keyword, inLocale, isAvail, truncate);
|
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/util/ |
ICUResourceBundleCollationTest.java | 139 errln("Error - 'standard' is in the keyword list twice!"); 145 errln("Error - 'standard' was not in the collation tree as a keyword."); 147 logln("'standard' was found as a collation keyword."); 159 private void getFunctionalEquivalentTestCases(String path, ClassLoader cl, String resName, String keyword, 174 ULocale equivLocale = ICUResourceBundle.getFunctionalEquivalent(path, cl, resName, keyword, inLocale, isAvail, truncate);
|
/external/python/cpython2/Lib/test/ |
test_genexps.py | 85 Verify that parenthesis are required when used as a keyword argument value 92 Verify that parenthesis are required when used as a keyword argument value
|
/external/python/cpython3/Lib/ |
rlcompleter.py | 109 import keyword 113 for word in keyword.kwlist:
|
/external/python/cpython3/Lib/test/ |
test_genexps.py | 85 Verify that parenthesis are required when used as a keyword argument value 92 Verify that parenthesis are required when used as a keyword argument value
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_genexps.py | 85 Verify that parenthesis are required when used as a keyword argument value 92 Verify that parenthesis are required when used as a keyword argument value
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_genexps.py | 85 Verify that parenthesis are required when used as a keyword argument value 92 Verify that parenthesis are required when used as a keyword argument value
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_genexps.py | 85 Verify that parenthesis are required when used as a keyword argument value 92 Verify that parenthesis are required when used as a keyword argument value
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_genexps.py | 85 Verify that parenthesis are required when used as a keyword argument value 92 Verify that parenthesis are required when used as a keyword argument value
|
/tools/metalava/src/main/java/com/android/tools/metalava/ |
KotlinInteropChecks.kt | 310 private fun isKotlinHardKeyword(keyword: String): Boolean { 312 when (keyword) { 347 /** Returns true if the given string is a reserved Java keyword */ 348 fun isJavaKeyword(keyword: String): Boolean { 351 when (keyword) {
|
/external/autotest/server/cros/multimedia/ |
remote_facade_factory.py | 124 @return: A tuple of (keyword, reason); or None if not found. 127 # Search the line containing the exception keyword, like: 147 keyword, reason = exception_tuple 149 if keyword == 'TestFail': 151 elif keyword == 'TestError': 154 # Raise the exception with the original exception keyword. 155 raise Exception('%s: %s' % (keyword, reason))
|
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/ |
import_statement.py | 6 import keyword 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/ltp/pan/ |
scan.l | 71 char *key, *cont; /* keyword pieces */ 214 printf("A quoted keyword: %s = %s\n", key, cont); 228 printf("A keyword: %s = %s\n", key, cont); 232 return(KEYWORD);
|
/external/icu/icu4c/source/i18n/unicode/ |
coll.h | 723 * collation. At this point, the only recognized keyword for this 733 * Given a keyword, create a string enumeration of all values 734 * for that keyword that are currently in use. 735 * @param keyword a particular keyword as enumerated by 736 * ucol_getKeywords. If any other keyword is passed in, status is set [all...] |
/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/parse/ |
lexer_unittest.py | 50 def _MakeLexTokenForKeyword(keyword, **kwargs): 51 """Makes a LexToken for the given keyword.""" 52 return _MakeLexToken(keyword.upper(), keyword.lower(), **kwargs)
|
/frameworks/support/slices/view/src/main/java/androidx/slice/ |
SliceUtils.java | 303 String keyword = (String) itemList.get(i).getText(); local 304 if (!TextUtils.isEmpty(keyword)) { 305 stringList.add(keyword);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
PluralFormatUnitTest.java | 135 assertEquals("should use first occurrence of the 'odd' keyword", "foo", pf.format(1)); 137 assertEquals("should use first occurrence of the 'other' keyword", "bar", pf.format(2)); 140 assertEquals("should use first occurrence of the 'other' keyword", "foo", pf.format(2)); 142 // omit other keyword. 156 // Test invalid keyword. 160 errln("Defining a message for an invalid keyword should result in " + 165 // -- comma between keyword{message} clauses 167 // -- keyword{message1}{message2} 171 errln("Separating keyword{message} items with other characters " + 183 errln("Defining multiple messages after a keyword should provoke " [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
PluralFormatUnitTest.java | 132 assertEquals("should use first occurrence of the 'odd' keyword", "foo", pf.format(1)); 134 assertEquals("should use first occurrence of the 'other' keyword", "bar", pf.format(2)); 137 assertEquals("should use first occurrence of the 'other' keyword", "foo", pf.format(2)); 139 // omit other keyword. 153 // Test invalid keyword. 157 errln("Defining a message for an invalid keyword should result in " + 162 // -- comma between keyword{message} clauses 164 // -- keyword{message1}{message2} 168 errln("Separating keyword{message} items with other characters " + 180 errln("Defining multiple messages after a keyword should provoke " [all...] |
/external/python/cpython2/Lib/plat-mac/ |
aepack.py | 142 keyword, item = desc.AEGetNthDesc(i+1, '****') 148 keyword, item = desc.AEGetNthDesc(i+1, '****') 149 d[keyword] = unpack(item, formodulename) 303 def mkkeyword(keyword): 304 return aetypes.Keyword(keyword)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/ |
aepack.py | 142 keyword, item = desc.AEGetNthDesc(i+1, '****') 148 keyword, item = desc.AEGetNthDesc(i+1, '****') 149 d[keyword] = unpack(item, formodulename) 303 def mkkeyword(keyword): 304 return aetypes.Keyword(keyword)
|