Searched defs:Pair (Results 1 - 8 of 8) sorted by relevance

/frameworks/av/media/img_utils/include/img_utils/
H A DPair.h29 class ANDROID_API Pair { class in namespace:android::img_utils
34 Pair() {} function in class:android::img_utils::Pair
36 Pair(const Pair& o) : first(o.first), second(o.second) {} function in class:android::img_utils::Pair
38 Pair(const F& f, const S& s) : first(f), second(s) {} function in class:android::img_utils::Pair
/frameworks/base/core/java/android/util/
H A DPair.java26 public class Pair<F, S> { class
31 * Constructor for a Pair.
33 * @param first the first object in the Pair
36 public Pair(F first, S second) { method in class:Pair
45 * @param o the {@link Pair} to which this one is to be checked for equality
46 * @return true if the underlying objects of the Pair are both considered
51 if (!(o instanceof Pair)) {
54 Pair<?, ?> p = (Pair<?, ?>) o;
61 * @return a hashcode of the Pair
[all...]
/frameworks/support/v4/java/android/support/v4/util/
H A DPair.java24 public class Pair<F, S> { class
29 * Constructor for a Pair.
31 * @param first the first object in the Pair
34 public Pair(F first, S second) { method in class:Pair
43 * @param o the {@link Pair} to which this one is to be checked for equality
44 * @return true if the underlying objects of the Pair are both considered
49 if (!(o instanceof Pair)) {
52 Pair<?, ?> p = (Pair<?, ?>) o;
63 * @return a hashcode of the Pair
[all...]
/frameworks/wilhelm/src/ut/
H A DOpenSLESUT.c34 } Pair; typedef in typeref:struct:__anon1662
43 static Pair pairs[] = {
108 Pair *p;
109 const Pair *end = &pairs[sizeof(pairs)/sizeof(pairs[0])];
/frameworks/base/libs/hwui/utils/
H A DPair.h24 struct Pair { struct in namespace:android::uirenderer
28 Pair() { } function in struct:android::uirenderer::Pair
29 Pair(const Pair& o) : first(o.first), second(o.second) { } function in struct:android::uirenderer::Pair
30 Pair(const F& f, const S& s) : first(f), second(s) { } function in struct:android::uirenderer::Pair
44 struct trait_trivial_ctor< uirenderer::Pair<F, S> >
47 struct trait_trivial_dtor< uirenderer::Pair<F, S> >
50 struct trait_trivial_copy< uirenderer::Pair<F, S> >
53 struct trait_trivial_move< uirenderer::Pair<F, S> >
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiLogger.java22 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) { argument
128 private static void increaseLogCount(HashMap<String, Pair<Long, Integer>> cache,
130 Pair<Lon
136 shouldLogNow(@ullable Pair<Long, Integer> timing, long curTime) argument
[all...]
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFDynamic.h55 typedef llvm::ELF::Elf32_Dyn Pair; typedef in class:mcld::elf_dynamic::Entry
69 { return sizeof(Pair); }
85 Pair m_Pair;
92 typedef llvm::ELF::Elf64_Dyn Pair; typedef in class:mcld::elf_dynamic::Entry
106 { return sizeof(Pair); }
122 Pair m_Pair;
/frameworks/wilhelm/tests/sandbox/
H A Dreverb.c36 } Pair; typedef in typeref:struct:__anon1677
40 Pair pairs[] = {

Completed in 284 milliseconds