HomeSort by relevance Sort by last modified time
    Searched refs:Map (Results 101 - 125 of 2018) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
epsnormalize.h 30 #include "fst/lib/map.h"
54 Map(ifst, &gfst, ToGallicMapper<Arc, STRING_RIGHT_RESTRICT>());
56 Map(InvertFst<Arc>(ifst), &gfst,
63 Map(fwfst, ofst, FromGallicMapper<Arc, STRING_RIGHT_RESTRICT>());
  /libcore/luni/src/main/java/java/util/
Map.java 22 * A {@code Map} is a data structure consisting of a set of keys and values
24 * used as keys is declared when the {@code Map} is declared, as is the
27 * A {@code Map} provides helper methods to iterate through all of the
31 public interface Map<K,V> {
34 * {@code Map.Entry} is a key/value mapping contained in a {@code Map}.
38 * Compares the specified object to this {@code Map.Entry} and returns if they
39 * are equal. To be equal, the object must be an instance of {@code Map.Entry} and have the
45 * {@code Map.Entry}, {@code false} otherwise.
85 * Removes all elements from this {@code Map}, leaving it empty
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_MapTest2.java 20 import java.util.Map;
25 Map<String, String> map; field in class:Support_MapTest2
27 public Support_MapTest2(Map<String, String> m) {
29 map = m;
30 if (!map.isEmpty()) {
31 fail("Map must be empty");
38 map.put("one", "1");
39 assertEquals("size should be one", 1, map.size());
40 map.clear()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutContribution.java 21 import java.util.Map;
28 String comment, Map arguments, int flags) throws IllegalArgumentException {
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
ChangeViewContribution.java 21 import java.util.Map;
28 String comment, Map arguments, int flags) throws IllegalArgumentException {
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
ExtractIncludeContribution.java 21 import java.util.Map;
28 String comment, Map arguments, int flags) throws IllegalArgumentException {
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
ExtractStyleContribution.java 21 import java.util.Map;
28 String comment, Map arguments, int flags) throws IllegalArgumentException {
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
UnwrapContribution.java 21 import java.util.Map;
28 String comment, Map arguments, int flags) throws IllegalArgumentException {
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
WrapInContribution.java 21 import java.util.Map;
28 String comment, Map arguments, int flags) throws IllegalArgumentException {
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringContribution.java 22 import java.util.Map;
30 * @see org.eclipse.ltk.core.refactoring.RefactoringContribution#createDescriptor(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.util.Map, int)
39 Map arguments,
47 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
  /sdk/sdk_common/src/com/android/ide/common/resources/
MultiResourceFile.java 32 import java.util.Map;
48 private final Map<ResourceType, Map<String, ResourceValue>> mResourceItems =
49 new EnumMap<ResourceType, Map<String, ResourceValue>>(ResourceType.class);
82 Map<ResourceType, Map<String, ResourceValue>> oldResourceItems
83 = new EnumMap<ResourceType, Map<String, ResourceValue>>(mResourceItems);
134 Map<String, ResourceValue> list = mResourceItems.get(type);
145 Map<String, ResourceValue> list = mResourceItems.get(type);
186 Map<String, ResourceValue> list = mResourceItems.get(resType)
208 Map<String, ResourceValue> map = mResourceItems.get(type); local
    [all...]
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/ui/handlers/
ChangeZoomHandler.java 18 import java.util.Map;
27 * @see com.motorola.studio.android.emulator.ui.handlers.AbstractZoomHandler#getZoomFactor(java.util.Map)
31 protected double getZoomFactor(Map parameter)
56 protected boolean testZoomFactor(AndroidViewData viewData, Map parameters, double zoomFactor)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
DnsSdTxtRecordListenerTest.java 22 import java.util.Map;
64 Map<String, String> txtRecordMap, WifiP2pDevice srcDevice) {
81 Map<String, String> ippTxtRecord = new HashMap<String, String>();
82 Map<String, String> afpTxtRecord = new HashMap<String, String>();
98 private Map<String, String> mTxtRecordMap;
103 * @param txtRecordMap txt record map.
105 Argument(String fullDomainName, Map<String, String> txtRecordMap) {
130 private boolean equals(Map<String, String> s1, Map<String, String> s2) {
  /external/apache-http/src/org/apache/http/protocol/
HttpRequestHandlerRegistry.java 34 import java.util.Map;
37 * Maintains a map of HTTP request handlers keyed by a request URI pattern.
67 public void setHandlers(final Map map) {
68 matcher.setHandlers(map);
  /external/guava/guava/src/com/google/common/collect/
HashBasedTable.java 27 import java.util.Map;
40 * the data is stored in a {@code Map<R, Map<C, V>>}. A method call like {@code
56 implements Supplier<Map<C, V>>, Serializable {
62 public Map<C, V> get() {
73 new HashMap<R, Map<C, V>>(), new Factory<C, V>(0));
77 * Creates an empty {@code HashBasedTable} with the specified map sizes.
88 Map<R, Map<C, V>> backingMap =
109 HashBasedTable(Map<R, Map<C, V>> backingMap, Factory<C, V> factory)
    [all...]
RowSortedTable.java 22 import java.util.Map;
32 * {@link Map} specified by the {@link Table} interface.
51 * <p>This method returns a {@link SortedMap}, instead of the {@code Map}
54 @Override SortedMap<R, Map<C, V>> rowMap();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MapTestSuiteBuilder.java 43 import java.util.Map;
44 import java.util.Map.Entry;
49 * a Map implementation.
56 TestMapGenerator<K, V>, Map<K, V>, Map.Entry<K, V>> {
83 ? extends OneSizeTestContainerGenerator<Map<K, V>, Map.Entry<K, V>>>
87 // reflected in the underlying map.
180 implements TestSetGenerator<Map.Entry<K, V>> {
181 private final OneSizeTestContainerGenerator<Map<K, V>, Map.Entry<K, V>
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleMediaTypeBox.java 4 import java.util.Map;
10 private static Map<String, String> mediaTypes = new HashMap<String, String>();
  /external/oauth/core/src/main/java/net/oauth/http/
HttpResponseMessage.java 21 import java.util.Map;
36 public void dump(Map<String, Object> into) throws IOException {
  /frameworks/base/tools/layoutlib/bridge/src/android/os/
Build_Delegate.java 23 import java.util.Map;
32 * around to map int to instance of the delegate.
39 Map<String, String> properties = Bridge.getPlatformProperties();
  /libcore/luni/src/main/java/java/net/
ResponseCache.java 20 import java.util.Map;
56 * a map of request headers.
65 Map<String, List<String>> requestHeaders) throws IOException;
  /libcore/luni/src/test/java/libcore/java/util/
OldMapEntryTest.java 24 import java.util.Map;
28 Map.Entry me = null;
75 me = (Map.Entry)i.next();
89 Map.Entry me1 = (Map.Entry)i.next();
97 Map.Entry me1 = (Map.Entry)i.next();
108 me = (Map.Entry)i.next();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ShortcutRepository.java 22 import java.util.Map;
91 * The result is a map of corpus name to score. A higher score means that the corpus
97 void getCorpusScores(Consumer<Map<String,Integer>> consumer);
  /sdk/chimpchat/src/com/android/chimpchat/core/
TouchPressType.java 19 import java.util.Map;
28 private static final Map<String,TouchPressType> identifierToEnum =
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/
AndroidTypeMoveChange.java 23 import java.util.Map;
41 IDocument document, Map<String, String> elements, String newName, String oldName) {

Completed in 839 milliseconds

1 2 3 45 6 7 8 91011>>