HomeSort by relevance Sort by last modified time
    Searched refs:Map (Results 1 - 25 of 1621) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/doc/snippets/
Map_placement_new.cpp 2 Map<RowVectorXi> v(data,4);
4 new (&v) Map<RowVectorXi>(data+4,5);
Tutorial_Map_rowmajor.cpp 3 cout << "Column-major:\n" << Map<Matrix<int,2,4> >(array) << endl;
4 cout << "Row-major:\n" << Map<Matrix<int,2,4,RowMajor> >(array) << endl;
6 Map<Matrix<int,2,4>, Unaligned, Stride<1,4> >(array) << endl;
Map_inner_stride.cpp 3 cout << Map<VectorXi, 0, InnerStride<2> >
Map_outer_stride.cpp 3 cout << Map<MatrixXi, 0, OuterStride<> >(array, 3, 3, OuterStride<>(4)) << endl;
Map_simple.cpp 3 cout << Map<Matrix3i>(array) << endl;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
Traceable.java 32 import java.util.Map;
49 * @param labelNames map of label instances to their names.
51 void trace(StringBuffer buf, Map labelNames);
ASMifiable.java 32 import java.util.Map;
50 * @param labelNames map of label instances to their names.
52 void asmify(StringBuffer buf, String varName, Map labelNames);
  /external/nist-sip/java/gov/nist/core/
MultiMap.java 19 import java.util.Map;
22 * This is simply a Map with slightly different semantics.
33 public interface MultiMap extends Map {
  /development/tools/mkstubs/tests/data/
TestTemplateClass.java 24 import java.util.Map;
32 private final Map<T, U> mMap_T_U = null;
34 public Map<ArrayList<T>, Map<String, ArrayList<U>>> mMap_T_S_U = null;
39 public Map<T, U> getMap_T_U() {
43 public Map<ArrayList<T>, Map<String, ArrayList<U>>> getMap_T_S_U() {
53 public <X extends T, Y> void getMap(List<T> list, Map<T, U> tu, Map<X, Set<? super Y>> xy) {
  /external/chromium_org/tools/android/forwarder2/
util.h 12 // Safely deletes a ref-counted value in a provided map by unlinking the object
13 // from the map before deleting it in case its destructor would access the map.
16 // in the map.
17 template <typename Map, typename K>
18 bool DeleteRefCountedValueInMap(const K& key, Map* map) {
19 const typename Map::iterator it = map->find(key);
20 if (it == map->end()
    [all...]
  /art/test/031-class-attributes/src/
FancyClass.java 18 import java.util.Map;
20 public class FancyClass<K,V> extends HashMap<K,V> implements Map<K,V> {
  /external/clang/lib/StaticAnalyzer/Core/
FunctionSummary.cpp 20 for (MapTy::iterator I = Map.begin(), E = Map.end(); I != E; ++I) {
28 for (MapTy::iterator I = Map.begin(), E = Map.end(); I != E; ++I) {
  /external/nanohttpd/webserver/src/main/java/fi/iki/elonen/
InternalRewrite.java 3 import java.util.Map;
13 private final Map<String, String> headers;
15 public InternalRewrite(Map<String, String> headers, String uri) {
25 public Map<String, String> getHeaders() {
WebServerPlugin.java 4 import java.util.Map;
14 void initialize(Map<String, String> commandLineOptions);
18 NanoHTTPD.Response serveFile(String uri, Map<String, String> headers, IHTTPSession session, File file, String mimeType);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestMapGenerator.java 19 import java.util.Map;
29 extends TestContainerGenerator<Map<K, V>, Map.Entry<K, V>> {
TestMapEntrySetGenerator.java 20 import java.util.Map;
24 * Creates map entries using sample keys and sample values.
31 implements TestSetGenerator<Map.Entry<K, V>> {
42 public SampleElements<Map.Entry<K, V>> samples() {
47 public Set<Map.Entry<K, V>> create(Object... elements) {
48 Map.Entry<K, V>[] entries = createArray(elements.length);
53 public abstract Set<Map.Entry<K, V>> createFromEntries(
54 Map.Entry<K, V>[] entries);
58 public Map.Entry<K, V>[] createArray(int length) {
59 return new Map.Entry[length]
    [all...]
  /external/llvm/unittests/ADT/
DenseMapTest.cpp 12 #include <map>
76 // allows all of the map implementations to be tested with shared
81 T Map;
110 // Empty map tests
113 EXPECT_EQ(0u, this->Map.size());
114 EXPECT_TRUE(this->Map.empty());
117 EXPECT_TRUE(this->Map.begin() == this->Map.end());
120 EXPECT_FALSE(this->Map.count(this->getKey()));
121 EXPECT_TRUE(this->Map.find(this->getKey()) == this->Map.end())
339 DenseMap<unsigned, unsigned, TestDenseMapInfo> map; local
373 SmallDenseMap<unsigned, unsigned, 32, ContiguousDenseMapInfo> map; local
    [all...]
  /external/ceres-solver/include/ceres/internal/
eigen.h 43 typedef Eigen::Map<Vector> VectorRef;
44 typedef Eigen::Map<Matrix> MatrixRef;
45 typedef Eigen::Map<const Vector> ConstVectorRef;
46 typedef Eigen::Map<const Matrix> ConstMatrixRef;
54 typedef Eigen::Map<ColMajorMatrix, 0,
57 typedef Eigen::Map<const ColMajorMatrix,
70 typedef Eigen::Map<
77 typedef Eigen::Map <
82 typedef Eigen::Map<
86 typedef Eigen::Map <
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AddressParameters.java 3 import java.util.Map;
4 import java.util.Map.Entry;
24 * Get the parameters map.
27 public abstract Map<String,Entry<String,String>> getParameters();
  /external/eigen/failtest/
map_nonconst_ctor_on_const_ptr_0.cpp 12 Map<Matrix3f> m(ptr);
map_on_const_type_actually_const_0.cpp 12 Map<CV_QUALIFIER MatrixXf>(ptr, 1, 1).coeffRef(0,0) = 1.0f;
map_on_const_type_actually_const_1.cpp 12 Map<CV_QUALIFIER Vector3f>(ptr).coeffRef(0) = 1.0f;
  /external/openfst/src/script/
map.cc 19 #include <fst/script/map.h>
24 FstClass *Map(const FstClass& ifst, MapType map_type,
29 Apply<Operation<MapArgs> >("Map", ifst.ArcType(), &args_with_retval);
34 REGISTER_FST_OPERATION(Map, StdArc, MapArgs);
35 REGISTER_FST_OPERATION(Map, LogArc, MapArgs);
36 REGISTER_FST_OPERATION(Map, Log64Arc, MapArgs);
  /external/llvm/include/llvm/IR/
ValueMap.h 1 //===- ValueMap.h - Safe map from Values to data ----------------*- C++ -*-===//
67 /// Returns a mutex that should be acquired around any changes to the map.
82 MapT Map;
93 : Map(NumInitBuckets), Data() {}
95 : Map(NumInitBuckets), Data(Data) {}
101 inline iterator begin() { return iterator(Map.begin()); }
102 inline iterator end() { return iterator(Map.end()); }
103 inline const_iterator begin() const { return const_iterator(Map.begin()); }
104 inline const_iterator end() const { return const_iterator(Map.end()); }
106 bool empty() const { return Map.empty();
    [all...]
  /cts/tools/signature-tools/src/signature/compare/model/subst/
ConstructorProjection.java 23 import java.util.Map;
29 Map<ITypeVariableDefinition, ITypeReference> mappings) {

Completed in 588 milliseconds

1 2 3 4 5 6 7 8 91011>>