HomeSort by relevance Sort by last modified time
    Searched full:pair (Results 26 - 50 of 7160) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/include/core/
SkTDict.h 47 Pair* pair = fArray.insert(~index); local
51 pair->fName = copy;
52 pair->fValue = value;
87 const Pair* end = fArray.end();
88 for (const Pair* pair = fArray.begin(); pair < end; pair++) {
89 if (pair->fValue != value
    [all...]
  /external/skia/include/core/
SkTDict.h 47 Pair* pair = fArray.insert(~index); local
51 pair->fName = copy;
52 pair->fValue = value;
87 const Pair* end = fArray.end();
88 for (const Pair* pair = fArray.begin(); pair < end; pair++) {
89 if (pair->fValue != value
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkPorterDuff.cpp 21 static const struct Pair {
48 const Pair* pairs = gPairs;
62 const Pair& pair = gPairs[mode]; local
63 SkASSERT(pair.fPD == mode);
64 return pair.fXF;
68 const Pair& pair = gPairs[mode]; local
69 SkASSERT(pair.fPD == mode);
70 return SkXfermode::Create(pair.fXF)
    [all...]
  /external/skia/src/effects/
SkPorterDuff.cpp 21 static const struct Pair {
48 const Pair* pairs = gPairs;
62 const Pair& pair = gPairs[mode]; local
63 SkASSERT(pair.fPD == mode);
64 return pair.fXF;
68 const Pair& pair = gPairs[mode]; local
69 SkASSERT(pair.fPD == mode);
70 return SkXfermode::Create(pair.fXF)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_pair.h 0 // Pair implementation -*- C++ -*-
88 struct pair struct
97 // 265. std::pair::pair() effects overly restrictive
100 _GLIBCXX_CONSTEXPR pair() function in struct:pair
103 /** Two objects may be passed to a @c pair constructor to be copied. */
104 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b) function in struct:pair
107 /** There is also a templated copy ctor for the @c pair class itself. */
110 pair(const pair<_U1, _U2>& __p function in struct:pair
116 constexpr pair(const pair<_U1, _U2>& __p) function in struct:pair
125 constexpr pair(_U1&& __x, const _T2& __y) function in struct:pair
130 constexpr pair(const _T1& __x, _U2&& __y) function in struct:pair
136 constexpr pair(_U1&& __x, _U2&& __y) function in struct:pair
142 constexpr pair(pair<_U1, _U2>&& __p) function in struct:pair
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_pair.h 0 // Pair implementation -*- C++ -*-
88 struct pair struct
97 // 265. std::pair::pair() effects overly restrictive
100 _GLIBCXX_CONSTEXPR pair() function in struct:pair
103 /** Two objects may be passed to a @c pair constructor to be copied. */
104 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b) function in struct:pair
107 /** There is also a templated copy ctor for the @c pair class itself. */
110 pair(const pair<_U1, _U2>& __p function in struct:pair
116 constexpr pair(const pair<_U1, _U2>& __p) function in struct:pair
125 constexpr pair(_U1&& __x, const _T2& __y) function in struct:pair
130 constexpr pair(const _T1& __x, _U2&& __y) function in struct:pair
136 constexpr pair(_U1&& __x, _U2&& __y) function in struct:pair
142 constexpr pair(pair<_U1, _U2>&& __p) function in struct:pair
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
stl_pair.h 0 // Pair implementation -*- C++ -*-
96 struct pair struct
105 // 265. std::pair::pair() effects overly restrictive
108 _GLIBCXX_CONSTEXPR pair() function in struct:pair
111 /** Two objects may be passed to a @c pair constructor to be copied. */
112 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b) function in struct:pair
115 /** There is also a templated copy ctor for the @c pair class itself. */
118 pair(const pair<_U1, _U2>& __p function in struct:pair
124 constexpr pair(const pair<_U1, _U2>& __p) function in struct:pair
133 constexpr pair(_U1&& __x, const _T2& __y) function in struct:pair
138 constexpr pair(const _T1& __x, _U2&& __y) function in struct:pair
144 constexpr pair(_U1&& __x, _U2&& __y) function in struct:pair
150 constexpr pair(pair<_U1, _U2>&& __p) function in struct:pair
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
UpdatePair.cpp 95 CUpdatePair pair; local
103 pair.State = NUpdateArchive::NPairState::kOnlyOnDisk;
104 pair.DirIndex = dirIndex2;
109 pair.State = ai.Censored ?
112 pair.ArcIndex = arcIndex2;
119 pair.DirIndex = dirIndex2;
120 pair.ArcIndex = arcIndex2;
125 case -1: pair.State = NUpdateArchive::NPairState::kNewInArchive; break;
126 case 1: pair.State = NUpdateArchive::NPairState::kOldInArchive; break;
128 pair.State = (ai.SizeDefined && di.Size == ai.Size) ?
140 CUpdatePair pair; local
148 CUpdatePair pair; local
    [all...]
  /external/ppp/pppd/plugins/radius/
avpair.c 26 * Purpose: add an attribute-value pair to the given list.
28 * Returns: pointer to added a/v pair upon success, NULL pointer upon failure.
30 * Remarks: Always appends the new pair to the end of the list.
53 * Purpose: assign the given value to an attribute-value pair.
104 * Purpose: make a new attribute-value pair with given parameters.
106 * Returns: pointer to generated a/v pair when successful, NULL when failure.
163 VALUE_PAIR *pair; local
207 if ((pair =
215 strcpy (pair->name, attr->name);
216 pair->attribute = attr->value
270 VALUE_PAIR *pair; local
529 VALUE_PAIR *pair; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_pair.h 0 // Pair implementation -*- C++ -*-
87 struct pair struct
96 // 265. std::pair::pair() effects overly restrictive
99 _GLIBCXX_CONSTEXPR pair() function in struct:pair
102 /** Two objects may be passed to a @c pair constructor to be copied. */
103 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b) function in struct:pair
106 /** There is also a templated copy ctor for the @c pair class itself. */
108 _GLIBCXX_CONSTEXPR pair(const pair<_U1, _U2>& __p function in struct:pair
120 pair(_U1&& __x, const _T2& __y) function in struct:pair
125 pair(const _T1& __x, _U2&& __y) function in struct:pair
131 pair(_U1&& __x, _U2&& __y) function in struct:pair
135 pair(pair<_U1, _U2>&& __p) function in struct:pair
140 pair(piecewise_construct_t, function in struct:pair
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_pair.h 0 // Pair implementation -*- C++ -*-
87 struct pair struct
96 // 265. std::pair::pair() effects overly restrictive
99 _GLIBCXX_CONSTEXPR pair() function in struct:pair
102 /** Two objects may be passed to a @c pair constructor to be copied. */
103 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b) function in struct:pair
106 /** There is also a templated copy ctor for the @c pair class itself. */
108 _GLIBCXX_CONSTEXPR pair(const pair<_U1, _U2>& __p function in struct:pair
120 pair(_U1&& __x, const _T2& __y) function in struct:pair
125 pair(const _T1& __x, _U2&& __y) function in struct:pair
131 pair(_U1&& __x, _U2&& __y) function in struct:pair
135 pair(pair<_U1, _U2>&& __p) function in struct:pair
140 pair(piecewise_construct_t, function in struct:pair
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_pair.h 0 // Pair implementation -*- C++ -*-
87 struct pair struct
96 // 265. std::pair::pair() effects overly restrictive
99 _GLIBCXX_CONSTEXPR pair() function in struct:pair
102 /** Two objects may be passed to a @c pair constructor to be copied. */
103 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b) function in struct:pair
106 /** There is also a templated copy ctor for the @c pair class itself. */
108 _GLIBCXX_CONSTEXPR pair(const pair<_U1, _U2>& __p function in struct:pair
120 pair(_U1&& __x, const _T2& __y) function in struct:pair
125 pair(const _T1& __x, _U2&& __y) function in struct:pair
131 pair(_U1&& __x, _U2&& __y) function in struct:pair
135 pair(pair<_U1, _U2>&& __p) function in struct:pair
140 pair(piecewise_construct_t, function in struct:pair
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_pair.h 0 // Pair implementation -*- C++ -*-
87 struct pair struct
96 // 265. std::pair::pair() effects overly restrictive
99 _GLIBCXX_CONSTEXPR pair() function in struct:pair
102 /** Two objects may be passed to a @c pair constructor to be copied. */
103 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b) function in struct:pair
106 /** There is also a templated copy ctor for the @c pair class itself. */
108 _GLIBCXX_CONSTEXPR pair(const pair<_U1, _U2>& __p function in struct:pair
120 pair(_U1&& __x, const _T2& __y) function in struct:pair
125 pair(const _T1& __x, _U2&& __y) function in struct:pair
131 pair(_U1&& __x, _U2&& __y) function in struct:pair
135 pair(pair<_U1, _U2>&& __p) function in struct:pair
140 pair(piecewise_construct_t, function in struct:pair
    [all...]
  /external/llvm/test/Transforms/GlobalOpt/
2007-06-04-PackedStruct.ll 6 %"struct.__gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<const int, int> > >" = type <{ i8 }>
7 %"struct.std::_Rb_tree<int,std::pair<const int, int>,std::_Select1st<std::pair<const int, int> >,std::less<int>,std::allocator<std::pair<const int, int> > >" = type { %"struct.std::_Rb_tree<int,std::pair<const int, int>,std::_Select1st<std::pair<const int, int> >,std::less<int>,std::allocator<std::pair<const int, int> > >::_Rb_tree_impl<std::less<int>,false>" }
8 %"struct.std::_Rb_tree<int,std::pair<const int, int>,std::_Select1st<std::pair<const int, int> >,std::less<int>,std::allocator<std::pair<const int, int> > >::_Rb_tree_impl<std::less<int>,false>" = type { %"struct.__gnu_cxx::new_allocat (…)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.spec/
comparison.pass.cpp 12 // template <class T1, class T2> struct pair
14 // template <class T1, class T2> bool operator==(const pair<T1,T2>&, const pair<T1,T2>&);
15 // template <class T1, class T2> bool operator!=(const pair<T1,T2>&, const pair<T1,T2>&);
16 // template <class T1, class T2> bool operator< (const pair<T1,T2>&, const pair<T1,T2>&);
17 // template <class T1, class T2> bool operator> (const pair<T1,T2>&, const pair<T1,T2>&);
18 // template <class T1, class T2> bool operator>=(const pair<T1,T2>&, const pair<T1,T2>&)
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicMarkableReference.java 23 private static class Pair<T> {
26 private Pair(T reference, boolean mark) {
30 static <T> Pair<T> of(T reference, boolean mark) {
31 return new Pair<T>(reference, mark);
35 private volatile Pair<V> pair; field in class:AtomicMarkableReference
45 pair = Pair.of(initialRef, initialMark);
54 return pair.reference;
63 return pair.mark
75 Pair<V> pair = this.pair; local
    [all...]
AtomicStampedReference.java 23 private static class Pair<T> {
26 private Pair(T reference, int stamp) {
30 static <T> Pair<T> of(T reference, int stamp) {
31 return new Pair<T>(reference, stamp);
35 private volatile Pair<V> pair; field in class:AtomicStampedReference
45 pair = Pair.of(initialRef, initialStamp);
54 return pair.reference;
63 return pair.stamp
75 Pair<V> pair = this.pair; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_program_pair.c 38 int rc_pair_alloc_source(struct rc_pair_instruction *pair,
53 if (rgb && pair->RGB.Src[RC_PAIR_PRESUB_SRC].Used
54 && index != pair->RGB.Src[RC_PAIR_PRESUB_SRC].Index) {
58 if (alpha && pair->Alpha.Src[RC_PAIR_PRESUB_SRC].Used
59 && index != pair->Alpha.Src[RC_PAIR_PRESUB_SRC].Index) {
67 if (pair->RGB.Src[i].Used) {
68 if (pair->RGB.Src[i].File != file ||
69 pair->RGB.Src[i].Index != index) {
77 if (pair->Alpha.Src[i].Used) {
78 if (pair->Alpha.Src[i].File != file |
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program_pair.c 38 int rc_pair_alloc_source(struct rc_pair_instruction *pair,
53 if (rgb && pair->RGB.Src[RC_PAIR_PRESUB_SRC].Used
54 && index != pair->RGB.Src[RC_PAIR_PRESUB_SRC].Index) {
58 if (alpha && pair->Alpha.Src[RC_PAIR_PRESUB_SRC].Used
59 && index != pair->Alpha.Src[RC_PAIR_PRESUB_SRC].Index) {
67 if (pair->RGB.Src[i].Used) {
68 if (pair->RGB.Src[i].File != file ||
69 pair->RGB.Src[i].Index != index) {
77 if (pair->Alpha.Src[i].Used) {
78 if (pair->Alpha.Src[i].File != file |
    [all...]
  /frameworks/base/libs/hwui/utils/
Pair.h 24 struct Pair {
28 Pair() { }
29 Pair(const Pair& o) : first(o.first), second(o.second) { }
30 Pair(const F& f, const S& s) : first(f), second(s) { }
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> >
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_pair.h 0 // Pair implementation -*- C++ -*-
65 /// pair holds two objects of arbitrary type.
67 struct pair struct
76 // 265. std::pair::pair() effects overly restrictive
79 pair() function in struct:pair
82 /** Two objects may be passed to a @c pair constructor to be copied. */
83 pair(const _T1& __a, const _T2& __b) function in struct:pair
89 pair(_U1&& __x, const _T2& __y) function in struct:pair
94 pair(const _T1& __x, _U2&& __y function in struct:pair
100 pair(_U1&& __x, _U2&& __y) function in struct:pair
103 pair(pair&& __p) function in struct:pair
110 pair(const pair<_U1, _U2>& __p) function in struct:pair
116 pair(pair<_U1, _U2>&& __p) function in struct:pair
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
utility 58 struct pair
66 pair(const pair&) = default;
67 pair(pair&&) = default;
68 constexpr pair();
69 pair(const T1& x, const T2& y);
70 template <class U, class V> pair(U&& x, V&& y);
71 template <class U, class V> pair(const pair<U, V>& p)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_pair.h 0 // Pair implementation -*- C++ -*-
65 /// pair holds two objects of arbitrary type.
67 struct pair struct
76 // 265. std::pair::pair() effects overly restrictive
79 pair() function in struct:pair
82 /** Two objects may be passed to a @c pair constructor to be copied. */
83 pair(const _T1& __a, const _T2& __b) function in struct:pair
88 pair(_U1&& __x, _U2&& __y) function in struct:pair
92 pair(pair&& __p function in struct:pair
99 pair(const pair<_U1, _U2>& __p) function in struct:pair
105 pair(pair<_U1, _U2>&& __p) function in struct:pair
111 pair(_U1&& __x, _Arg0&& __arg0, _Args&&... __args) function in struct:pair
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_pair.h 0 // Pair implementation -*- C++ -*-
65 /// pair holds two objects of arbitrary type.
67 struct pair struct
76 // 265. std::pair::pair() effects overly restrictive
79 pair() function in struct:pair
82 /** Two objects may be passed to a @c pair constructor to be copied. */
83 pair(const _T1& __a, const _T2& __b) function in struct:pair
88 pair(_U1&& __x, _U2&& __y) function in struct:pair
92 pair(pair&& __p function in struct:pair
99 pair(const pair<_U1, _U2>& __p) function in struct:pair
105 pair(pair<_U1, _U2>&& __p) function in struct:pair
111 pair(_U1&& __x, _Arg0&& __arg0, _Args&&... __args) function in struct:pair
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_pair.h 0 // Pair implementation -*- C++ -*-
65 /// pair holds two objects of arbitrary type.
67 struct pair struct
76 // 265. std::pair::pair() effects overly restrictive
79 pair() function in struct:pair
82 /** Two objects may be passed to a @c pair constructor to be copied. */
83 pair(const _T1& __a, const _T2& __b) function in struct:pair
88 pair(_U1&& __x, _U2&& __y) function in struct:pair
92 pair(pair&& __p function in struct:pair
99 pair(const pair<_U1, _U2>& __p) function in struct:pair
105 pair(pair<_U1, _U2>&& __p) function in struct:pair
111 pair(_U1&& __x, _Arg0&& __arg0, _Args&&... __args) function in struct:pair
    [all...]

Completed in 1788 milliseconds

12 3 4 5 6 7 8 91011>>