HomeSort by relevance Sort by last modified time
    Searched full:pair (Results 1 - 25 of 1449) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/core/
SkPtrRecorder.cpp 5 Pair* p = fList.begin();
6 Pair* stop = fList.end();
14 int SkPtrRecorder::Cmp(const Pair& a, const Pair& b) {
24 Pair pair; local
25 pair.fPtr = ptr;
27 int index = SkTSearch<Pair>(fList.begin(), count, pair, sizeof(pair), &Cmp)
    [all...]
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
upair.h 7 /// \brief Pair-related functionality.
16 /// \class pair upair.h ustl.h
22 class pair { class in namespace:ustl
28 inline pair (void) : first (T1()), second (T2()) {} function in class:ustl::pair
30 inline pair (const T1& a, const T2& b) : first (a), second (b) {} function in class:ustl::pair
31 inline pair& operator= (const pair<T1, T2>& p2) { first = p2.first; second = p2.second; return (*this); }
33 inline pair& operator= (const pair<T3, T4>& p2) { first = p2.first; second = p2.second; return (*this); }
41 inline bool operator== (const pair<T1,T2>& p1, const pair<T1,T2>& p2
    [all...]
  /frameworks/base/core/java/android/util/
Pair.java 24 public class Pair<F, S> {
29 * Constructor for a Pair. If either are null then equals() and hashCode() will throw
31 * @param first the first object in the Pair
32 * @param second the second object in the pair
34 public Pair(F first, S second) {
41 * @param o the Pair to which this one is to be checked for equality
42 * @return true if the underlying objects of the Pair are both considered equals()
46 if (!(o instanceof Pair)) return false;
47 final Pair<F, S> other;
49 other = (Pair<F, S>) o
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
AsymmetricCipherKeyPairGenerator.java 4 * interface that a public/private key pair generator should conform to.
9 * intialise the key pair generator.
11 * @param param the parameters the key pair is to be initialised with.
  /external/webkit/WebCore/loader/mac/
DocumentLoaderMac.cpp 39 static void scheduleAll(const ResourceLoaderSet& loaders, SchedulePair* pair)
45 handle->schedule(pair);
48 static void unscheduleAll(const ResourceLoaderSet& loaders, SchedulePair* pair)
54 handle->unschedule(pair);
58 void DocumentLoader::schedule(SchedulePair* pair)
62 m_mainResourceLoader->handle()->schedule(pair);
63 scheduleAll(m_subresourceLoaders, pair);
64 scheduleAll(m_plugInStreamLoaders, pair);
65 scheduleAll(m_multipartSubresourceLoaders, pair);
67 UNUSED_PARAM(pair);
    [all...]
  /external/stlport/stlport/stl/
_pair.h 51 struct pair { struct
58 pair() {} function in struct:pair
60 pair() : first(_T1()), second(_T2()) {} function in struct:pair
62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} function in struct:pair
66 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} function in struct:pair
68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {} function in struct:pair
72 pair(__move_source<pair<_T1, _T2> > src) : first(_STLP_PRIV _AsMoveSource(src.get().first)) function in struct:pair
    [all...]
  /external/skia/include/core/
SkTDict.h 54 Pair* pair = fArray.insert(~index); local
58 pair->fName = copy;
59 pair->fValue = value;
94 Pair* end = fArray.end();
95 for (Pair* pair = fArray.begin(); pair < end; pair++) {
96 if (pair->fValue != value
    [all...]
  /external/skia/src/effects/
SkPorterDuff.cpp 12 static const struct Pair {
36 const Pair* pairs = gPairs;
50 const Pair& pair = gPairs[mode]; local
51 SkASSERT(pair.fPD == mode);
52 return pair.fXF;
56 const Pair& pair = gPairs[mode]; local
57 SkASSERT(pair.fPD == mode);
58 return SkXfermode::Create(pair.fXF)
    [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...]
  /dalvik/docs/opcodes/
opcode-04-move-wide.html 17 Move the contents of one register-pair to another.
21 must arrange for both halves of a register pair to be read before anything is
39 <td><code>A:</code> destination register pair (4 bits)<br/>
40 <code>B:</code> source register pair (4 bits)</td>
45 <td><code>A:</code> destination register pair (8 bits)<br/>
46 <code>B:</code> source register pair (16 bits)</td>
51 <td><code>A:</code> destination register pair (16 bits)<br/>
52 <code>B:</code> source register pair (16 bits)</td>
65 Register vB must be the lower half of a register pair (which excludes the
84 If register v(A-1) is the lower half of a register pair, then v(A-1)
    [all...]
  /external/webkit/WebCore/css/
Pair.h 30 // A primitive value representing a pair. This is useful for properties like border-radius, background-size/position,
34 class Pair : public RefCounted<Pair> {
36 static PassRefPtr<Pair> create()
38 return adoptRef(new Pair);
40 static PassRefPtr<Pair> create(PassRefPtr<CSSPrimitiveValue> first, PassRefPtr<CSSPrimitiveValue> second)
42 return adoptRef(new Pair(first, second));
44 virtual ~Pair() { }
53 Pair() : m_first(0), m_second(0) { }
54 Pair(PassRefPtr<CSSPrimitiveValue> first, PassRefPtr<CSSPrimitiveValue> second
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
Pair.java 20 * A pair of objects. Mostly auto-generated by Eclipse.
22 public class Pair<S, T> {
26 public Pair(S first, T second) {
31 public static <S, T> Pair<S, T> create(S first, T second) {
32 return new Pair<S, T>(first, second);
56 final Pair<S, T> other = (Pair) obj;
  /frameworks/base/core/jni/android/graphics/
PathMeasure.cpp 24 /* We declare an explicit pair, so that we don't have to rely on the java
59 static void setPath(JNIEnv* env, jobject clazz, PathMeasurePair* pair, const SkPath* path, jboolean forceClosed) {
61 pair->fPath.reset();
63 pair->fPath = *path;
65 pair->fMeasure.setPath(&pair->fPath, forceClosed);
68 static jfloat getLength(JNIEnv* env, jobject clazz, PathMeasurePair* pair) {
69 return SkScalarToFloat(pair->fMeasure.getLength());
79 static jboolean getPosTan(JNIEnv* env, jobject clazz, PathMeasurePair* pair, jfloat dist, jfloatArray pos, jfloatArray tan) {
84 if (!pair->fMeasure.getPosTan(SkFloatToScalar(dist), (SkPoint*)posPtr, (SkVector*)tanPtr))
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsListFocus.java 29 /** the information of the pair of view */
42 * Get the pair of view
44 * @return The information of the pair of view
51 * Set the pair of view
53 * @param pairView The information of the pair of view
  /bionic/libstdc++/include/
stl_pair.h 64 struct pair { struct
70 pair() : first(), second() {} function in struct:pair
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} function in struct:pair
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} function in struct:pair
78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
84 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
    [all...]
  /ndk/build/platforms/android-3/arch-arm/usr/include/
stl_pair.h 64 struct pair { struct
70 pair() : first(), second() {} function in struct:pair
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} function in struct:pair
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} function in struct:pair
78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
84 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
    [all...]
  /ndk/build/platforms/android-4/arch-arm/usr/include/
stl_pair.h 64 struct pair { struct
70 pair() : first(), second() {} function in struct:pair
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} function in struct:pair
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} function in struct:pair
78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
84 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
    [all...]
  /ndk/build/platforms/android-5/arch-arm/usr/include/
stl_pair.h 64 struct pair { struct
70 pair() : first(), second() {} function in struct:pair
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} function in struct:pair
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} function in struct:pair
78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
84 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
    [all...]
  /ndk/build/platforms/android-5/arch-x86/usr/include/
stl_pair.h 64 struct pair { struct
70 pair() : first(), second() {} function in struct:pair
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} function in struct:pair
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} function in struct:pair
78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
84 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
    [all...]
  /ndk/build/platforms/android-8/arch-arm/usr/include/
stl_pair.h 64 struct pair { struct
70 pair() : first(), second() {} function in struct:pair
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} function in struct:pair
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} function in struct:pair
78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
84 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
    [all...]
  /ndk/build/platforms/android-8/arch-x86/usr/include/
stl_pair.h 64 struct pair { struct
70 pair() : first(), second() {} function in struct:pair
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} function in struct:pair
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} function in struct:pair
78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
84 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
    [all...]
  /external/stlport/test/unit/
pair_test.cpp 28 pair<int, int> p = make_pair(1, 10);
36 pair<int, string> PAIR_ARRAY[] = { pair<int, string>(0, "0") };
  /external/clearsilver/man/man3/
dictSetValue.3 25 dict - dictionary to add pair to.
32 Updates the <id>/<value> pair into <dict>.
skipInsert.3 25 list - list to add pair to.
32 Inserts the <key>/<value> pair into the <list>.
  /external/webkit/WebCore/page/mac/
PageMac.cpp 40 RefPtr<SchedulePair> pair = prpPair; local
44 m_scheduledRunLoopPairs->add(pair);
49 documentLoader->schedule(pair.get());
51 documentLoader->schedule(pair.get());
64 RefPtr<SchedulePair> pair = prpPair;
65 m_scheduledRunLoopPairs->remove(pair);
70 documentLoader->unschedule(pair.get());
72 documentLoader->unschedule(pair.get());

Completed in 48 milliseconds

1 2 3 4 5 6 7 8 91011>>