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

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/loader/mac/
H A DDocumentLoaderMac.cpp38 static void scheduleAll(const ResourceLoaderMap& loaders, SchedulePair& pair) argument
43 loader->schedule(pair);
46 static void unscheduleAll(const ResourceLoaderMap& loaders, SchedulePair& pair) argument
51 loader->unschedule(pair);
54 void DocumentLoader::schedule(SchedulePair& pair) argument
57 mainResourceLoader()->schedule(pair);
58 scheduleAll(m_subresourceLoaders, pair);
59 scheduleAll(m_plugInStreamLoaders, pair);
60 scheduleAll(m_multipartSubresourceLoaders, pair);
63 void DocumentLoader::unschedule(SchedulePair& pair) argument
[all...]
/macosx-10.10/swig-12/Lib/csharp/
H A Dstd_pair.i7 * SWIG typemaps for std::pair
14 // std::pair
23 template<class T, class U> struct pair {
25 pair();
26 pair(T t, U u);
27 pair(const pair& p);
29 template <class U1, class U2> pair(const pair<U1, U2> &p);
/macosx-10.10/swig-12/Lib/java/
H A Dstd_pair.i7 * SWIG typemaps for std::pair
14 // std::pair
23 template<class T, class U> struct pair {
25 pair();
26 pair(T first, U second);
27 pair(const pair& p);
29 template <class U1, class U2> pair(const pair<U1, U2> &p);
/macosx-10.10/swig-12/Lib/ocaml/
H A Dstd_pair.i7 * SWIG typemaps for std::pair
14 // std::pair
23 template<class T, class U> struct pair {
25 pair();
26 pair(T first, U second);
27 pair(const pair& p);
29 template <class U1, class U2> pair(const pair<U1, U2> &p);
/macosx-10.10/swig-12/Lib/perl5/
H A Dstd_pair.i7 * SWIG typemaps for std::pair
14 // std::pair
23 template<class T, class U> struct pair {
25 pair();
26 pair(T t, U u);
27 pair(const pair& p);
29 template <class U1, class U2> pair(const pair<U1, U2> &p);
/macosx-10.10/swig-12/Lib/php/
H A Dstd_pair.i7 * SWIG typemaps for std::pair
14 // std::pair
23 template<class T, class U> struct pair {
25 pair();
26 pair(T first, U second);
27 pair(const pair& p);
29 template <class U1, class U2> pair(const pair<U1, U2> &p);
/macosx-10.10/swig-12/Lib/tcl/
H A Dstd_pair.i7 * Typemaps for std::pair
14 // std::pair
23 template<class T, class U> struct pair {
25 pair();
26 pair(T first, U second);
27 pair(const pair& p);
29 template <class U1, class U2> pair(const pair<U1, U2> &p);
/macosx-10.10/swig-12/Lib/lua/
H A Dstd_pair.i7 * std::pair typemaps for LUA
14 A really cut down version of the pair class.
20 %template(IntPair) pair<int, int>;
30 template <class T, class U > struct pair {
34 pair();
35 pair(T first, U second);
36 pair(const pair& p);
43 pair<T,U> make_pair(const T&,const U&);
/macosx-10.10/swig-12/Lib/std/
H A Dstd_pair.i9 template <class T, class U > struct pair {
16 %fragment(SWIG_Traits_frag(std::pair<T,U >), "header",
21 template <> struct traits<std::pair<T,U > > {
24 return "std::pair<" #T "," #U " >";
31 %typemap_traits_ptr(SWIG_TYPECHECK_PAIR, std::pair<T,U >);
33 %typemap_traits(SWIG_TYPECHECK_PAIR, std::pair<T,U >);
36 pair();
37 pair(T first, U second);
38 pair(const pair
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/bits/
H A Dstl_pair.h66 /// pair holds two objects of arbitrary type.
68 struct pair struct
77 // 265. std::pair::pair() effects overly restrictive
80 pair() function in struct:pair
83 /** Two objects may be passed to a @c pair constructor to be copied. */
84 pair(const _T1& __a, const _T2& __b) function in struct:pair
87 /** There is also a templated copy ctor for the @c pair class itself. */
89 pair(const pair<_U argument
96 operator ==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
102 operator <(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
109 operator !=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
115 operator >(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
121 operator <=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
127 operator >=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
[all...]
/macosx-10.10/postfix-255/postfix/src/util/
H A Dstream_connect.c66 int pair[2]; local
85 if (pipe(pair) < 0)
87 if (ioctl(fifo, I_SENDFD, pair[1]) < 0)
89 close(pair[1]);
95 non_blocking(pair[0], NON_BLOCKING);
105 return (pair[0]);
/macosx-10.10/WebCore-7600.1.25/page/mac/
H A DPageMac.cpp41 RefPtr<SchedulePair> pair = prpPair; local
45 m_scheduledRunLoopPairs->add(pair);
50 documentLoader->schedule(*pair);
52 documentLoader->schedule(*pair);
65 RefPtr<SchedulePair> pair = prpPair;
66 m_scheduledRunLoopPairs->remove(pair);
71 documentLoader->unschedule(*pair);
73 documentLoader->unschedule(*pair);
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-run/
H A Duser.hpp43 void drop_privileges(const std::pair< int, int >);
44 std::pair< int, int > get_user_ids(const std::string&);
/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dlib_slkattr.c50 int pair = GetPair(SP->_slk->attr); local
52 result |= COLOR_PAIR(pair);
/macosx-10.10/objc4-646/runtime/
H A Dmaptable.mm75 MapPair *pair = pairs;
76 while (nb--) { pair->key = NX_MAPNOTAKEY; pair->value = NULL; pair++; }
171 MapPair *pair = pairs + index;
172 if (pair->key == NX_MAPNOTAKEY) return NX_MAPNOTAKEY;
173 if (isEqual(table, pair->key, key)) {
174 *value = (void *)pair->value;
175 return (void *)pair->key;
179 pair
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/backward/
H A Dpair.h63 using std::pair;
/macosx-10.10/WebCore-7600.1.25/accessibility/
H A DAccessibilityARIAGridCell.h45 virtual void rowIndexRange(std::pair<unsigned, unsigned>& rowRange) override;
47 virtual void columnIndexRange(std::pair<unsigned, unsigned>& columnRange) override;
/macosx-10.10/swig-12/Lib/guile/
H A Dstd_pair.i7 * SWIG typemaps for std::pair
14 // std::pair
27 template<class T, class U> struct pair {
28 %typemap(in) pair<T,U> (std::pair<T,U>* m) {
43 %typemap(in) const pair<T,U>& (std::pair<T,U> temp,
44 std::pair<T,U>* m),
45 const pair<T,U>* (std::pair<
[all...]
/macosx-10.10/swig-12/Lib/mzscheme/
H A Dstd_pair.i7 * SWIG typemaps for std::pair
15 // std::pair
28 template<class T, class U> struct pair {
29 %typemap(in) pair<T,U> (std::pair<T,U>* m) {
44 %typemap(in) const pair<T,U>& (std::pair<T,U> temp,
45 std::pair<T,U>* m),
46 const pair<T,U>* (std::pair<
[all...]
/macosx-10.10/ncurses-44/ncurses/ncurses/widechar/
H A Dlib_vid_attr.c49 TR(TRACE_ATTRS, ("old pair = %d -- new pair = %d", old_pair, pair)); \
50 if ((pair != old_pair) \
51 || (fix_pair0 && (pair == 0)) \
53 _nc_do_color(old_pair, pair, reverse, outc); \
57 #define set_color(mode, pair) mode &= ALL_BUT_COLOR; mode |= COLOR_PAIR(pair)
60 vid_puts(attr_t newmode, short pair, void *opts GCC_UNUSED, int (*outc) (int)) argument
76 T((T_CALLED("vid_puts(%s,%d)"), _traceattr(newmode), pair));
226 SetPair(SCREEN_ATTRS(SP), pair); local
242 vid_attr(attr_t newmode, short pair, void *opts) argument
[all...]
/macosx-10.10/tcl-105/tcl/tcl/tools/
H A Dmkdepend.tcl112 set pair [split $n "|"]
113 lappend result [list [lindex $pair 0] [lindex $pair 1]]
131 foreach pair $depends {
132 puts $out "[lindex $pair 0] : \\\n\t[join [lindex $pair 1] " \\\n\t"]"
167 foreach pair $depends {
169 set file [lindex $pair 1]
179 lappend filtered $pair
211 # depends Dependency pair lis
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DQuotesData.cpp29 return sizeof(QuotesData) + sizeof(std::pair<String, String>) * count;
32 PassRefPtr<QuotesData> QuotesData::create(const Vector<std::pair<String, String>>& quotes)
38 QuotesData::QuotesData(const Vector<std::pair<String, String>>& quotes)
42 new (NotNull, &m_quotePairs[i]) std::pair<String, String>(quotes[i]);
48 m_quotePairs[i].~pair<String, String>();
H A DQuotesData.h39 static PassRefPtr<QuotesData> create(const Vector<std::pair<String, String>>& quotes);
48 explicit QuotesData(const Vector<std::pair<String, String>>& quotes);
51 std::pair<String, String> m_quotePairs[0];
/macosx-10.10/BerkeleyDB-21/db/test/
H A Denv005.tcl41 foreach pair $rlist {
42 set cmd [lindex $pair 0]
43 set msg [lindex $pair 1]
/macosx-10.10/swig-12/Lib/octave/
H A Dstd_pair.i11 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<
[all...]

Completed in 279 milliseconds

1234567891011>>