Searched defs:map (Results 51 - 75 of 1099) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_swtnl_draw.c47 const void *map; local
70 map = pipe_buffer_map(&svga->pipe,
75 draw_set_mapped_vertex_buffer(draw, i, map);
80 map = NULL;
82 map = pipe_buffer_map(&svga->pipe, svga->curr.ib.buffer,
86 (const ubyte *) map + svga->curr.ib.offset,
91 map = pipe_buffer_map(&svga->pipe,
95 assert(map);
98 map,
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
H A Dtr_texture.h76 void *map; member in struct:trace_transfer
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_span.c38 GLboolean map)
42 if (map)
47 framebuffer_map_unmap(struct gl_context *ctx, struct gl_framebuffer *fb, GLboolean map) argument
52 renderbuffer_map_unmap(ctx, fb->_ColorDrawBuffers[i], map);
54 renderbuffer_map_unmap(ctx, fb->_ColorReadBuffer, map);
57 renderbuffer_map_unmap(ctx, fb->Attachment[BUFFER_DEPTH].Renderbuffer, map);
61 span_map_unmap(struct gl_context *ctx, GLboolean map) argument
65 framebuffer_map_unmap(ctx, ctx->DrawBuffer, map);
68 framebuffer_map_unmap(ctx, ctx->ReadBuffer, map);
71 if (map)
37 renderbuffer_map_unmap(struct gl_context *ctx, struct gl_renderbuffer *rb, GLboolean map) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_span.c58 GLubyte *map; local
66 &map, &stride);
68 rrb->base.Map = map;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_span.c58 GLubyte *map; local
66 &map, &stride);
68 rrb->base.Map = map;
/external/clang/test/CXX/except/except.spec/
H A Dcanonical.cpp40 struct map struct in namespace:std
/external/clang/test/SemaCXX/
H A DPR11358.cpp30 void MapTest(hash_map<KeyType, ValueType> map) { argument
31 for (hash_map<KeyType, ValueType>::const_iterator it = map.begin(); // expected-error{{missing 'typename'}}
32 it != map.end(); it++) {
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DAddressMap.java27 /** underlying map. TODO: This might be too inefficient. */
28 private final HashMap<Integer,Integer> map; field in class:AddressMap
34 map = new HashMap<Integer,Integer>();
42 Integer value = map.get(keyAddress);
50 map.put(keyAddress, valueAddress);
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DBasicRegisterMapper.java51 public RegisterSpec map(RegisterSpec registerSpec) { method in class:BasicRegisterMapper
/external/droiddriver/src/com/google/android/droiddriver/instrumentation/
H A DInstrumentationContext.java36 private final Map<View, ViewElement> map = new MapMaker().weakKeys().weakValues().makeMap(); field in class:InstrumentationContext
55 ViewElement element = map.get(view);
58 map.put(view, element);
65 map.clear();
/external/droiddriver/src/com/google/android/droiddriver/uiautomation/
H A DUiAutomationContext.java34 private final Map<AccessibilityNodeInfo, UiAutomationElement> map = new MapMaker().weakKeys() field in class:UiAutomationContext
49 UiAutomationElement element = map.get(node);
52 map.put(node, element);
59 map.clear();
/external/dropbear/libtomcrypt/src/misc/base64/
H A Dbase64_decode.c21 static const unsigned char map[256] = { variable
66 c = map[in[x]&0xFF];
/external/eigen/demos/mix_eigen_and_c/
H A Dexample.c44 struct C_Map_MatrixXd *map; local
53 map = Map_MatrixXd_new(array, 5, 1);
54 Map_MatrixXd_add(map, map, map);
55 Map_MatrixXd_delete(map);
/external/freetype/include/freetype/
H A Dftautoh.h61 * glyph-to-script-map
66 * auto-hinted, the Unicode character map of the font gets examined, and
79 * structure. The `glyph-to-script-map' property returns a pointer to
100 * "glyph-to-script-map", &prop );
102 * // adjust `prop.map' as needed right here
116 * A list of constants used for the @glyph-to-script-map property to
239 * The data exchange structure for the @glyph-to-script-map property.
245 FT_Byte* map; member in struct:FT_Prop_GlyphToScriptMap_
258 * @glyph-to-script-map property). By default, this is
277 * creation of the glyph-to-script map whic
[all...]
/external/guava/guava/src/com/google/common/base/
H A DDefaults.java34 Map<Class<?>, Object> map = new HashMap<Class<?>, Object>();
35 put(map, boolean.class, false);
36 put(map, char.class, '\0');
37 put(map, byte.class, (byte) 0);
38 put(map, short.class, (short) 0);
39 put(map, int.class, 0);
40 put(map, long.class, 0L);
41 put(map, float.class, 0f);
42 put(map, double.class, 0d);
43 DEFAULTS = Collections.unmodifiableMap(map);
46 put(Map<Class<?>, Object> map, Class<T> type, T value) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DAbstractSortedSetMultimap.java39 * Creates a new multimap that uses the provided map.
41 * @param map place to store the mapping from each key to its corresponding
44 protected AbstractSortedSetMultimap(Map<K, Collection<V>> map) { argument
45 super(map);
96 * Returns a map view that associates each key with the corresponding values
97 * in the multimap. Changes to the returned map, such as element removal, will
98 * update the underlying multimap. The map does not support {@code setValue}
101 * <p>When passed a key that is present in the map, {@code
106 * <p>Though the method signature doesn't say so explicitly, the returned map
H A DBiMap.java27 * A bimap (or "bidirectional map") is a map that preserves the uniqueness of
74 * the iteration order of {@code map}.
77 * entry fails. Note that some map entries may have been added to the
81 void putAll(Map<? extends K, ? extends V> map); argument
H A DEnumBiMap.java57 * 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) { argument
68 EnumBiMap<K, V> bimap = create(inferKeyType(map), inferValueTyp
80 inferKeyType(Map<K, ?> map) argument
91 inferValueType(Map<?, V> map) argument
[all...]
H A DEnumHashBiMap.java56 * Constructs a new bimap with the same mappings as the specified map. If the
57 * specified map is an {@code EnumHashBiMap} or an {@link EnumBiMap}, the new
59 * map must contain at least one mapping, in order to determine the key type.
61 * @param map the map whose mappings are to be placed in this map
62 * @throws IllegalArgumentException if map is not an {@code EnumBiMap} or an
66 create(Map<K, ? extends V> map) { argument
67 EnumHashBiMap<K, V> bimap = create(EnumBiMap.inferKeyType(map));
68 bimap.putAll(map);
[all...]
H A DRegularImmutableMultiset.java36 private final transient ImmutableMap<E, Integer> map; field in class:RegularImmutableMultiset
39 RegularImmutableMultiset(ImmutableMap<E, Integer> map, int size) { argument
40 this.map = map;
46 return map.isPartialView();
51 Integer value = map.get(element);
62 return map.containsKey(element);
67 return map.keySet();
73 map.entrySet().iterator();
90 return map
[all...]
H A DWellBehavedMap.java43 * Wraps the given map into a {@code WellBehavedEntriesMap}, which
67 final Map<K, V> map; field in class:WellBehavedMap.KeyToEntryConverter
69 KeyToEntryConverter(Map<K, V> map) { argument
70 this.map = map;
79 return map.get(key);
82 return map.put(key, value);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DEnumBiMap.java53 * Returns a new bimap with the same mappings as the specified map. If the
54 * specified map is an {@code EnumBiMap}, the new bimap has the same types as
55 * the provided map. Otherwise, the specified map must contain at least one
58 * @param map the map whose mappings are to be placed in this map
59 * @throws IllegalArgumentException if map is not an {@code EnumBiMap}
63 create(Map<K, V> map) { argument
64 EnumBiMap<K, V> bimap = create(inferKeyType(map), inferValueTyp
76 inferKeyType(Map<K, ?> map) argument
87 inferValueType(Map<?, V> map) argument
[all...]
H A DEnumHashBiMap.java51 * Constructs a new bimap with the same mappings as the specified map. If the
52 * specified map is an {@code EnumHashBiMap} or an {@link EnumBiMap}, the new
54 * map must contain at least one mapping, in order to determine the key type.
56 * @param map the map whose mappings are to be placed in this map
57 * @throws IllegalArgumentException if map is not an {@code EnumBiMap} or an
61 create(Map<K, ? extends V> map) { argument
62 EnumHashBiMap<K, V> bimap = create(EnumBiMap.inferKeyType(map));
63 bimap.putAll(map);
[all...]
H A DHashBiMap.java57 * Constructs a new bimap containing initial values from {@code map}. The
59 * in the specified map.
62 Map<? extends K, ? extends V> map) {
63 HashBiMap<K, V> bimap = create(map.size());
64 bimap.putAll(map);
61 create( Map<? extends K, ? extends V> map) argument
/external/guava/guava-tests/test/com/google/common/collect/
H A DMutableClassToInstanceMapTest.java60 MutableClassToInstanceMap<Number> map
64 map.putInstance(entry.getKey(), entry.getValue());
66 return (Map) map;
82 private ClassToInstanceMap<Number> map; field in class:MutableClassToInstanceMapTest
85 map = MutableClassToInstanceMap.create();
98 map.put(Integer.class, new Integer(5));
100 map.put(Double.class, new Long(42));
104 // Won't compile: map.put(String.class, "x");
108 assertNull(map.putInstance(Integer.class, new Integer(5)));
110 Integer oldValue = map
[all...]

Completed in 612 milliseconds

1234567891011>>