/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/ |
stl_pair.h | 93 * @tparam _T2 Type of second object. 99 typedef _T2 second_type; /// @c second_type is the second bound type 102 _T2 second; /// @c second is a copy of the second object member in struct:pair 106 /** The default constructor creates @c first and @c second using their 109 : first(), second() { } 113 : first(__a), second(__b) { } 119 : first(__p.first), second(__p.second) { } [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/ |
stl_pair.h | 93 * @tparam _T2 Type of second object. 99 typedef _T2 second_type; /// @c second_type is the second bound type 102 _T2 second; /// @c second is a copy of the second object member in struct:pair 106 /** The default constructor creates @c first and @c second using their 109 : first(), second() { } 113 : first(__a), second(__b) { } 119 : first(__p.first), second(__p.second) { } [all...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
stl_pair.h | 93 * @tparam _T2 Type of second object. 99 typedef _T2 second_type; /// @c second_type is the second bound type 102 _T2 second; /// @c second is a copy of the second object member in struct:pair 106 /** The default constructor creates @c first and @c second using their 109 : first(), second() { } 113 : first(__a), second(__b) { } 119 : first(__p.first), second(__p.second) { } [all...] |
/bionic/libstdc++/include/ |
stl_pair.h | 69 _T2 second; member in struct:pair 70 pair() : first(), second() {} 71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} 74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} 80 return __x.first == __y.first && __x.second == __y.second; 87 (!(__y.first < __x.first) && __x.second < __y.second);
|
/external/llvm/lib/Transforms/Instrumentation/ |
MaximumSpanningTree.h | 47 if (X.second > Y.second) return true; 48 if (X.second < Y.second) return false; 56 size_t XSizeB = getBlockSize(X.first.second); 57 size_t YSizeB = getBlockSize(Y.first.second); 83 Forest.insert(e.second); 91 if (Forest.findLeader(e.first) != Forest.findLeader(e.second)) { 92 Forest.unionSets(e.first, e.second);
|
/libcore/ojluni/src/main/java/java/sql/ |
Time.java | 42 * given values for the hour, minute, and second. 52 * @param second 0 to 59 58 public Time(int hour, int minute, int second) { 59 super(70, 0, 1, hour, minute, second); 93 int second; local 106 second = Integer.parseInt(s.substring(secondColon+1)); 111 return new Time(hour, minute, second); 122 int second = super.getSeconds(); local 137 if (second < 10) { 138 secondString = "0" + second; [all...] |
/ndk/sources/cxx-stl/gabi++/include/ |
stl_pair.h | 77 _T2 second; member in struct:pair 78 pair() : first(), second() {} 79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} 82 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} 88 return __x.first == __y.first && __x.second == __y.second; 95 (!(__y.first < __x.first) && __x.second < __y.second);
|
/ndk/sources/cxx-stl/system/include/ |
stl_pair.h | 77 _T2 second; member in struct:pair 78 pair() : first(), second() {} 79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} 82 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} 88 return __x.first == __y.first && __x.second == __y.second; 95 (!(__y.first < __x.first) && __x.second < __y.second);
|
/prebuilts/ndk/current/sources/cxx-stl/gabi++/include/ |
stl_pair.h | 69 _T2 second; member in struct:pair 70 pair() : first(), second() {} 71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} 74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} 80 return __x.first == __y.first && __x.second == __y.second; 87 (!(__y.first < __x.first) && __x.second < __y.second);
|
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/gabi++/include/ |
stl_pair.h | 77 _T2 second; member in struct:pair 78 pair() : first(), second() {} 79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} 82 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} 88 return __x.first == __y.first && __x.second == __y.second; 95 (!(__y.first < __x.first) && __x.second < __y.second);
|
/prebuilts/ndk/current/sources/cxx-stl/system/include/ |
stl_pair.h | 77 _T2 second; member in struct:pair 78 pair() : first(), second() {} 79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} 82 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} 88 return __x.first == __y.first && __x.second == __y.second; 95 (!(__y.first < __x.first) && __x.second < __y.second);
|
/external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/ |
emplace.pass.cpp | 34 assert(r.second); 37 assert(r.first->second == Emplaceable()); 40 assert(r.second); 43 assert(r.first->second == Emplaceable(5, 6)); 47 assert(r.second); 50 assert(r.first->second == Emplaceable(6, 7)); 60 assert(r.second); 63 assert(r.first->second == Emplaceable()); 66 assert(r.second); 69 assert(r.first->second == Emplaceable(5, 6)) [all...] |
/external/libcxx/test/std/containers/unord/unord.multimap/ |
equal_range_const.pass.cpp | 45 assert(std::distance(r.first, r.second) == 1); 47 assert(r.first->second == "thirty"); 49 assert(std::distance(r.first, r.second) == 0); 52 assert(r.first->second == "fifty"); 55 assert(r.first->second == "fiftyA"); 58 assert(r.first->second == "fiftyB"); 81 assert(std::distance(r.first, r.second) == 1); 83 assert(r.first->second == "thirty"); 85 assert(std::distance(r.first, r.second) == 0); 88 assert(r.first->second == "fifty") [all...] |
equal_range_non_const.pass.cpp | 45 assert(std::distance(r.first, r.second) == 1); 47 assert(r.first->second == "thirty"); 49 assert(std::distance(r.first, r.second) == 0); 52 assert(r.first->second == "fifty"); 55 assert(r.first->second == "fiftyA"); 58 assert(r.first->second == "fiftyB"); 81 assert(std::distance(r.first, r.second) == 1); 83 assert(r.first->second == "thirty"); 85 assert(std::distance(r.first, r.second) == 0); 88 assert(r.first->second == "fifty") [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unorder.map.modifiers/ |
emplace.pass.cpp | 34 assert(r.second); 37 assert(r.first->second == Emplaceable()); 40 assert(r.second); 43 assert(r.first->second == Emplaceable(5, 6)); 47 assert(r.second); 50 assert(r.first->second == Emplaceable(6, 7)); 60 assert(r.second); 63 assert(r.first->second == Emplaceable()); 66 assert(r.second); 69 assert(r.first->second == Emplaceable(5, 6)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/ |
equal_range_const.pass.cpp | 45 assert(std::distance(r.first, r.second) == 1); 47 assert(r.first->second == "thirty"); 49 assert(std::distance(r.first, r.second) == 0); 52 assert(r.first->second == "fifty"); 55 assert(r.first->second == "fiftyA"); 58 assert(r.first->second == "fiftyB"); 81 assert(std::distance(r.first, r.second) == 1); 83 assert(r.first->second == "thirty"); 85 assert(std::distance(r.first, r.second) == 0); 88 assert(r.first->second == "fifty") [all...] |
equal_range_non_const.pass.cpp | 45 assert(std::distance(r.first, r.second) == 1); 47 assert(r.first->second == "thirty"); 49 assert(std::distance(r.first, r.second) == 0); 52 assert(r.first->second == "fifty"); 55 assert(r.first->second == "fiftyA"); 58 assert(r.first->second == "fiftyB"); 81 assert(std::distance(r.first, r.second) == 1); 83 assert(r.first->second == "thirty"); 85 assert(std::distance(r.first, r.second) == 0); 88 assert(r.first->second == "fifty") [all...] |
/external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/ |
erase_range.pass.cpp | 46 assert(std::distance(eq.first, eq.second) == 2); 49 assert(k->second == "one"); 52 assert(k->second == "four"); 54 assert(std::distance(eq.first, eq.second) == 2); 57 assert(k->second == "two"); 60 assert(k->second == "four"); 62 assert(std::distance(eq.first, eq.second) == 1); 65 assert(k->second == "three"); 67 assert(std::distance(eq.first, eq.second) == 1); 70 assert(k->second == "four") [all...] |
insert_rvalue.pass.cpp | 36 assert(r->second == 3); 41 assert(r->second == 4); 46 assert(r->second == 4); 51 assert(r->second == 4); 62 assert(r->second == 3); 67 assert(r->second == 4); 72 assert(r->second == 4); 77 assert(r->second == 4); 90 assert(r->second == 3); 95 assert(r->second == 4) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.modifiers/ |
erase_range.pass.cpp | 46 assert(std::distance(eq.first, eq.second) == 2); 49 assert(k->second == "one"); 52 assert(k->second == "four"); 54 assert(std::distance(eq.first, eq.second) == 2); 57 assert(k->second == "two"); 60 assert(k->second == "four"); 62 assert(std::distance(eq.first, eq.second) == 1); 65 assert(k->second == "three"); 67 assert(std::distance(eq.first, eq.second) == 1); 70 assert(k->second == "four") [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.ops/ |
equal_range.pass.cpp | 44 assert(r.second == next(m.begin(), 1)); 47 assert(r.second == next(m.begin(), 2)); 50 assert(r.second == next(m.begin(), 3)); 53 assert(r.second == next(m.begin(), 4)); 56 assert(r.second == next(m.begin(), 5)); 59 assert(r.second == next(m.begin(), 6)); 62 assert(r.second == next(m.begin(), 7)); 65 assert(r.second == next(m.begin(), 8)); 68 assert(r.second == next(m.begin(), 0)); 71 assert(r.second == next(m.begin(), 1)) [all...] |
/build/kati/ |
file_cache.cc | 41 delete p.second; 48 if (p.second) { 49 p.first->second = result = new Makefile(filename); 51 result = p.first->second;
|
/external/libcxx/test/std/containers/associative/map/map.modifiers/ |
insert_cv.pass.cpp | 28 assert(r.second); 32 assert(r.first->second == 2.5); 35 assert(r.second); 39 assert(r.first->second == 1.5); 42 assert(r.second); 46 assert(r.first->second == 3.5); 49 assert(!r.second); 53 assert(r.first->second == 3.5); 61 assert(r.second); 65 assert(r.first->second == 2.5) [all...] |
insert_rv.pass.cpp | 31 assert(r.second); 35 assert(r.first->second == 2); 38 assert(r.second); 42 assert(r.first->second == 1); 45 assert(r.second); 49 assert(r.first->second == 3); 52 assert(!r.second); 56 assert(r.first->second == 3); 64 assert(r.second); 68 assert(r.first->second == 2) [all...] |
/external/libcxx/test/std/containers/unord/unord.set/ |
insert_rvalue.pass.cpp | 34 assert(r.second); 39 assert(!r.second); 44 assert(r.second); 49 assert(r.second); 60 assert(r.second); 65 assert(!r.second); 70 assert(r.second); 75 assert(r.second); 88 assert(r.second); 93 assert(!r.second); [all...] |