HomeSort by relevance Sort by last modified time
    Searched defs:second (Results 101 - 125 of 1665) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_pair.h 56 _T2 second; member in struct:pair
60 pair() : first(_T1()), second(_T2()) {}
62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
66 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {}
73 second(_STLP_PRIV _AsMoveSource(src.get().second))
82 { return __x.first == __y.first && __x.second == __y.second;
    [all...]
  /prebuilts/ndk/r11/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...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
iterator.h 69 ++_Base::second; member in class:__gnu_parallel::_IteratorPair::_Base
76 { return _IteratorPair(_Base::first++, _Base::second++); }
83 --_Base::second;
90 { return _IteratorPair(_Base::first--, _Base::second--); }
94 { return _Base::second; }
100 _Base::second = __other.second; member in class:__gnu_parallel::_IteratorPair::_Base
106 { return _IteratorPair(_Base::first + __delta, _Base::second + __delta);
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_pair.h 56 _T2 second; member in struct:pair
60 pair() : first(_T1()), second(_T2()) {}
62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
66 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {}
73 second(_STLP_PRIV _AsMoveSource(src.get().second))
82 { return __x.first == __y.first && __x.second == __y.second;
    [all...]
  /prebuilts/ndk/r13/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...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
iterator.h 69 ++_Base::second; member in class:__gnu_parallel::_IteratorPair::_Base
76 { return _IteratorPair(_Base::first++, _Base::second++); }
83 --_Base::second;
90 { return _IteratorPair(_Base::first--, _Base::second--); }
94 { return _Base::second; }
100 _Base::second = __other.second; member in class:__gnu_parallel::_IteratorPair::_Base
106 { return _IteratorPair(_Base::first + __delta, _Base::second + __delta);
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_pair.h 56 _T2 second; member in struct:pair
60 pair() : first(_T1()), second(_T2()) {}
62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
66 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {}
73 second(_STLP_PRIV _AsMoveSource(src.get().second))
82 { return __x.first == __y.first && __x.second == __y.second;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_generators.py 1188 # Generate the second moves.
1189 def second(): function in function:Knights.__init__
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_generators.py 1188 # Generate the second moves.
1189 def second(): function in function:Knights.__init__
    [all...]
  /system/extras/tests/sdcard/
stopwatch.cpp 136 long second = mData[i * 2].mTime.tv_sec - mStart.tv_sec; local
139 SNPRINTF_OR_RETURN(*str, *size, "%f %f\n", double(second) + double(nano) / 1.0e9, mDeltas[i]);
172 long second = mData[i + 1].mTime.tv_sec - mData[i].mTime.tv_sec; local
175 mDeltas[i / 2] = double(second) + double(nano) / 1.0e9;
  /art/runtime/
utf.cc 180 const uint16_t second = GetTrailingUtf16Char(pair); local
181 if (second != 0) {
182 hash = hash * 31 + second;
  /art/test/098-ddmc/src/
Main.java 80 Allocations second = new Allocations(DdmVmInternal.getRecentAllocations()); local
81 System.out.println("second > first =" + (second.numberOfEntries > first.numberOfEntries));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_win.c 33 int first, second; local
37 second = tolower(*string2);
40 } while (first && first == second);
42 return (first - second);
98 (in the second table entry). Based on the header type, we
124 /* We have at least 2 tables - the import table is the second
  /external/apache-http/android/src/android/net/http/
LegacyHttpDateTime.java 77 this.second = s;
82 int second; field in class:LegacyHttpDateTime.TimeOfDay
119 time.set(timeOfDay.second, timeOfDay.minute, timeOfDay.hour, date,
220 int second = (timeString.charAt(i++) - '0') * 10 local
223 return new TimeOfDay(hour, minute, second);
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 24 vector_int_pair(const VectorType &v, int i) : first(v), second(i) {}
27 int second; member in struct:Eigen::internal::vector_int_pair
124 objects[i] = tmp[objCenters[i].second];
146 if(children[idx + 1] < numBoxes) { //second index is always bigger
155 } else { //if the first child is a volume and the second is an object
187 boxes.push_back(objBoxes[objCenters[from].second].merged(objBoxes[objCenters[from + 1].second]));
197 boxes.push_back(boxes[idx1].merged(objBoxes[objCenters[mid].second]));
  /external/google-breakpad/src/client/
minidump_file_writer_unittest.cc 82 const wchar_t *second = L"Second String"; local
83 ASSERT_TRUE(writer.WriteString(second, 0, &strings.get()->second_string));
  /external/guava/guava/src/com/google/common/collect/
Lists.java 337 * Returns an unmodifiable list containing the specified first and second
349 * @param second the second element
354 @Nullable E first, @Nullable E second, E[] rest) {
355 return new TwoPlusArrayList<E>(first, second, rest);
362 final E second; field in class:Lists.TwoPlusArrayList
365 TwoPlusArrayList(@Nullable E first, @Nullable E second, E[] rest) {
367 this.second = second;
378 return second;
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Lists.java 303 * Returns an unmodifiable list containing the specified first and second
315 * @param second the second element
320 @Nullable E first, @Nullable E second, E[] rest) {
321 return new TwoPlusArrayList<E>(first, second, rest);
328 final E second; field in class:Lists.TwoPlusArrayList
331 TwoPlusArrayList(@Nullable E first, @Nullable E second, E[] rest) {
333 this.second = second;
344 return second;
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-arabic-table.hh 373 uint16_t second; member in struct:ligature_set_t::ligature_pairs_t
  /external/ltp/testcases/realtime/func/sched_jitter/
sched_jitter.c 86 unsigned long long first, second; local
89 second = (unsigned long long)b.tv_sec * NSEC_PER_SEC + b.tv_nsec;
90 return first - second;
  /external/mockito/src/test/java/org/mockito/internal/verification/checkers/
NumberOfInvocationsCheckerTest.java 91 Invocation second = buildSimpleMethod().toInvocation(); local
94 invocations = asList(first, second, third);
105 Invocation second = buildSimpleMethod().toInvocation(); local
107 invocations = asList(first, second);
NumberOfInvocationsInOrderCheckerTest.java 66 Invocation second = buildSimpleMethod().toInvocation(); local
69 invocations = asList(first, second);
136 Invocation second = buildSimpleMethod().toInvocation(); local
139 invocations = asList(first, second, third);
150 Invocation second = buildSimpleMethod().toInvocation(); local
152 invocations = asList(first, second);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
consuming_buffers.hpp 185 typename Buffers::const_iterator second = other.begin_remainder_; local
186 std::advance(begin_remainder_, std::distance(first, second));
197 typename Buffers::const_iterator second = other.begin_remainder_; local
198 std::advance(begin_remainder_, std::distance(first, second));
  /external/skia/src/pathops/
SkPathOpsCubic.h 167 const SkDCubic second() const { function in struct:SkDCubicPair
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
CompactConstructorExampleTest.java 166 Row second = iter.next(); local
167 assertEquals("id222", second.getId());
169 second.getDescription());
170 assertEquals(0.333, second.getRatio(), 0.000000001);
171 assertEquals(17, second.getSize());

Completed in 1103 milliseconds

1 2 3 45 6 7 8 91011>>