Searched refs:pair (Results 1 - 25 of 1104) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/loader/mac/
H A DDocumentLoaderMac.cpp39 static void scheduleAll(const ResourceLoaderSet& loaders, SchedulePair* pair) argument
45 handle->schedule(pair);
48 static void unscheduleAll(const ResourceLoaderSet& loaders, SchedulePair* pair) argument
54 handle->unschedule(pair);
58 void DocumentLoader::schedule(SchedulePair* pair) argument
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);
71 unschedule(SchedulePair* pair) argument
[all...]
/external/clang/test/Parser/
H A Dcxx0x-for-range.cpp4 struct pair {}; struct
8 typedef pair<T,U> *iterator;
14 pair<T,U> &tie(T &, U &);
20 for (pair<char*,int> x : m) {
/external/skia/src/core/
H A DSkPtrRecorder.cpp31 Pair pair; local
32 pair.fPtr = ptr;
34 int index = SkTSearch<Pair>(fList.begin(), count, pair, sizeof(pair), &Cmp);
47 Pair pair; local
48 pair.fPtr = ptr;
50 int index = SkTSearch<Pair>(fList.begin(), count, pair, sizeof(pair), &Cmp);
54 pair.fIndex = count + 1;
55 *fList.insert(index) = pair;
[all...]
/external/ppp/pppd/plugins/radius/
H A Davpair.c26 * 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
270 VALUE_PAIR *pair; local
455 rc_avpair_free(VALUE_PAIR *pair) argument
529 VALUE_PAIR *pair; local
692 rc_avpair_tostr(VALUE_PAIR *pair, char *name, int ln, char *value, int lv) argument
[all...]
/external/clang/test/SemaCXX/
H A DMicrosoftCompatibility.cpp76 struct pair { struct in namespace:PR11826
77 pair(int v) { } function in struct:PR11826::pair
78 void operator=(pair&& rhs) { }
81 pair p0(3);
82 pair p = p0;
87 struct pair { struct in namespace:PR11826_for_symmetry
88 pair(int v) { } function in struct:PR11826_for_symmetry::pair
89 pair(pair&& rhs) { } function in struct:PR11826_for_symmetry::pair
92 pair p
[all...]
/external/stlport/stlport/stl/
H A D_pair.h51 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) {} argument
68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {} argument
72 pair(__move_source<pair<_T function in struct:pair
81 operator ==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
85 operator <(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
92 operator !=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
96 operator >(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
100 operator <=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
104 operator >=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
[all...]
H A D_tempbuf.c36 pair<_Tp*, ptrdiff_t> _STLP_CALL
45 return pair<_Tp*, ptrdiff_t>(__tmp, __len);
49 return pair<_Tp*, ptrdiff_t>((_Tp*)0, 0);
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityARIAGridCell.h45 virtual void rowIndexRange(pair<int, int>& rowRange);
47 virtual void columnIndexRange(pair<int, int>& columnRange);
H A DAccessibilityTableCell.h50 virtual void rowIndexRange(pair<int, int>& rowRange);
52 virtual void columnIndexRange(pair<int, int>& columnRange);
/external/webkit/Source/WebCore/page/mac/
H A DPageMac.cpp40 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());
/external/webkit/Source/WebCore/platform/mac/
H A DWebCoreObjCExtras.mm62 typedef std::pair<Class, id> ClassAndIdPair;
66 ClassAndIdPair* pair = static_cast<ClassAndIdPair*>(context);
68 Method method = class_getInstanceMethod(pair->first, @selector(dealloc));
71 imp(pair->second, @selector(dealloc));
73 delete pair;
83 ClassAndIdPair* pair = new ClassAndIdPair(cls, object);
84 callOnMainThread(deallocCallback, pair);
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dmulti-level-substitution.cpp5 template<typename T, typename U> struct pair { }; struct
38 struct Inner<tuple<pair<Types, YTypes>...> > {
43 int check0[X<short, int, long>::Inner<tuple<pair<short, unsigned short>,
44 pair<int, unsigned int>,
45 pair<long, unsigned long>>
48 int check1[X<short, int>::Inner<tuple<pair<short, unsigned short>,
49 pair<int, unsigned int>,
50 pair<long, unsigned long>>
61 struct Inner<tuple<pair<Types, YTypes>...>,
67 int check2[X1<short, int, long>::Inner<tuple<pair<shor
[all...]
H A Dfixed-expansion.cpp3 template<typename T, typename U> struct pair { }; struct
19 typename V = pair<T, U>,
30 X0<int, int, pair<int, int>, pair<int, int>*>>::value,
45 typename V = pair<T, U>,
56 X0<char, int, pair<char, int>, pair<char, int>*>>::value,
/external/webkit/Tools/QueueStatusServer/model/
H A Dactiveworkitems.py56 def _append_item_time_pair(self, pair):
57 self.item_ids.append(pair[0])
58 self.item_dates.append(pair[1])
61 nonexpired_pairs = [pair for pair in self._item_time_pairs() if pair[0] != item_id]
83 nonexpired_pairs = [pair for pair in self._item_time_pairs() if pair[1] > one_hour_ago]
/external/webkit/Source/WebKit2/Shared/
H A DStringPairVector.h43 StringPairVector(Vector<std::pair<String, String> > stringPairVector)
58 const Vector<std::pair<String, String> >& stringPairVector() const { return m_stringPairVector; }
61 Vector<std::pair<String, String> > m_stringPairVector;
/external/clang/test/SemaTemplate/
H A Ddeduction-crash.cpp71 struct pair struct
73 template<class _Tuple, int = enable_if<__tuple_convertible<_Tuple, pair>::value>::type>
74 pair(_Tuple&& );
84 int operator<<( basic_ostream<char> , pair ) ;
H A Dtypename-specifier.cpp26 // expected-note{{add a pair of parentheses}} expected-warning 2{{'typename' occurs outside of a template}}
121 template <class T1, class T2> struct pair {}; // expected-note 7 {{template parameter is declared here}} struct in namespace:missing_typename
139 pair<ExampleItemSet::iterator, int> i; // expected-error {{template argument for template type parameter must be a type; did you forget 'typename'?}}
140 pair<this->ExampleItemSet::iterator, int> i; // expected-error-re {{template argument for template type parameter must be a type$}}
141 pair<ExampleItemSet::operator[], int> i; // expected-error-re {{template argument for template type parameter must be a type$}}
143 pair<ExampleItemSet::iterator, int> elt; // expected-error {{template argument for template type parameter must be a type; did you forget 'typename'?}}
149 pair<ExampleItemMap::iterator, int> i; // expected-error {{template argument for template type parameter must be a type; did you forget 'typename'?}}
151 pair<ExampleItemMap::iterator, int> entry; // expected-error {{template argument for template type parameter must be a type; did you forget 'typename'?}}
152 pair<bar, int> foobar; // expected-error {{template argument for template type parameter must be a type}}
/external/chromium/third_party/libevent/test/
H A Dtest-eof.c65 int pair[2]; local
67 if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
71 send(pair[0], test, strlen(test)+1, 0);
72 shutdown(pair[0], SHUT_WR);
78 event_set(&ev, pair[1], EV_READ, read_cb, &ev);
/external/clang/test/Analysis/
H A Dsystem-header-simulator-cxx.h5 struct pair { struct in namespace:std
9 pair() : first(), second() {} function in struct:std::pair
10 pair(const T1 &a, const T2 &b) : first(a), second(b) {} function in struct:std::pair
13 pair(const pair<U1, U2> &other) : first(other.first), second(other.second) {} argument
/external/openfst/src/include/fst/script/
H A Dreplace.h21 using std::pair; using std::make_pair;
32 typedef args::Package<const vector<pair<int64, const FstClass *> > &,
38 // pair<real label, real fst> that the real Replace will use
39 const vector<pair<int64, const FstClass *> >& untyped_tuples =
42 vector<pair<typename Arc::Label, const Fst<Arc> *> > fst_tuples(
55 void Replace(const vector<pair<int64, const FstClass *> > &tuples,
/external/stlport/test/unit/
H A Dpair_test.cpp28 pair<int, int> p = make_pair(1, 10);
36 pair<int, string> PAIR_ARRAY[] = { pair<int, string>(0, "0") };
/external/webkit/Source/WebCore/platform/network/
H A DHTTPHeaderMap.h40 typedef Vector<std::pair<String, String> > CrossThreadHTTPHeaderMapData;
54 pair<iterator, bool> add(const AtomicString& name, const String& value);
59 pair<iterator, bool> add(const char* name, const String& value);
/external/chromium/chrome/browser/chromeos/
H A Dname_value_pairs_parser.cc35 // Set up the pair tokenizer.
40 std::string pair(pair_toks.token());
41 if (pair.find(eq) == 0) {
42 LOG(WARNING) << "Empty key: '" << pair << "'. Aborting.";
45 StringTokenizer keyvalue(pair, eq);
52 LOG(WARNING) << "Multiple key tokens: '" << pair << "'. Aborting.";
58 LOG(WARNING) << "Invalid token pair: '" << pair << "'. Aborting.";
/external/skia/src/effects/
H A DSkPorterDuff.cpp62 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);
/external/chromium/chrome/browser/extensions/
H A Dextension_tab_id_map.h37 typedef std::pair<int, int> RenderId;
38 typedef std::pair<int, int> TabAndWindowId;

Completed in 513 milliseconds

1234567891011>>