HomeSort by relevance Sort by last modified time
    Searched refs:second (Results 201 - 225 of 3303) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 50 _GLIBCXX_DEBUG_ASSERT(p_e->m_hash == pos_hash_pair.second);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 50 _GLIBCXX_DEBUG_ASSERT(p_e->m_hash == pos_hash_pair.second);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 50 _GLIBCXX_DEBUG_ASSERT(p_e->m_hash == pos_hash_pair.second);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 50 _GLIBCXX_DEBUG_ASSERT(p_e->m_hash == pos_hash_pair.second);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 50 _GLIBCXX_DEBUG_ASSERT(p_e->m_hash == pos_hash_pair.second);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 50 _GLIBCXX_DEBUG_ASSERT(p_e->m_hash == pos_hash_pair.second);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 50 _GLIBCXX_DEBUG_ASSERT(p_e->m_hash == pos_hash_pair.second);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 50 _GLIBCXX_DEBUG_ASSERT(p_e->m_hash == pos_hash_pair.second);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/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 101 // second, is later than the time pointed to by first.
103 const struct timespec *second)
108 assert(second != NULL);
110 assert(second->tv_nsec >= 0 && second->tv_nsec < nSecsPerSec);
111 rv.tv_sec = second->tv_sec - first->tv_sec;
112 if (second->tv_nsec >= first->tv_nsec) {
113 rv.tv_nsec = second->tv_nsec - first->tv_nsec;
115 rv.tv_nsec = (second->tv_nsec + nSecsPerSec) - first->tv_nsec;
124 // second, is later than the time pointed to by first
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
BloomFilter.h 86 uint8_t& second = secondSlot(hash); local
89 if (LIKELY(second < maximumCount()))
90 ++second;
97 uint8_t& second = secondSlot(hash); local
99 ASSERT(second);
103 if (LIKELY(second < maximumCount()))
104 --second;
  /external/webrtc/src/system_wrappers/source/
map.cc 79 return it->second;
89 return it->second;
106 return it->second;
124 return it->second;
134 return it->second;
148 delete it->second;
160 delete it->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++/test/containers/associative/map/map.modifiers/
emplace_hint.pass.cpp 35 assert(m.begin()->second == DefaultOnly());
41 assert(next(m.begin())->second == DefaultOnly());
47 assert(next(m.begin())->second == DefaultOnly());
59 assert(m.begin()->second == Emplaceable());
66 assert(m.begin()->second == Emplaceable(2, 3.5));
73 assert(m.begin()->second == Emplaceable(2, 3.5));
83 assert(m.begin()->second == 3.5);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/multimap/multimap.modifiers/
emplace.pass.cpp 35 assert(m.begin()->second == DefaultOnly());
41 assert(next(m.begin())->second == DefaultOnly());
47 assert(next(m.begin(), 2)->second == DefaultOnly());
59 assert(m.begin()->second == Emplaceable());
65 assert(m.begin()->second == Emplaceable(2, 3.5));
71 assert(r->second == Emplaceable(3, 3.5));
81 assert(m.begin()->second == 3.5);
emplace_hint.pass.cpp 35 assert(m.begin()->second == DefaultOnly());
41 assert(next(m.begin())->second == DefaultOnly());
47 assert(next(m.begin(), 2)->second == DefaultOnly());
59 assert(m.begin()->second == Emplaceable());
66 assert(m.begin()->second == Emplaceable(2, 3.5));
73 assert(r->second == Emplaceable(3, 3.5));
83 assert(m.begin()->second == 3.5);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
SignatureSpi.java 259 byte[] second = makeUnsigned(s);
262 if (first.length > second.length)
268 res = new byte[second.length * 2];
272 System.arraycopy(second, 0, res, res.length - second.length, second.length);
301 byte[] second = new byte[encoding.length / 2];
304 System.arraycopy(encoding, first.length, second, 0, second.length);
307 sig[1] = new BigInteger(1, second);
    [all...]
  /external/llvm/include/llvm/ADT/
MapVector.h 80 unsigned &I = Result.first->second;
81 if (Result.second) {
85 return Vector[I].second;
90 return Pos == Map.end()? ValueT() : Vector[Pos->second].second;
96 unsigned &I = Result.first->second;
97 if (Result.second) {
98 Vector.push_back(std::make_pair(KV.first, KV.second));
113 (Vector.begin() + Pos->second);
119 (Vector.begin() + Pos->second);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.multimap/unord.multimap.cnstr/
move.pass.cpp 93 assert(std::distance(eq.first, eq.second) == 2);
96 assert(i->second == "one");
99 assert(i->second == "four");
101 assert(std::distance(eq.first, eq.second) == 2);
104 assert(i->second == "two");
107 assert(i->second == "four");
110 assert(std::distance(eq.first, eq.second) == 1);
113 assert(i->second == "three");
115 assert(std::distance(eq.first, eq.second) == 1);
118 assert(i->second == "four")
    [all...]
  /external/ceres-solver/internal/ceres/
map_util.h 62 return it->second;
77 return it->second;
91 return ret.second;
105 return &it->second;
123 CHECK(collection->insert(value_type(key, data)).second)
  /external/chromium/chrome/common/extensions/
extension_set.cc 49 if (i->second->web_extent().ContainsURL(url))
50 return i->second.get();
64 return i->second.get();
75 if (i->second->location() == Extension::COMPONENT &&
76 i->second->web_extent().ContainsURL(url))
  /external/llvm/include/llvm/Analysis/
ProfileDataLoader.h 61 assert(((!e.first) || (e.first->getParent() == e.second->getParent()))
63 assert(e.second && "A ProfileData::Edge must have a real sink");
64 return e.second->getParent();
78 EdgeWeights weights = EdgeInformation.find(f)->second;
82 return weights.find(e)->second;
  /external/webkit/Source/WebCore/css/
CSSImageGeneratorValue.cpp 57 SizeCountPair& sizeCount = it->second;
58 ++sizeCount.second;
67 SizeCountPair& sizeCount = it->second;
75 if (!--sizeCount.second)
86 SizeCountPair& sizeCount = it->second;
  /external/webkit/Source/WebCore/page/
PageGroup.cpp 96 if (result.second) {
97 ASSERT(!result.first->second);
98 result.first->second = new PageGroup(groupName);
101 ASSERT(result.first->second);
102 return result.first->second;
114 if (it->second->hasLocalStorage())
115 it->second->localStorage()->close();
129 if (it->second->hasLocalStorage())
130 it->second->localStorage()->clearAllOriginsForDeletion();
141 if (it->second->hasLocalStorage()
    [all...]
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 363 * <code>second</code>.
365 private boolean equalsAccessiblityEvent(AccessibilityEvent first, AccessibilityEvent second) {
366 return first.getEventType() == second.getEventType()
367 && first.isChecked() == second.isChecked()
368 && first.getCurrentItemIndex() == second.getCurrentItemIndex()
369 && first.isEnabled() == second.isEnabled()
370 && first.getFromIndex() == second.getFromIndex()
371 && first.isFullScreen() == second.isFullScreen()
372 && first.getItemCount() == second.getItemCount()
373 && first.isPassword() == second.isPassword(
    [all...]

Completed in 1220 milliseconds

1 2 3 4 5 6 7 891011>>