/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/ |
assign_rv_pair.pass.cpp | 29 assert(p2.second == 4);
|
const_first_const_second.pass.cpp | 45 assert(p.second == nullptr); 51 assert(p.second == 2); 59 static_assert(p.second == nullptr, ""); 65 static_assert(p.second == 2, "");
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/ |
debug_store_hash_fn_imps.hpp | 51 PB_DS_DEBUG_VERIFY(p_e->m_hash == pos_hash_pair.second);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/ |
debug_store_hash_fn_imps.hpp | 51 PB_DS_DEBUG_VERIFY(p_e->m_hash == pos_hash_pair.second);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/ |
debug_store_hash_fn_imps.hpp | 51 PB_DS_DEBUG_VERIFY(p_e->m_hash == pos_hash_pair.second);
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/cc_hash_table_map_/ |
debug_store_hash_fn_imps.hpp | 51 PB_DS_DEBUG_VERIFY(p_e->m_hash == pos_hash_pair.second);
|
/system/extras/tests/lib/testUtil/ |
testUtil.c | 102 // second, is later than the time pointed to by first. 104 const struct timespec *second) 109 assert(second != NULL); 111 assert(second->tv_nsec >= 0 && second->tv_nsec < nSecsPerSec); 112 rv.tv_sec = second->tv_sec - first->tv_sec; 113 if (second->tv_nsec >= first->tv_nsec) { 114 rv.tv_nsec = second->tv_nsec - first->tv_nsec; 116 rv.tv_nsec = (second->tv_nsec + nSecsPerSec) - first->tv_nsec; 125 // second, is later than the time pointed to by first [all...] |
/external/libcxx/test/std/containers/associative/set/ |
emplace.pass.cpp | 33 assert(r.second); 40 assert(!r.second); 52 assert(r.second); 57 assert(r.second); 62 assert(!r.second); 72 assert(r.second); 83 assert(r.second);
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
reactor_op_queue.hpp | 61 entry.first->second.push(op); 62 return entry.second; 76 while (reactor_op* op = i->second.front()) 79 i->second.pop(); 119 while (reactor_op* op = i->second.front()) 123 i->second.pop(); 150 ops.push(op_iter->second);
|
/hardware/intel/common/libmix/mix_audio/src/ |
mixacpmp3.c | 28 gboolean mix_acp_mp3_equal(MixParams* first, MixParams *second); 137 * @second: seond object to compare 142 gboolean mix_acp_mp3_equal(MixParams* first, MixParams *second) 146 if (first && second) 148 if (first == second) return TRUE; 158 ret = klass->equal(first, second); 162 if (ret && MIX_IS_AUDIOCONFIGPARAMSMP3(first) && MIX_IS_AUDIOCONFIGPARAMSMP3(second)) 165 MixAudioConfigParamsMP3 *acp2 = MIX_AUDIOCONFIGPARAMSMP3(second);
|
/libcore/luni/src/main/java/javax/xml/datatype/ |
XMLGregorianCalendar.java | 105 * For a value of 24, the minute and second field must be zero per 115 * <a name="datetimefield-second"/> 117 * <td>second</td> 124 * <i>(Note: 60 only allowable for leap second.)</i><br/> 201 * int second, 210 * int second, 318 * @param second value constraints are summarized in 319 * <a href="#datetimefield-second">second field of date/time field mapping table</a>. 327 public void setTime(int hour, int minute, int second) { [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/ |
emplace.pass.cpp | 33 assert(r.second); 40 assert(!r.second); 52 assert(r.second); 57 assert(r.second); 62 assert(!r.second); 72 assert(r.second); 83 assert(r.second);
|
/build/kati/ |
var.cc | 113 delete p.second; 125 Var* v = found->second; 135 if (!p.second) { 136 Var* orig = p.first->second; 145 delete p.first->second; 146 p.first->second = v; 156 if (!p.second) { 157 orig_ = iter_->second; 158 iter_->second = var; 164 iter_->second = orig_ [all...] |
/external/libchrome/base/trace_event/ |
trace_event_memory_overhead.cc | 38 it->second.count += count; 39 it->second.allocated_size_in_bytes += allocated_size_in_bytes; 40 it->second.resident_size_in_bytes += resident_size_in_bytes; 129 return it->second.count; 134 AddOrCreateInternal(it.first, it.second.count, 135 it.second.allocated_size_in_bytes, 136 it.second.resident_size_in_bytes); 147 it.second.allocated_size_in_bytes); 149 it.second.resident_size_in_bytes); 151 MemoryAllocatorDump::kUnitsObjects, it.second.count) [all...] |
/external/libcxx/test/std/containers/unord/unord.multimap/ |
rehash.pass.cpp | 31 assert(std::distance(eq.first, eq.second) == 2); 34 assert(i->second == "one"); 37 assert(i->second == "four"); 39 assert(std::distance(eq.first, eq.second) == 2); 42 assert(i->second == "two"); 45 assert(i->second == "four"); 48 assert(std::distance(eq.first, eq.second) == 1); 51 assert(i->second == "three"); 53 assert(std::distance(eq.first, eq.second) == 1); 56 assert(i->second == "four") [all...] |
/external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/ |
emplace_hint.pass.cpp | 41 assert(r->second == Emplaceable()); 46 assert(r->second == Emplaceable(5, 6)); 53 assert(r->second == Emplaceable(6, 7)); 57 assert(r->second == Emplaceable()); 60 assert(r->second == Emplaceable(5, 6)); 73 assert(r->second == Emplaceable()); 78 assert(r->second == Emplaceable(5, 6)); 85 assert(r->second == Emplaceable(6, 7)); 89 assert(r->second == Emplaceable()); 92 assert(r->second == Emplaceable(5, 6)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/ |
rehash.pass.cpp | 31 assert(std::distance(eq.first, eq.second) == 2); 34 assert(i->second == "one"); 37 assert(i->second == "four"); 39 assert(std::distance(eq.first, eq.second) == 2); 42 assert(i->second == "two"); 45 assert(i->second == "four"); 48 assert(std::distance(eq.first, eq.second) == 1); 51 assert(i->second == "three"); 53 assert(std::distance(eq.first, eq.second) == 1); 56 assert(i->second == "four") [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.modifiers/ |
emplace_hint.pass.cpp | 41 assert(r->second == Emplaceable()); 46 assert(r->second == Emplaceable(5, 6)); 53 assert(r->second == Emplaceable(6, 7)); 57 assert(r->second == Emplaceable()); 60 assert(r->second == Emplaceable(5, 6)); 73 assert(r->second == Emplaceable()); 78 assert(r->second == Emplaceable(5, 6)); 85 assert(r->second == Emplaceable(6, 7)); 89 assert(r->second == Emplaceable()); 92 assert(r->second == Emplaceable(5, 6)) [all...] |
/external/ceres-solver/internal/ceres/ |
map_util.h | 63 return it->second; 78 return it->second; 92 return ret.second; 106 return &it->second; 124 CHECK(collection->insert(value_type(key, data)).second)
|
/external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.cnstr/ |
move.pass.cpp | 94 assert(std::distance(eq.first, eq.second) == 2); 97 assert(i->second == "one"); 100 assert(i->second == "four"); 102 assert(std::distance(eq.first, eq.second) == 2); 105 assert(i->second == "two"); 108 assert(i->second == "four"); 111 assert(std::distance(eq.first, eq.second) == 1); 114 assert(i->second == "three"); 116 assert(std::distance(eq.first, eq.second) == 1); 119 assert(i->second == "four") [all...] |
/external/webrtc/webrtc/base/ |
linuxfdwalk_unittest.cc | 31 EXPECT_TRUE(fds->insert(fd).second); 66 EXPECT_TRUE(fds.insert(fd1).second); 67 EXPECT_TRUE(fds.insert(fd2).second); 68 EXPECT_TRUE(fds.insert(fd3).second); 69 EXPECT_TRUE(fds.insert(fd4).second);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.cnstr/ |
move.pass.cpp | 94 assert(std::distance(eq.first, eq.second) == 2); 97 assert(i->second == "one"); 100 assert(i->second == "four"); 102 assert(std::distance(eq.first, eq.second) == 2); 105 assert(i->second == "two"); 108 assert(i->second == "four"); 111 assert(std::distance(eq.first, eq.second) == 1); 114 assert(i->second == "three"); 116 assert(std::distance(eq.first, eq.second) == 1); 119 assert(i->second == "four") [all...] |
/packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/ |
arguments_and_options.h | 48 return it->second; 53 return it != mArguments.end() && !it->second.empty(); 58 ASSERT(it != mArguments.end() && !it->second.empty()); 59 return it->second.front(); 65 return it->second;
|
/prebuilts/misc/common/swig/include/2.0.11/ruby/ |
std_pair.i | 15 static int get_pair(VALUE first, VALUE second, 22 U *psecond = &(val->second); 23 int res2 = swig::asval((VALUE)second, psecond); 31 int res2 = swig::asval((VALUE)second, psecond); 42 VALUE second = rb_ary_entry(obj,1); 43 res = get_pair(first, second, val); 59 static int get_pair(VALUE first, VALUE second, 67 U *psecond = &(vp->second); 68 int res2 = swig::asval((VALUE)second, psecond); 77 int res2 = swig::asval((VALUE)second, psecond) [all...] |
/external/libbrillo/brillo/dbus/ |
exported_property_set.cc | 46 CHECK(res.second) << "Property '" << property_name << "' already exists"; 68 for (const auto& kv : property_map_itr->second) 69 properties.insert(std::make_pair(kv.first, kv.second->GetValue())); 93 auto property_itr = property_map_itr->second.find(property_name); 94 if (property_itr == property_map_itr->second.end()) { 100 *result = property_itr->second->GetValue(); 117 auto property_itr = property_map_itr->second.find(property_name); 118 if (property_itr == property_map_itr->second.end()) { 125 return property_itr->second->SetValue(error, value);
|