HomeSort by relevance Sort by last modified time
    Searched full:pair (Results 76 - 100 of 7064) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/misc/common/swig/include/2.0.11/octave/
std_pair.i 11 struct traits_asval<std::pair<T,U> > {
12 typedef std::pair<T,U> value_type;
15 std::pair<T,U> *val)
40 static int asval(const octave_value& obj, std::pair<T,U> *val) {
44 error("pair from Cell array requires at least two elements");
61 struct traits_asptr<std::pair<T,U> > {
62 typedef std::pair<T,U> value_type;
65 std::pair<T,U> **val)
68 value_type *vp = %new_instance(std::pair<T,U>);
93 static int asptr(const octave_value& obj, std::pair<T,U> **val)
    [all...]
  /external/libcxx/test/std/utilities/utility/pairs/pairs.pair/
const_pair_U_V.pass.cpp 12 // template <class T1, class T2> struct pair
14 // template <class U, class V> pair(const pair<U, V>& p);
22 typedef std::pair<int, short> P1;
23 typedef std::pair<double, long> P2;
32 typedef std::pair<int, short> P1;
33 typedef std::pair<double, long> P2;
  /external/linux-tools-perf/src/tools/perf/tests/
vmlinux-kallsyms.c 121 struct symbol *pair, *first_pair; local
134 pair = first_pair;
136 if (pair && UM(pair->start) == mem_start) {
138 if (strcmp(sym->name, pair->name) == 0) {
148 s64 skew = mem_end - UM(pair->end);
152 UM(pair->end));
165 nnd = backwards ? rb_prev(&pair->rb_node) :
166 rb_next(&pair->rb_node);
171 pair = next
198 struct map *pos = rb_entry(nd, struct map, rb_node), *pair; local
218 struct map *pos = rb_entry(nd, struct map, rb_node), *pair; local
    [all...]
  /external/llvm/test/Feature/
memorymarkers.ll 3 %"struct.std::pair<int,int>" = type { i32, i32 }
14 %x = alloca %"struct.std::pair<int,int>"
15 %y = bitcast %"struct.std::pair<int,int>"* %x to i8*
21 %0 = getelementptr %"struct.std::pair<int,int>", %"struct.std::pair<int,int>"* %x, i32 0, i32 0
23 %1 = getelementptr %"struct.std::pair<int,int>", %"struct.std::pair<int,int>"* %x, i32 0, i32 1
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/
const_pair_U_V.pass.cpp 12 // template <class T1, class T2> struct pair
14 // template <class U, class V> pair(const pair<U, V>& p);
22 typedef std::pair<int, short> P1;
23 typedef std::pair<double, long> P2;
32 typedef std::pair<int, short> P1;
33 typedef std::pair<double, long> P2;
  /external/chromium-trace/trace-viewer/tracing/tracing/ui/
timeline_view_help_overlay.html 34 .pair {
74 <div class='pair'>
79 <div class='pair'>
84 <div class='pair'>
89 <div class='pair'>
95 <div class='pair'>
99 <div class='pair'>
108 <div class='pair'>
113 <div class='pair'>
122 <div class='pair'>
    [all...]
  /external/fio/
json.c 21 struct json_pair *pair = malloc(sizeof(struct json_pair)); local
22 if (pair) {
23 pair->name = strdup(name);
24 pair->value = value;
27 value->parent_pair = pair;
29 return pair;
122 static void json_free_pair(struct json_pair *pair);
145 static void json_free_pair(struct json_pair *pair)
147 json_free_value(pair->value);
148 free(pair->name)
201 struct json_pair *pair; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiLogger.java 22 import android.util.Pair;
50 // Value (Pair(Long, Integer)): a pair of last log time millis and the number of logMessage.
52 private final HashMap<String, Pair<Long, Integer>> mWarningTimingCache = new HashMap<>();
54 private final HashMap<String, Pair<Long, Integer>> mErrorTimingCache = new HashMap<>();
109 private static String updateLog(HashMap<String, Pair<Long, Integer>> cache, String logMessage) {
111 Pair<Long, Integer> timing = cache.get(logMessage);
114 cache.put(logMessage, new Pair<>(curTime, 1));
122 private static String buildMessage(String message, @Nullable Pair<Long, Integer> timing) {
128 private static void increaseLogCount(HashMap<String, Pair<Long, Integer>> cache
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
FeatureAssembly.java 21 import android.util.Pair;
35 private HashSet<Pair<String, String> > mUsePairedFeatures;
42 mUsePairedFeatures = new HashSet<Pair<String, String> >();
62 mUsePairedFeatures.add(Pair.create(features[0], features[1]));
89 Pair<String, String> pair = (Pair<String, String>) itr.next(); local
90 if (featureMap.containsKey(pair.first) &&
91 featureMap.containsKey(pair.second)) {
92 String key = pair.first + Predictor.FEATURE_SEPARATOR + pair.second
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/
minmax_init_list_comp.pass.cpp 13 // pair<T, T>
23 assert((std::minmax({1, 2, 3}, std::greater<int>()) == std::pair<int, int>(3, 1)));
24 assert((std::minmax({1, 3, 2}, std::greater<int>()) == std::pair<int, int>(3, 1)));
25 assert((std::minmax({2, 1, 3}, std::greater<int>()) == std::pair<int, int>(3, 1)));
26 assert((std::minmax({2, 3, 1}, std::greater<int>()) == std::pair<int, int>(3, 1)));
27 assert((std::minmax({3, 1, 2}, std::greater<int>()) == std::pair<int, int>(3, 1)));
28 assert((std::minmax({3, 2, 1}, std::greater<int>()) == std::pair<int, int>(3, 1)));
31 static_assert((std::minmax({1, 2, 3}, std::greater<int>()) == std::pair<int, int>(3, 1)), "");
32 static_assert((std::minmax({1, 3, 2}, std::greater<int>()) == std::pair<int, int>(3, 1)), "");
33 static_assert((std::minmax({2, 1, 3}, std::greater<int>()) == std::pair<int, int>(3, 1)), "")
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/
utility 50 // Various functions which give std::pair a tuple-like interface.
52 struct tuple_size<std::pair<_Tp1, _Tp2> >
57 tuple_size<std::pair<_Tp1, _Tp2> >::value;
60 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
64 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
74 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
78 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
86 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
90 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
95 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
utility 50 // Various functions which give std::pair a tuple-like interface.
52 struct tuple_size<std::pair<_Tp1, _Tp2> >
57 tuple_size<std::pair<_Tp1, _Tp2> >::value;
60 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
64 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
74 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
78 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
86 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
90 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
95 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
utility 50 // Various functions which give std::pair a tuple-like interface.
52 struct tuple_size<std::pair<_Tp1, _Tp2> >
57 tuple_size<std::pair<_Tp1, _Tp2> >::value;
60 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
64 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
74 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
78 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
86 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
90 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
95 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
utility 44 // Various functions which give std::pair a tuple-like interface.
46 struct tuple_size<std::pair<_Tp1, _Tp2> >
59 tuple_size<std::pair<_Tp1, _Tp2> >::value;
62 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
66 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
80 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
84 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
92 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
96 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
105 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
utility 44 // Various functions which give std::pair a tuple-like interface.
46 struct tuple_size<std::pair<_Tp1, _Tp2> >
59 tuple_size<std::pair<_Tp1, _Tp2> >::value;
62 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
66 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
80 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
84 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
92 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
96 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
105 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
utility 44 // Various functions which give std::pair a tuple-like interface.
46 struct tuple_size<std::pair<_Tp1, _Tp2> >
59 tuple_size<std::pair<_Tp1, _Tp2> >::value;
62 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
66 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
80 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
84 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
92 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
96 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
105 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1_impl/
utility 44 // Various functions which give std::pair a tuple-like interface.
46 struct tuple_size<std::pair<_Tp1, _Tp2> >
59 tuple_size<std::pair<_Tp1, _Tp2> >::value;
62 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
66 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
80 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
84 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
92 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
96 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
105 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
utility 51 // Various functions which give std::pair a tuple-like interface.
53 struct tuple_size<std::pair<_Tp1, _Tp2> >
58 tuple_size<std::pair<_Tp1, _Tp2> >::value;
61 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
65 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
75 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
79 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
87 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
91 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
96 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/
utility 51 // Various functions which give std::pair a tuple-like interface.
53 struct tuple_size<std::pair<_Tp1, _Tp2> >
58 tuple_size<std::pair<_Tp1, _Tp2> >::value;
61 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
65 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
75 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
79 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
87 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
91 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
96 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
utility 51 // Various functions which give std::pair a tuple-like interface.
53 struct tuple_size<std::pair<_Tp1, _Tp2> >
58 tuple_size<std::pair<_Tp1, _Tp2> >::value;
61 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
65 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
75 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
79 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
87 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
91 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
96 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/
utility 51 // Various functions which give std::pair a tuple-like interface.
53 struct tuple_size<std::pair<_Tp1, _Tp2> >
58 tuple_size<std::pair<_Tp1, _Tp2> >::value;
61 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
65 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
75 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
79 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
87 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
91 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
96 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/tr1/
utility 50 // Various functions which give std::pair a tuple-like interface.
52 struct tuple_size<std::pair<_Tp1, _Tp2> >
57 tuple_size<std::pair<_Tp1, _Tp2> >::value;
60 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
64 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
74 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
78 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
86 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
90 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
95 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
utility 50 // Various functions which give std::pair a tuple-like interface.
52 struct tuple_size<std::pair<_Tp1, _Tp2> >
57 tuple_size<std::pair<_Tp1, _Tp2> >::value;
60 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
64 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
74 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
78 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
86 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
90 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
95 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
std_pair.i 4 * SWIG typemaps for std::pair
11 // std::pair
20 template<class T, class U> struct pair {
22 pair();
23 pair(T t, U u);
24 pair(const pair& p);
26 template <class U1, class U2> pair(const pair<U1, U2> &p);
  /prebuilts/misc/common/swig/include/2.0.11/d/
std_pair.i 4 * SWIG typemaps for std::pair
11 // std::pair
20 template<class T, class U> struct pair {
22 pair();
23 pair(T t, U u);
24 pair(const pair& p);
26 template <class U1, class U2> pair(const pair<U1, U2> &p);

Completed in 861 milliseconds

1 2 34 5 6 7 8 91011>>