Home
last modified time | relevance | path

Searched refs:script (Results 1 – 25 of 46) sorted by relevance

12

/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/timedetector/
H A DTimeDetectorStrategyImplTest.java243 script.simulateTimePassing() in testSuggestTelephonyTime_autoTimeEnabled()
350 script.simulateTimePassing(); in testSuggestTelephonyTime_multipleSlotIndexsAndBucketing()
367 script.simulateTimePassing(); in testSuggestTelephonyTime_multipleSlotIndexsAndBucketing()
414 Script script = new Script() in testSuggestTelephonyTime_autoTimeDisabled_suggestionMatchesSystemClock() local
420 script.simulateTimePassing(); in testSuggestTelephonyTime_autoTimeDisabled_suggestionMatchesSystemClock()
457 script.simulateTimePassing(); in testSuggestTelephonyTime_autoTimeDisabled_suggestionMismatchesSystemClock()
494 script.simulateTimePassing(); in testSuggestTelephonyTime_autoTimeDisabled_suggestionMismatchesSystemClock2()
971 Script script = new Script() in testSuggestNetworkTime_autoTimeEnabled() local
1001 Script script = new Script() in testSuggestNetworkTime_autoTimeDisabled() local
1008 script.simulateTimePassing() in testSuggestNetworkTime_autoTimeDisabled()
[all …]
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/timezonedetector/
H A DTimeZoneDetectorStrategyImplTest.java411 Script script = new Script() in testEmptyTelephonySuggestions() local
458 Script script = new Script() in testTelephonySuggestionsWhenTimeZoneUninitialized() local
576 Script script = new Script() in testTelephonySuggestionsSingleSlotId() local
642 Script script = new Script() in testTelephonySuggestionMultipleSlotIndexSuggestionScoringAndSlotIndexBias() local
730 Script script = new Script() in testTelephonySuggestionStrategyDoesNotAssumeCurrentSetting_autoTelephony() local
781 Script script = new Script() in checkManualSuggestion_unrestricted_autoDetectionEnabled() local
798 Script script = new Script() in testManualSuggestion_autoDetectNotSupported() local
822 Script script = new Script() in testManualSuggestion_autoTimeEnabled_userRestrictions() local
844 Script script = new Script() in testManualSuggestion_autoTimeDisabled_userRestrictions() local
865 Script script = new Script() in testLocationAlgorithmEvent_statusChangesOnly() local
[all …]
/aosp14/frameworks/base/tools/localedata/
H A Dextract_icu_data.py124 index, script[0], script[1], script[2], script[3]))
137 all_scripts.index(script),
139 script))
147 (ord(script[0]) << 24) |
148 (ord(script[1]) << 16) |
149 (ord(script[2]) << 8) |
150 ord(script[3]))
181 return script.replace("~", "_")
224 for script in sorted_scripts:
242 for script in sorted_scripts:
[all …]
/aosp14/frameworks/base/libs/androidfw/
H A DLocaleData.cpp48 uint32_t findParent(uint32_t packed_locale, const char* script) { in findParent() argument
51 if (memcmp(script, SCRIPT_PARENTS[i].script, SCRIPT_LENGTH) == 0) { in findParent()
78 uint32_t packed_locale, const char* script, in findAncestors() argument
91 ancestor = findParent(ancestor, script); in findAncestors()
98 const char* script, in findDistance() argument
104 supported, script, in findDistance()
114 inline bool isRepresentative(uint32_t language_and_region, const char* script) { in isRepresentative() argument
117 (((uint64_t) script[0]) << 24u) | in isRepresentative()
118 (((uint64_t) script[1]) << 16u) | in isRepresentative()
119 (((uint64_t) script[2]) << 8u) | in isRepresentative()
[all …]
H A DLocale.cpp53 safe_transform_copy(script_chars, script, in set_script()
109 script[0]) { in InitFromFilterString()
231 static_assert(sizeof(ResTable_config::localeScript) == sizeof(LocaleValue::script));
238 memcpy(script, config.localeScript, sizeof(config.localeScript)); in InitFromResTable()
250 if (script[0]) { in WriteTo()
251 memcpy(out->localeScript, script, sizeof(out->localeScript)); in WriteTo()
H A DLocaleDataTables.cpp2451 const char script[4]; member
/aosp14/frameworks/base/cmds/idmap2/
H A Dstatic-checks.sh107 script="$(readlink -f "$BASH_SOURCE")"
108 prefix="$(dirname "$script")"
128 echo "usage: $(basename $script) [--check|--fix|--help]"
H A Dvalgrind.sh46 script="$(readlink -f "$BASH_SOURCE")"
47 prefix="$(dirname "$script")"
/aosp14/frameworks/base/packages/services/PacProcessor/src/com/android/pacprocessor/
H A DPacService.java127 public void setPacFile(String script) throws RemoteException { in setPacFile() argument
134 if (!mPacProcessor.setProxyScript(script)) { in setPacFile()
139 mPendingScript = script; in setPacFile()
/aosp14/frameworks/base/tools/lint/fix/
H A DREADME.md7 It's a python script that runs the framework linter,
18 directory. This script runs the lint, unpacks those files, and copies them back into the tree.
30 The script's help output explains things that are omitted here.
/aosp14/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp1784 (RsScript)script, (RsAllocation)alloc, slot); in nScriptBindAllocation()
1796 rsScriptSetVarI((RsContext)con, (RsScript)script, slot, val); in nScriptSetVarI()
1827 rsScriptSetVarJ((RsContext)con, (RsScript)script, slot, val); in nScriptSetVarJ()
1848 rsScriptSetVarF((RsContext)con, (RsScript)script, slot, val); in nScriptSetVarF()
1869 rsScriptSetVarD((RsContext)con, (RsScript)script, slot, val); in nScriptSetVarD()
1895 rsScriptSetVarV((RsContext)con, (RsScript)script, slot, ptr, len); in nScriptSetVarV()
1911 rsScriptGetVarV((RsContext)con, (RsScript)script, slot, ptr, len); in nScriptGetVarV()
1984 rsScriptInvokeV((RsContext)con, (RsScript)script, slot, ptr, len); in nScriptInvokeV()
2084 rsScriptForEachMulti((RsContext)con, (RsScript)script, slot, in nScriptForEach()
2185 rsScriptReduce((RsContext)con, (RsScript)script, slot, in nScriptReduce()
[all …]
/aosp14/frameworks/base/libs/androidfw/include/androidfw/
H A DLocale.h34 char script[4]; member
77 void set_script(const char* script);
/aosp14/frameworks/base/cmds/app_process/
H A DAndroid.bp34 // version script to prevent unwanted interposition.
39 // functions or type_info variables. Hence, a version script is needed even for
41 version_script: "version-script.txt",
/aosp14/system/core/fastboot/fuzzy_fastboot/example/
H A Dchecksum_parser.py27 script, response, info = sys.argv
H A Dvalidator.py24 script, command, fname = sys.argv
/aosp14/frameworks/base/startop/apps/ColorChanging/
H A Dgradlew.bat4 @rem Gradle startup script for Windows
16 …lt JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
/aosp14/frameworks/base/core/java/android/webkit/
H A DPacProcessor.java66 boolean setProxyScript(@NonNull String script); in setProxyScript() argument
/aosp14/frameworks/base/tests/HwAccelerationTest/
H A Ddefault.properties7 # "build.properties", and override values to adapt the script to your
/aosp14/system/core/init/
H A Dreboot_test.cpp102 std::string script = StringReplace(StringReplace(kScriptTemplate, "$name", name, false), in AddTestService() local
111 ASSERT_TRUE(WriteStringToFd(script, tf.fd)); in AddTestService()
/aosp14/frameworks/base/packages/SettingsLib/Spa/
H A Dgradlew.bat20 @rem Gradle startup script for Windows
35 …lt JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
/aosp14/frameworks/base/tests/TouchLatency/
H A Dgradlew.bat20 @rem Gradle startup script for Windows
35 …lt JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
/aosp14/frameworks/base/rs/java/android/renderscript/
H A DRenderScript.java291 native void rsnContextBindRootScript(long con, long script); in rsnContextBindRootScript() argument
292 synchronized void nContextBindRootScript(long script) { in nContextBindRootScript() argument
294 rsnContextBindRootScript(mContext, script); in nContextBindRootScript()
736 native void rsnScriptBindAllocation(long con, long script, long alloc, int slot); in rsnScriptBindAllocation() argument
737 synchronized void nScriptBindAllocation(long script, long alloc, int slot) { in nScriptBindAllocation() argument
739 rsnScriptBindAllocation(mContext, script, alloc, slot); in nScriptBindAllocation()
741 native void rsnScriptSetTimeZone(long con, long script, byte[] timeZone); in rsnScriptSetTimeZone() argument
742 synchronized void nScriptSetTimeZone(long script, byte[] timeZone) { in nScriptSetTimeZone() argument
744 rsnScriptSetTimeZone(mContext, script, timeZone); in nScriptSetTimeZone()
841 byte[] script, int length); in rsnScriptCCreate() argument
[all …]
/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/
H A Dproject.properties7 # "ant.properties", and override values to adapt the script to your
/aosp14/frameworks/base/core/java/android/os/
H A DLocaleList.java282 final String script = locale.getScript(); in getLikelyScript() local
283 if (!script.isEmpty()) { in getLikelyScript()
284 return script; in getLikelyScript()
/aosp14/frameworks/base/services/core/java/com/android/server/connectivity/
H A DPacProxyService.java316 private void setCurrentProxyScript(String script) { in setCurrentProxyScript() argument
322 mProxyService.setPacFile(script); in setCurrentProxyScript()
323 mCurrentPac = script; in setCurrentProxyScript()

12