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

1234567891011>>

/macosx-10.10.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/libstdcxx-104.1/include/c++/4.2.1/backward/
H A Dpair.h63 using std::pair;
/macosx-10.10.1/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.1/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.1/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.1/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.1/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.1/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.1/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...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DLockFileManager.h16 #include <utility> // for std::pair
47 Optional<std::pair<std::string, int> > Owner;
53 static Optional<std::pair<std::string, int> >
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/CellSPU/
H A DSPUFrameLowering.h27 std::pair<unsigned, int> LR[1];
50 const std::pair<unsigned, int> *
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dcollationfastlatin.cpp108 * Single mini CE or a pair.
445 * Single mini CE or a pair.
931 CollationFastLatin::getSecondaries(uint32_t variableTop, uint32_t pair) { argument
932 if(pair <= 0xffff) {
934 if(pair >= MIN_SHORT) {
935 pair = getSecondariesFromOneShortCE(pair);
936 } else if(pair > variableTop) {
937 pair = COMMON_SEC_PLUS_OFFSET;
938 } else if(pair >
957 getCases(uint32_t variableTop, UBool strengthIsPrimary, uint32_t pair) argument
998 getTertiaries(uint32_t variableTop, UBool withCaseBits, uint32_t pair) argument
1049 getQuaternaries(uint32_t variableTop, uint32_t pair) argument
[all...]
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DHashFunctions.h144 static unsigned hash(const std::pair<T, U>& p)
148 static bool equal(const std::pair<T, U>& a, const std::pair<T, U>& b)
157 static unsigned hash(const std::pair<T, U>& p) { return pairIntHash(p.first, p.second); }
158 static bool equal(const std::pair<T, U>& a, const std::pair<T, U>& b) { return PairHash<T, T>::equal(a, b); }
187 template<> struct DefaultHash<std::pair<short, short>> { typedef IntPairHash<short, short> Hash; };
188 template<> struct DefaultHash<std::pair<short, unsigned short>> { typedef IntPairHash<short, unsigned short> Hash; };
189 template<> struct DefaultHash<std::pair<short, int>> { typedef IntPairHash<short, int> Hash; };
190 template<> struct DefaultHash<std::pair<shor
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/src/
H A Ddll.cpp52 template class ANTLR_API ANTLR_USE_NAMESPACE(std)allocator< ANTLR_USE_NAMESPACE(std)pair< const char*, factory_type_ > >;
53 template struct ANTLR_API ANTLR_USE_NAMESPACE(std)pair< const char*, factory_type_ >; member in namespace:antlr
63 template class ANTLR_API ANTLR_USE_NAMESPACE(std)allocator< ANTLR_USE_NAMESPACE(std)pair< ANTLR_USE_NAMESPACE(std)string, int > >;
64 template class ANTLR_API ANTLR_USE_NAMESPACE(std)allocator< ANTLR_USE_NAMESPACE(std)pair< const ANTLR_USE_NAMESPACE(std)string, int > >;
65 template class ANTLR_API ANTLR_USE_NAMESPACE(std)allocator< ANTLR_USE_NAMESPACE(std)_Tree_nod< ANTLR_USE_NAMESPACE(std)_Tmap_traits< ANTLR_USE_NAMESPACE(std)string, int, CharScannerLiteralsLess, ANTLR_USE_NAMESPACE(std)allocator< ANTLR_USE_NAMESPACE(std)pair< const ANTLR_USE_NAMESPACE(std)string, int > >, false > >::_Node >;
66 template class ANTLR_API ANTLR_USE_NAMESPACE(std)allocator< ANTLR_USE_NAMESPACE(std)_Tree_ptr< ANTLR_USE_NAMESPACE(std)_Tmap_traits< ANTLR_USE_NAMESPACE(std)string, int, CharScannerLiteralsLess, ANTLR_USE_NAMESPACE(std)allocator< ANTLR_USE_NAMESPACE(std)pair< const ANTLR_USE_NAMESPACE(std)string, int > >, false > >::_Nodeptr >;
67 template struct ANTLR_API ANTLR_USE_NAMESPACE(std)pair< ANTLR_USE_NAMESPACE(std)string, int >; member in namespace:antlr
68 template class ANTLR_API ANTLR_USE_NAMESPACE(std)_Tmap_traits< ANTLR_USE_NAMESPACE(std)string, int, CharScannerLiteralsLess, ANTLR_USE_NAMESPACE(std)allocator< ANTLR_USE_NAMESPACE(std)pair< const ANTLR_USE_NAMESPACE(std)string, int > >,false >;
69 template class ANTLR_API ANTLR_USE_NAMESPACE(std)_Tree_nod< ANTLR_USE_NAMESPACE(std)_Tmap_traits< ANTLR_USE_NAMESPACE(std)string, int, CharScannerLiteralsLess, ANTLR_USE_NAMESPACE(std)allocator< ANTLR_USE_NAMESPACE(std)pair< const ANTLR_USE_NAMESPACE(std)string, int > >,false > >;
70 template class ANTLR_API ANTLR_USE_NAMESPACE(std)_Tree_ptr< ANTLR_USE_NAMESPACE(std)_Tmap_traits< ANTLR_USE_NAMESPACE(std)string, int, CharScannerLiteralsLess, ANTLR_USE_NAMESPACE(std)allocator< ANTLR_USE_NAMESPACE(std)pair< cons
107 template struct ANTLR_API ANTLR_USE_NAMESPACE(std)pair< ANTLR_USE_NAMESPACE(std)string, TokenStream* >; member in namespace:antlr
[all...]

Completed in 167 milliseconds

1234567891011>>