HomeSort by relevance Sort by last modified time
    Searched refs:map (Results 176 - 200 of 3027) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium/chrome/browser/chromeos/
name_value_pairs_parser.h 9 #include <map>
21 typedef std::map<std::string, std::string> NameValueMap;
24 explicit NameValuePairsParser(NameValueMap* map);
network_login_observer.h 9 #include <map>
28 typedef std::map<std::string, bool> NetworkFailureMap;
  /external/chromium/chrome/browser/extensions/
extension_devtools_manager.h 9 #include <map>
53 // Map of tab IDs to the ExtensionDevToolsBridge connected to the tab
54 std::map<int, linked_ptr<ExtensionDevToolsBridge> > tab_id_to_bridge_;
56 // Map of tab IDs to the set of render_process_ids that have registered
58 std::map<int, std::set<int> > tab_id_to_render_process_ids_;
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
RegisterMapper.java 41 public abstract RegisterSpec map(RegisterSpec registerSpec); method in class:RegisterMapper
48 public final RegisterSpecList map(RegisterSpecList sources) { method in class:RegisterMapper
53 newSources.set(i, map(sources.get(i)));
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H2Map_TypeForwardOnlyTest.java 18 H2Map_TypeForwardOnly map; field in class:H2Map_TypeForwardOnlyTest
21 map = new H2Map_TypeForwardOnly();
28 assertThat(map.getResultSetType(),equalTo(ResultSet.TYPE_FORWARD_ONLY));
  /frameworks/base/core/jni/
android_view_KeyCharacterMap.cpp 48 NativeKeyCharacterMap(int32_t deviceId, const sp<KeyCharacterMap>& map) :
49 mDeviceId(deviceId), mMap(map) {
71 NativeKeyCharacterMap* map = new NativeKeyCharacterMap(deviceId, local
73 if (!map) {
78 reinterpret_cast<jint>(map));
97 NativeKeyCharacterMap* map = new NativeKeyCharacterMap(deviceId, kcm); local
98 return reinterpret_cast<jint>(map);
102 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local
105 parcel->writeInt32(map->getDeviceId());
106 map->getMap()->writeToParcel(parcel)
111 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local
117 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local
123 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local
137 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local
143 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local
158 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local
163 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local
169 NativeKeyCharacterMap* map = reinterpret_cast<NativeKeyCharacterMap*>(ptr); local
    [all...]
android_view_KeyCharacterMap.h 28 const sp<KeyCharacterMap>& map);
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/
TagsTests.java 32 HashMap<String, Boolean> map = new HashMap<String, Boolean>(); local
35 assertTrue(tag, !map.containsKey(tag));
36 map.put(tag, true);
  /packages/apps/Exchange/tests/src/com/android/exchange/
TagsTests.java 32 HashMap<String, Boolean> map = new HashMap<String, Boolean>(); local
35 assertTrue(tag, !map.containsKey(tag));
36 map.put(tag, true);
  /packages/inputmethods/LatinIME/native/jni/src/
bigram_dictionary.h 20 #include <map>
33 std::map<int, int> *map, uint8_t *filter) const;
  /external/eigen/test/
mapstride.cpp 29 Map<VectorType, Alignment, InnerStride<3> > map(array, size);
30 map = v;
34 VERIFY(map[i] == v[i]);
39 Map<VectorType, Unaligned, InnerStride<Dynamic> > map(array, size, InnerStride<Dynamic>(2));
40 map = v;
44 VERIFY(map[i] == v[i]);
69 Map<MatrixType, Alignment, OuterStride<Dynamic> > map(array, rows, cols, OuterStride<Dynamic>(m.innerSize()+1))
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapsTransformValuesUnmodifiableIteratorTest.java 26 import java.util.Map;
32 * Tests for {@link Maps#transformValues} when the backing map's views
47 final Map<K, V> delegate;
49 UnmodifiableIteratorMap(Map<K, V> delegate) {
53 @Override protected Map<K, V> delegate() {
109 @Override protected Map<String, String> makeEmptyMap() {
110 Map<String, Integer> underlying = Maps.newHashMap();
115 @Override protected Map<String, String> makePopulatedMap() {
116 Map<String, Integer> underlying = Maps.newHashMap();
135 private void assertMapsEqual(Map<?, ?> expected, Map<?, ?> map)
    [all...]
  /external/chromium/base/
file_descriptor_shuffle.h 70 bool PerformInjectiveMultimap(const InjectiveMultimap& map,
73 bool PerformInjectiveMultimapDestructive(InjectiveMultimap* map,
76 // This function will not call malloc but will mutate |map|
77 static inline bool ShuffleFileDescriptors(InjectiveMultimap* map) {
79 return PerformInjectiveMultimapDestructive(map, &delegate);
  /external/guava/guava/src/com/google/common/collect/
EnumBiMap.java 28 import java.util.Map;
57 * Returns a new bimap with the same mappings as the specified map. If the
58 * specified map is an {@code EnumBiMap}, the new bimap has the same types as
59 * the provided map. Otherwise, the specified map must contain at least one
62 * @param map the map whose mappings are to be placed in this map
63 * @throws IllegalArgumentException if map is not an {@code EnumBiMap}
67 create(Map<K, V> map)
    [all...]
  /external/libvorbis/lib/
lsp.h 24 extern void vorbis_lsp_to_curve(float *curve,int *map,int n,int ln,
  /frameworks/native/opengl/tools/glgen/src/
ParameterChecker.java 22 HashMap<String,String[]> map = new HashMap<String,String[]>(); field in class:ParameterChecker
41 map.put(tokens[0], tokens);
46 String[] checks = map.get(functionName);
52 checks = map.get(functionName);
  /libcore/luni/src/main/java/java/sql/
Array.java 20 import java.util.Map;
63 * @param map
64 * the map defining the correspondence between SQL type names
70 public Object getArray(long index, int count, Map<String, Class<?>> map)
76 * @param map
77 * the map defining the correspondence between SQL type names
83 public Object getArray(Map<String, Class<?>> map) throws SQLException;
141 * @param map
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockNamedNodeMap.java 28 /** map for access by namespace/name */
42 // get the map for the namespace
43 HashMap<String, Node> map = mNodeMap.get(namespace); local
44 if (map == null) {
45 map = new HashMap<String, Node>();
46 mNodeMap.put(namespace, map);
50 map.put(localName, node);
65 HashMap<String, Node> map = mNodeMap.get(""); // no namespace local
66 if (map != null) {
67 return map.get(name)
79 HashMap<String, Node> map = mNodeMap.get(namespaceURI); local
    [all...]
  /external/chromium/chrome/browser/automation/
automation_tab_tracker.h 9 #include <map>
34 std::map<NavigationController*, base::Time> last_navigation_times_;
  /external/chromium/chrome/browser/chromeos/notifications/
balloon_view_host.h 11 #include <map>
41 // A map of message name -> message handling callback.
42 typedef std::map<std::string, MessageCallback*> MessageCallbackMap;
  /external/chromium/chrome/browser/nacl_host/
nacl_broker_service_win.h 9 #include <map>
38 typedef std::map<std::wstring, NaClProcessHost*>
  /external/chromium/chrome/browser/net/
chrome_cookie_policy.h 9 #include <map>
23 explicit ChromeCookiePolicy(HostContentSettingsMap* map);
  /external/chromium/chrome/browser/
omnibox_search_hint.h 9 #include <map>
54 // A map containing the URLs of the search engine for which we want to
56 std::map<std::string, int> search_engine_urls_;
  /external/chromium/chrome/browser/sync/syncable/
model_type_payload_map.h 11 #include <map>
23 typedef std::map<ModelType, std::string> ModelTypePayloadMap;
  /external/webkit/Tools/TestWebKitAPI/
TestsController.h 29 #include <map>
56 std::map<std::string, CreateTestFunction> m_createTestFunctions;

Completed in 855 milliseconds

1 2 3 4 5 6 78 91011>>