Home
last modified time | relevance | path

Searched refs:keyValue (Results 1 – 18 of 18) sorted by relevance

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DBreakIteratorFactory.java134 String keyValue = locale.getKeywordValue("lb"); in createBreakInstance() local
135 …if ( keyValue != null && (keyValue.equals("strict") || keyValue.equals("normal") || keyValue.equal… in createBreakInstance()
136 typeKeyExt = "_" + keyValue; in createBreakInstance()
140 keyValue = locale.getKeywordValue("lw"); in createBreakInstance()
141 if (keyValue != null && keyValue.equals("phrase")) { in createBreakInstance()
142 typeKeyExt += "_" + keyValue; in createBreakInstance()
/third_party/protobuf/js/
Dmap.js246 var keyValue = key.toString();
247 var hadKey = this.map_.hasOwnProperty(keyValue);
248 delete this.map_[keyValue];
387 var keyValue = key.toString();
388 var entry = this.map_[keyValue];
403 var keyValue = key.toString();
404 return (keyValue in this.map_);
/third_party/node/deps/undici/src/lib/websocket/
Dconnection.js69 const keyValue = randomBytes(16).toString('base64')
73 request.headersList.append('sec-websocket-key', keyValue)
151 const digest = createHash('sha1').update(keyValue + uid).digest('base64')
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DAsyncTask.cpp49 for (auto& keyValue : allPendingTasks) { in WaitAllPendingTasks() local
50 keyValue.second->waitableEvent->Wait(); in WaitAllPendingTasks()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DDataDrivenTestHelper.java141 List<String> keyValue = EQUAL_SPLIT.splitToList(line); in load() local
142 addLine(keyValue, comment); in load()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DDataDrivenTestHelper.java140 List<String> keyValue = EQUAL_SPLIT.splitToList(line); in load() local
141 addLine(keyValue, comment); in load()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DRelation.java223 for (Entry<K, Set<V>> keyValue : data.entrySet()) { in values()
224 result.addAll(keyValue.getValue()); in values()
DLocaleDisplayNamesImpl.java408 String keyValue = SimpleFormatterImpl.formatCompiledPattern( in localeDisplayNameInternal() local
410 appendWithSep(keyValue, buf); in localeDisplayNameInternal()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DRelation.java221 for (Entry<K, Set<V>> keyValue : data.entrySet()) { in values()
222 result.addAll(keyValue.getValue()); in values()
DLocaleDisplayNamesImpl.java404 String keyValue = SimpleFormatterImpl.formatCompiledPattern( in localeDisplayNameInternal() local
406 appendWithSep(keyValue, buf); in localeDisplayNameInternal()
/third_party/vk-gl-cts/scripts/android/
Dbuild_apk.py116 keyValue = list(map(lambda x: x.strip(), line.split("=")))
117 if keyValue[0] == "Pkg.Revision":
118 versionParts = keyValue[1].split(".")
/third_party/skia/third_party/externals/icu/source/data/locales/
Dru.txt2181 keyValue:intvector{
Den.txt1315 keyValue:intvector{
/third_party/icu/icu4c/source/data/locales/
Dru.txt2220 keyValue:intvector{
Den.txt1315 keyValue:intvector{
/third_party/node/deps/undici/
Dundici.js10564 const keyValue = crypto.randomBytes(16).toString("base64");
10565 request.headersList.append("sec-websocket-key", keyValue);
10593 const digest = crypto.createHash("sha1").update(keyValue + uid).digest("base64");
/third_party/icu/icu4c/source/test/testdata/
DstructLocale.txt4170 keyValue:intvector{
/third_party/chromium/patch/
D0003-ohos-1115.patch67321 +bool NWebInputDelegate::KeyValueConvert(const std::string keyValue,
67323 + auto itKeyValue = keyValueConverter.find(keyValue);
67331 +int NWebInputDelegate::CefConverter(const std::string keyValue, int input) {
67333 + if (KeyValueConvert(keyValue, itConverter) == false) {
67343 +int NWebInputDelegate::OhosConverter(const std::string keyValue, int input) {
67345 + if (KeyValueConvert(keyValue, itConverter) == false) {
67439 + static int CefConverter(const std::string keyValue, int input);
67440 + static int OhosConverter(const std::string keyValue, int input);
67457 + static bool KeyValueConvert(const std::string keyValue,