Home
last modified time | relevance | path

Searched refs:hasKey (Results 1 – 21 of 21) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/winrt/
DInspectableNativeWindow.cpp133 boolean *hasKey, in GetOptionalPropertyValue() argument
136 if (!propertyMap || !hasKey) in GetOptionalPropertyValue()
142 *hasKey = false; in GetOptionalPropertyValue()
144 HRESULT result = propertyMap->HasKey(HStringReference(propertyName).Get(), hasKey); in GetOptionalPropertyValue()
145 if (SUCCEEDED(result) && !(*hasKey)) in GetOptionalPropertyValue()
182 boolean hasKey = false; in GetOptionalSizePropertyValue() local
193 HRESULT result = GetOptionalPropertyValue(propertyMap, propertyName, &hasKey, propertyValue); in GetOptionalSizePropertyValue()
194 if (SUCCEEDED(result) && hasKey) in GetOptionalSizePropertyValue()
248 boolean hasKey = false; in GetOptionalSinglePropertyValue() local
259 HRESULT result = GetOptionalPropertyValue(propertyMap, propertyName, &hasKey, propertyValue); in GetOptionalSinglePropertyValue()
[all …]
DInspectableNativeWindow.h134 boolean *hasKey,
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/regex/
DRegexTransformerTest.java101 assertThat(results.get(0)).hasKey("/numberingSystems/foo/algorithmic:int"); in testMultipleResults()
105 assertThat(results.get(1)).hasKey("/numberingSystems/foo/desc"); in testMultipleResults()
109 assertThat(results.get(2)).hasKey("/numberingSystems/foo/radix:int"); in testMultipleResults()
131 assertThat(results.get(0)).hasKey("/genderList/xx"); in testImplicitArgumentSplitting()
133 assertThat(results.get(1)).hasKey("/genderList/yy"); in testImplicitArgumentSplitting()
135 assertThat(results.get(2)).hasKey("/genderList/zz"); in testImplicitArgumentSplitting()
150 assertThat(results.get(0)).hasKey("/mapTimezones/\"not split\"/XX"); in testImplicitArgumentSplitting()
152 assertThat(results.get(1)).hasKey("/mapTimezones/\"not split\"/YY"); in testImplicitArgumentSplitting()
154 assertThat(results.get(2)).hasKey("/mapTimezones/\"not split\"/ZZ"); in testImplicitArgumentSplitting()
294 assertThat(fallbacks.get(0)).hasKey(rbPath); in testFallbacks_simple()
[all …]
/third_party/cups-filters/filter/pdftopdf/
Dqpdf_cm.cc44 if (!catalog.hasKey("/OutputIntents")) { in hasOutputIntent()
79 if (!catalog.hasKey("/OutputIntents")) { in addOutputIntent()
112 if (!it->hasKey("/Resources")) { in addDefaultRGB()
117 if (!rdict.hasKey("/ColorSpace")) { in addDefaultRGB()
122 if (!cdict.hasKey("/DefaultRGB")) { in addDefaultRGB()
Dqpdf_tools.cc11 if (page.hasKey("/CropBox")) { in getCropBox()
20 if (page.hasKey("/BleedBox")) { in getBleedBox()
29 if (page.hasKey("/TrimBox")) { in getTrimBox()
38 if (page.hasKey("/ArtBox")) { in getArtBox()
Dqpdf_xobject.cc98 if (page.hasKey("/UserUnit")) { in makeXObject()
121 if (page.hasKey("/Group")) { in makeXObject()
Dqpdf_pdftopdf.cc24 if (!page.hasKey("/Rotate")) { in getRotate()
47 if (!page.hasKey("/UserUnit")) { in getUserUnit()
Dqpdf_pdftopdf_processor.cc767 if (!root.hasKey("/AcroForm")) { in hasAcroForm()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DMapEntry.java247 private boolean hasKey; field in MapEntry.Builder
254 private Builder(Metadata<K, V> metadata, K key, V value, boolean hasKey, boolean hasValue) { in Builder() argument
258 this.hasKey = hasKey; in Builder()
272 this.hasKey = true; in setKey()
278 this.hasKey = false; in clearKey()
410 return field.getNumber() == 1 ? hasKey : hasValue; in hasField()
442 return new Builder<>(metadata, key, value, hasKey, hasValue); in clone()
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/testing/
DResultSubject.java46 public final void hasKey(RbPath path) { in hasKey() method in ResultSubject
50 public final void hasKey(String path) { in hasKey() method in ResultSubject
51 hasKey(RbPath.parse(path)); in hasKey()
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_util_HashMap.js35 this.hasKey = function (...args) { method
Dohos_util_TreeMap.js33 this.hasKey = function (...args) { method
Dohos_util_LightWeightMap.js33 this.hasKey = function (...args) { method
/third_party/typescript/tests/cases/conformance/expressions/typeGuards/
DtypeGuardFunctionErrors.ts153 declare function hasKey<T extends Keys>(x: KeySet<T>): x is KeySet<T|'d'>; function
/third_party/typescript/tests/baselines/reference/
DtypeGuardFunctionErrors.types353 declare function hasKey<T extends Keys>(x: KeySet<T>): x is KeySet<T|'d'>;
354 >hasKey : <T extends Keys>(x: KeySet<T>) => x is KeySet<T | "d">
DtypeGuardFunctionErrors.symbols381 declare function hasKey<T extends Keys>(x: KeySet<T>): x is KeySet<T|'d'>;
382 >hasKey : Symbol(hasKey, Decl(typeGuardFunctionErrors.ts, 148, 48))
DtypeGuardFunctionErrors.js153 declare function hasKey<T extends Keys>(x: KeySet<T>): x is KeySet<T|'d'>;
DtypeGuardFunctionErrors.errors.txt323 declare function hasKey<T extends Keys>(x: KeySet<T>): x is KeySet<T|'d'>;
/third_party/cups-filters/filter/
Dpdf.cxx228 if (!object.hasKey(key) && inheritable){ in dict_lookup_rect()
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
DRubyMap.java310 public IRubyObject hasKey(ThreadContext context, IRubyObject key) { in hasKey() method in RubyMap
/third_party/skia/src/gpu/
DGrResourceCache.cpp542 bool hasKey = resource->resourcePriv().getScratchKey().isValid() || hasUniqueKey; in notifyARefCntReachedZero() local
543 if (!this->overBudget() && hasKey) { in notifyARefCntReachedZero()