/external/python/cpython2/Lib/test/ |
D | test_wsgiref.py | 252 self.checkAppURI("http://127.0.0.1/spam", SCRIPT_NAME="/spam") 253 self.checkAppURI("http://127.0.0.1/sp%E4m", SCRIPT_NAME="/sp\xe4m") 266 self.checkReqURI("http://127.0.0.1/spam", SCRIPT_NAME="/spam") 267 self.checkReqURI("http://127.0.0.1/sp%E4m", SCRIPT_NAME="/sp\xe4m") 269 SCRIPT_NAME="/spammity", PATH_INFO="/spam") 271 SCRIPT_NAME="/spammity", PATH_INFO="/sp\xe4m") 273 SCRIPT_NAME="/spammity", PATH_INFO="/spam;ham") 275 SCRIPT_NAME="/spammity", PATH_INFO="/spam;cookie=1234,5678") 277 SCRIPT_NAME="/spammity", PATH_INFO="/spam",QUERY_STRING="say=ni") 279 SCRIPT_NAME="/spammity", PATH_INFO="/spam",QUERY_STRING="s%E4y=ni") [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_wsgiref.py | 416 self.checkAppURI("http://127.0.0.1/spam", SCRIPT_NAME="/spam") 417 self.checkAppURI("http://127.0.0.1/sp%E4m", SCRIPT_NAME="/sp\xe4m") 430 self.checkReqURI("http://127.0.0.1/spam", SCRIPT_NAME="/spam") 431 self.checkReqURI("http://127.0.0.1/sp%E4m", SCRIPT_NAME="/sp\xe4m") 433 SCRIPT_NAME="/spammity", PATH_INFO="/spam") 435 SCRIPT_NAME="/spammity", PATH_INFO="/sp\xe4m") 437 SCRIPT_NAME="/spammity", PATH_INFO="/spam;ham") 439 SCRIPT_NAME="/spammity", PATH_INFO="/spam;cookie=1234,5678") 441 SCRIPT_NAME="/spammity", PATH_INFO="/spam",QUERY_STRING="say=ni") 443 SCRIPT_NAME="/spammity", PATH_INFO="/spam",QUERY_STRING="s%E4y=ni") [all …]
|
/external/autotest/frontend/ |
D | frontend.wsgi | 22 environ['PATH_INFO'] = environ['SCRIPT_NAME'] + environ['PATH_INFO']
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestScriptMetadata.java | 154 return getEnglishTypes("script", CLDRFile.SCRIPT_NAME, sc, english); in getScriptsToShow() 202 + english.getName(CLDRFile.SCRIPT_NAME, scriptCode))); in TestGeographicGrouping()
|
D | TestCoverageLevel.java | 262 case CLDRFile.SCRIPT_NAME: in TypeName()
|
D | TestInheritance.java | 204 b.append(testInfo.getEnglish().getName(CLDRFile.SCRIPT_NAME, in show()
|
D | TestSupplementalInfo.java | 742 addName(CLDRFile.SCRIPT_NAME, ltp.getScript(), b); in showLocaleParts()
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | GenerateG2xG2.java | 159 checkItems(pw, title, sourceData, CLDRFile.SCRIPT_NAME, targetScriptSet); in main() 327 type = CLDRFile.SCRIPT_NAME; // Hant in getType() 345 case CLDRFile.SCRIPT_NAME: in getTypeName()
|
D | ShowLanguages.java | 338 return getEnglishTypes("script", CLDRFile.SCRIPT_NAME); 519 String scriptName = english.getName(CLDRFile.SCRIPT_NAME, script); in addLanguageScriptCells2() 572 String scriptName = english.getName(CLDRFile.SCRIPT_NAME, script); in getGifName() 592 String scriptName = english.getName(CLDRFile.SCRIPT_NAME, script); in addLanguageScriptCells() 966 .addCell(getName(CLDRFile.SCRIPT_NAME, sourceParsed.getScript())) in printLikelySubtags() 969 .addCell(getName(CLDRFile.SCRIPT_NAME, targetParsed.getScript())) in printLikelySubtags() 1797 String name = english.getName(CLDRFile.SCRIPT_NAME, script); in showCorrespondances() 2287 } else if (source == CLDRFile.SCRIPT_NAME) { in printMissing() 2294 if (table == CLDRFile.SCRIPT_NAME) in printMissing() 2327 … : source == CLDRFile.SCRIPT_NAME && target == CLDRFile.LANGUAGE_NAME ? script_languages in print() [all …]
|
D | ScriptPopulations.java | 63 + "\t" + english.getName(CLDRFile.SCRIPT_NAME, script) in main()
|
D | FixTransformNames.java | 236 result = add(result, CLDRFile.SCRIPT_NAME, ltp.getScript()); in getName() 254 if (type == CLDRFile.SCRIPT_NAME && fieldToCode.containsKey(temp)) { in add()
|
D | CompareSuppress.java | 103 + "\t" + english.getName(CLDRFile.SCRIPT_NAME, suppressScript); in scriptAndName()
|
D | ShowData.java | 468 String name = file.getName(CLDRFile.SCRIPT_NAME, script); 484 + english.getName(CLDRFile.SCRIPT_NAME, script) + ")\t" + names);
|
D | GenerateEnums.java | 177 String englishName = english.getName(CLDRFile.SCRIPT_NAME, code); in showScripts() 856 … .equals("currency") ? getName(codeName) : english.getName(CLDRFile.SCRIPT_NAME, codeName); in printRow()
|
D | GenerateMaximalLocales.java | 1618 …(script == null || script.equals("") ? "?" : english.getName(CLDRFile.SCRIPT_NAME, script)) + ";" … in printingName() 1976 + english.getName(CLDRFile.SCRIPT_NAME, result)); in getScriptForLocale2()
|
D | GenerateCoverageLevels.java | 357 + "\t" + english.getName(CLDRFile.SCRIPT_NAME, script) in summarizeCoverage()
|
/external/python/cpython3/Doc/library/ |
D | wsgiref.rst | 78 Shift a single name from ``PATH_INFO`` to ``SCRIPT_NAME`` and return the name. 80 the original ``PATH_INFO`` or ``SCRIPT_NAME`` intact. 91 a WSGI application at ``/foo/bar``. That is, ``SCRIPT_NAME`` will change from 96 appends a trailing slash to ``SCRIPT_NAME``, even though empty path segments are 97 normally ignored, and ``SCRIPT_NAME`` doesn't normally end in a slash. This is 108 ``SERVER_NAME``, ``SERVER_PORT``, ``REQUEST_METHOD``, ``SCRIPT_NAME``, 472 By default, IIS gives a ``PATH_INFO`` that duplicates the ``SCRIPT_NAME`` at
|
/external/python/cpython2/Doc/library/ |
D | wsgiref.rst | 78 Shift a single name from ``PATH_INFO`` to ``SCRIPT_NAME`` and return the name. 80 the original ``PATH_INFO`` or ``SCRIPT_NAME`` intact. 91 a WSGI application at ``/foo/bar``. That is, ``SCRIPT_NAME`` will change from 96 appends a trailing slash to ``SCRIPT_NAME``, even though empty path segments are 97 normally ignored, and ``SCRIPT_NAME`` doesn't normally end in a slash. This is 108 ``SERVER_NAME``, ``SERVER_PORT``, ``REQUEST_METHOD``, ``SCRIPT_NAME``,
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | XMLSource.java | 1396 addFallbackCode(CLDRFile.SCRIPT_NAME, "Hans", "Hans", "stand-alone"); in addFallbackCode() argument 1397 addFallbackCode(CLDRFile.SCRIPT_NAME, "Hant", "Hant", "stand-alone"); in addFallbackCode() argument 1466 …if (typeNo == CLDRFile.LANGUAGE_NAME || typeNo == CLDRFile.SCRIPT_NAME || typeNo == CLDRFile.TERRI… in addFallbackCode()
|
D | CLDRFile.java | 2113 …public static final int NO_NAME = -1, LANGUAGE_NAME = 0, SCRIPT_NAME = 1, TERRITORY_NAME = 2, VARI… 2259 } else if (type == SCRIPT_NAME) { 2396 … extras = addDisplayName(lparser.getScript(), SCRIPT_NAME, localeSeparator, extras, altPicker);
|
D | TestUtilities.java | 659 out.println(code + "\t" + english.getName(CLDRFile.SCRIPT_NAME, code)); in printCountries()
|
D | PathHeader.java | 1232 String scriptName = englishFile.getName(CLDRFile.SCRIPT_NAME, script);
|
/external/libchrome/base/android/jni_generator/ |
D | jni_generator_tests.py | 28 SCRIPT_NAME = 'base/android/jni_generator/jni_generator.py' variable 42 self.script_name = SCRIPT_NAME
|
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | ExampleGenerator.java | 1611 …criptName = cldrFile.getStringValueWithBailey(CLDRFile.getKey(CLDRFile.SCRIPT_NAME, ltp.getScript(… in handleDisplayNames() 1613 … scriptName = cldrFile.getStringValueWithBailey(CLDRFile.getKey(CLDRFile.SCRIPT_NAME, "Latn")); in handleDisplayNames()
|
D | CLDRTest.java | 777 checkForItems(item, scripts, CLDRFile.SCRIPT_NAME, missing, failureCount, null); in TestMinimalLocalization()
|