/third_party/flutter/flutter/dev/integration_tests/android_views/android/app/src/main/java/io/flutter/integration/androidviews/ |
D | MotionEventCodec.java | 12 import java.util.HashMap; 20 public static HashMap<String, Object> encode(MotionEvent event) { in encode() 21 ArrayList<HashMap<String,Object>> pointerProperties = new ArrayList<>(); in encode() 22 ArrayList<HashMap<String,Object>> pointerCoords = new ArrayList<>(); in encode() 34 HashMap<String, Object> eventMap = new HashMap<>(); in encode() 53 private static HashMap<String, Object> encodePointerProperties(PointerProperties properties) { in encodePointerProperties() 54 HashMap<String, Object> map = new HashMap<>(); in encodePointerProperties() 60 private static HashMap<String, Object> encodePointerCoords(PointerCoords coords) { in encodePointerCoords() 61 HashMap<String, Object> map = new HashMap<>(); in encodePointerCoords() 75 public static MotionEvent decode(HashMap<String, Object> data) { in decode() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/units/ |
D | UnitPreferences.java | 7 import java.util.HashMap; 16 … private HashMap<String, HashMap<String, UnitPreference[]>> mapToUnitPreferences = new HashMap<>(); 83 … HashMap<String, UnitPreference[]> unitPreferencesMap = this.mapToUnitPreferences.get(key); in getUnitPreferences() 123 private HashMap<String, HashMap<String, UnitPreference[]>> mapToUnitPreferences; 126 this.mapToUnitPreferences = new HashMap<>(); in UnitPreferencesSink() 129 public HashMap<String, HashMap<String, UnitPreference[]>> getMapToUnitPreferences() { in getMapToUnitPreferences() 199 HashMap<String, UnitPreference[]> shouldInsert; in insertUnitPreferences() 203 shouldInsert = new HashMap<>(); in insertUnitPreferences()
|
D | ConversionRates.java | 10 import java.util.HashMap; 23 private HashMap<String, ConversionRateInfo> mapToConversionRate; 142 private HashMap<String, ConversionRateInfo> mapToConversionRate = new HashMap<>(); 185 public HashMap<String, ConversionRateInfo> getMapToConversionRate() { in getMapToConversionRate()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | PluralFormatTest.java | 11 import java.util.HashMap; 78 Map changes = new HashMap(); in TestOneFormLocales() 88 Map changes = new HashMap(); in TestSingular1Locales() 99 Map changes = new HashMap(); in TestSingular01Locales() 109 Map changes = new HashMap(); in TestZeroSingularLocales() 134 Map changes = new HashMap(); in TestSingularDual() 146 Map changes = new HashMap(); in TestSingularZeroSome() 161 Map changes = new HashMap(); in TestSpecial12_19() 181 Map changes = new HashMap(); in TestPaucalExcept11_14() 201 Map changes = new HashMap(); in TestPaucalRu() [all …]
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
D | PluralFormatTest.java | 12 import java.util.HashMap; 81 Map changes = new HashMap(); in TestOneFormLocales() 91 Map changes = new HashMap(); in TestSingular1Locales() 102 Map changes = new HashMap(); in TestSingular01Locales() 112 Map changes = new HashMap(); in TestZeroSingularLocales() 137 Map changes = new HashMap(); in TestSingularDual() 149 Map changes = new HashMap(); in TestSingularZeroSome() 164 Map changes = new HashMap(); in TestSpecial12_19() 184 Map changes = new HashMap(); in TestPaucalExcept11_14() 204 Map changes = new HashMap(); in TestPaucalRu() [all …]
|
/third_party/skia/third_party/externals/oboe/samples/hello-oboe/src/main/java/com/google/oboe/samples/hellooboe/ |
D | MainActivity.java | 37 import java.util.HashMap; 207 HashMap<String, String> selectedOption = (HashMap<String, String>) in getBufferSizeInBursts() 255 private List<HashMap<String, String>> createBufferSizeOptionsList() { in createBufferSizeOptionsList() 257 ArrayList<HashMap<String, String>> bufferSizeOptions = new ArrayList<>(); in createBufferSizeOptionsList() 260 HashMap<String, String> option = new HashMap<>(); in createBufferSizeOptionsList() 272 private List<HashMap<String, String>> createAudioApisOptionsList() { in createAudioApisOptionsList() 274 ArrayList<HashMap<String, String>> audioApiOptions = new ArrayList<>(); in createAudioApisOptionsList() 277 HashMap<String, String> option = new HashMap<>(); in createAudioApisOptionsList()
|
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/ |
D | AccessibilityChannel.java | 6 import java.util.HashMap; 41 final HashMap<String, Object> annotatedEvent = (HashMap<String, Object>) message; 44 final HashMap<String, Object> data = (HashMap<String, Object>) annotatedEvent.get("data");
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
D | TpiStream.cpp | 145 if (!HashMap.empty()) in buildHashMap() 150 HashMap.resize(Header->NumHashBuckets); in buildHashMap() 156 HashMap[HV].push_back(TIB++); in buildHashMap() 165 if (Bucket > HashMap.size()) in findRecordsByName() 169 for (TypeIndex TI : HashMap[Bucket]) { in findRecordsByName() 177 bool TpiStream::supportsTypeLookup() const { return !HashMap.empty(); } in supportsTypeLookup() 194 for (TypeIndex TI : HashMap[BucketIdx]) { in findFullDeclForForwardRef()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | TextFormatParseInfoTree.java | 36 import java.util.HashMap; 72 new HashMap<FieldDescriptor, List<TextFormatParseLocation>>(); in TextFormatParseInfoTree() 79 new HashMap<FieldDescriptor, List<TextFormatParseInfoTree>>(); in TextFormatParseInfoTree() 171 locationsFromField = new HashMap<FieldDescriptor, List<TextFormatParseLocation>>(); in Builder() 172 subtreeBuildersFromField = new HashMap<FieldDescriptor, List<Builder>>(); in Builder()
|
D | ExtensionRegistry.java | 37 import java.util.HashMap; 271 this.immutableExtensionsByName = new HashMap<String, ExtensionInfo>(); in ExtensionRegistry() 272 this.mutableExtensionsByName = new HashMap<String, ExtensionInfo>(); in ExtensionRegistry() 273 this.immutableExtensionsByNumber = new HashMap<DescriptorIntPair, ExtensionInfo>(); in ExtensionRegistry() 274 this.mutableExtensionsByNumber = new HashMap<DescriptorIntPair, ExtensionInfo>(); in ExtensionRegistry()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | ICUResourceBundleImpl.java | 12 import java.util.HashMap; 35 HashMap<String, String> aliasesVisited, in createBundleObject() 158 …protected UResourceBundle createBundleObject(int index, String resKey, HashMap<String, String> ali… in createBundleObject() 198 protected UResourceBundle handleGet(String indexStr, HashMap<String, String> aliasesVisited, in handleGet() 204 protected UResourceBundle handleGet(int index, HashMap<String, String> aliasesVisited, in handleGet() 232 protected UResourceBundle handleGet(String resKey, HashMap<String, String> aliasesVisited, in handleGet() 241 protected UResourceBundle handleGet(int index, HashMap<String, String> aliasesVisited, in handleGet()
|
D | ValidIdentifiers.java | 13 import java.util.HashMap; 58 HashMap<String,Set<String>> _subdivisionData = new HashMap<String,Set<String>>(); in ValiditySet() 75 HashMap<String,Set<String>> _subdivisionData2 = new HashMap<String,Set<String>>(); in ValiditySet()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | ICUResourceBundleImpl.java | 13 import java.util.HashMap; 36 HashMap<String, String> aliasesVisited, in createBundleObject() 159 …protected UResourceBundle createBundleObject(int index, String resKey, HashMap<String, String> ali… in createBundleObject() 199 protected UResourceBundle handleGet(String indexStr, HashMap<String, String> aliasesVisited, in handleGet() 205 protected UResourceBundle handleGet(int index, HashMap<String, String> aliasesVisited, in handleGet() 233 protected UResourceBundle handleGet(String resKey, HashMap<String, String> aliasesVisited, in handleGet() 242 protected UResourceBundle handleGet(int index, HashMap<String, String> aliasesVisited, in handleGet()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/testing/ |
D | FakeTransformer.java | 5 import java.util.HashMap; 15 private final Map<CldrValue, ImmutableList<Result>> resultMap = new HashMap<>(); 16 private final Map<RbPath, ImmutableList<Result>> fallbackMap = new HashMap<>();
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/ |
D | InternalLocaleBuilder.java | 14 import java.util.HashMap; 33 private HashMap<CaseInsensitiveChar, String> _extensions; 35 private HashMap<CaseInsensitiveString, String> _ukeywords; 140 _ukeywords = new HashMap<CaseInsensitiveString, String>(4); in setUnicodeLocaleKeyword() 193 _extensions = new HashMap<CaseInsensitiveChar, String>(4); in setExtension() 300 _extensions = new HashMap<CaseInsensitiveChar, String>(4); in setExtensions() 310 _extensions = new HashMap<CaseInsensitiveChar, String>(1); in setExtensions() 426 _ukeywords = new HashMap<CaseInsensitiveString, String>(4); in setLocale() 432 _extensions = new HashMap<CaseInsensitiveChar, String>(4); in setLocale() 599 _ukeywords = new HashMap<CaseInsensitiveString, String>(4); in setUnicodeLocaleExtension() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
D | InternalLocaleBuilder.java | 13 import java.util.HashMap; 29 private HashMap<CaseInsensitiveChar, String> _extensions; 31 private HashMap<CaseInsensitiveString, String> _ukeywords; 136 _ukeywords = new HashMap<CaseInsensitiveString, String>(4); in setUnicodeLocaleKeyword() 189 _extensions = new HashMap<CaseInsensitiveChar, String>(4); in setExtension() 296 _extensions = new HashMap<CaseInsensitiveChar, String>(4); in setExtensions() 306 _extensions = new HashMap<CaseInsensitiveChar, String>(1); in setExtensions() 422 _ukeywords = new HashMap<CaseInsensitiveString, String>(4); in setLocale() 428 _extensions = new HashMap<CaseInsensitiveChar, String>(4); in setLocale() 595 _ukeywords = new HashMap<CaseInsensitiveString, String>(4); in setUnicodeLocaleExtension() [all …]
|
/third_party/mindspore/mindspore/lite/java/java/fl_client/src/main/java/com/mindspore/flclient/model/ |
D | SessionUtil.java | 30 import java.util.HashMap; 53 return new HashMap<>(); in convertTensorToFeatures() 55 Map<String, float[]> features = new HashMap<>(tensors.size()); in convertTensorToFeatures() 59 return new HashMap<>(); in convertTensorToFeatures()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
D | IDNAConformanceTest.java | 17 import java.util.HashMap; 56 HashMap tempHash = (HashMap) inputData.get(element); in TestConformance() 256 HashMap hashItem = new HashMap(); in getInputData() 297 hashItem = new HashMap(); in getInputData()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/ |
D | IDNAConformanceTest.java | 18 import java.util.HashMap; 59 HashMap tempHash = (HashMap) inputData.get(element); in TestConformance() 259 HashMap hashItem = new HashMap(); in getInputData() 300 hashItem = new HashMap(); in getInputData()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
D | LocaleAliasCollationTest.java | 13 import java.util.HashMap; 45 private HashMap availableMap = new HashMap();
|
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/util/ |
D | LocaleAliasCollationTest.java | 12 import java.util.HashMap; 42 private HashMap availableMap = new HashMap();
|
/third_party/flutter/flutter/dev/integration_tests/android_semantics_testing/android/app/src/main/java/com/yourcompany/platforminteraction/ |
D | MainActivity.java | 7 import java.util.HashMap; 72 Map<String, Object> result = new HashMap<>(); in convertSemantics() 73 Map<String, Object> flags = new HashMap<>(); in convertSemantics() 74 Map<String, Object> rect = new HashMap<>(); in convertSemantics()
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/ |
D | HeaderTable.java | 7 import java.util.HashMap; 33 private Map<Integer, Integer> map = new HashMap<Integer, Integer>(); 96 map = new HashMap<Integer, Integer>(); in subDataSet()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/ |
D | HeaderTable.java | 7 import java.util.HashMap; 33 private Map<Integer, Integer> map = new HashMap<Integer, Integer>(); 96 map = new HashMap<Integer, Integer>(); in subDataSet()
|
/third_party/icu/icu4j/samples/src/com/ibm/icu/samples/iuc/ |
D | Sample40_PopMsg.java | 11 import java.util.HashMap; 49 Map<String, Object> msgargs = new HashMap<String, Object>(); in main() 57 Map<String, Object> infoArgs = new HashMap<String, Object>(); in main()
|