Searched refs:end (Results 226 - 250 of 11073) sorted by relevance

1234567891011>>

/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DDateRule.java47 * end date.
50 * @param end Only occurrances before this date are returned.
53 * does not occur between the start and end dates.
58 abstract public Date firstBetween(Date start, Date end); argument
78 abstract public boolean isBetween(Date start, Date end); argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DDateRule.java47 * end date.
50 * @param end Only occurrances before this date are returned.
53 * does not occur between the start and end dates.
59 abstract public Date firstBetween(Date start, Date end); argument
81 abstract public boolean isBetween(Date start, Date end); argument
/external/libcxx/test/libcxx/algorithms/alg.modifying.operations/alg.random.shuffle/
H A Drandom_shuffle.cxx1z.pass.cpp44 std::random_shuffle(v.begin(), v.end());
46 std::random_shuffle(v.begin(), v.end(), r);
/external/libcxx/test/std/containers/associative/map/map.ops/
H A Dfind0.pass.cpp34 assert(example.find(C2Int{5}) == example.end());
39 assert(example.find(C2Int{5}) == example.end());
H A Dlower_bound0.pass.cpp34 assert(example.lower_bound(C2Int{5}) == example.end());
39 assert(example.lower_bound(C2Int{5}) == example.end());
H A Dupper_bound0.pass.cpp34 assert(example.upper_bound(C2Int{5}) == example.end());
39 assert(example.upper_bound(C2Int{5}) == example.end());
/external/libcxx/test/std/containers/associative/multimap/multimap.ops/
H A Dfind0.pass.cpp34 assert(example.find(C2Int{5}) == example.end());
39 assert(example.find(C2Int{5}) == example.end());
H A Dlower_bound0.pass.cpp34 assert(example.lower_bound(C2Int{5}) == example.end());
39 assert(example.lower_bound(C2Int{5}) == example.end());
H A Dupper_bound0.pass.cpp34 assert(example.upper_bound(C2Int{5}) == example.end());
39 assert(example.upper_bound(C2Int{5}) == example.end());
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/
H A Dclear.pass.cpp27 assert(distance(c.begin(), c.end()) == 0);
33 C c(std::begin(t), std::end(t));
36 assert(distance(c.begin(), c.end()) == 0);
39 assert(distance(c.begin(), c.end()) == 0);
47 assert(distance(c.begin(), c.end()) == 0);
53 C c(std::begin(t), std::end(t));
56 assert(distance(c.begin(), c.end()) == 0);
59 assert(distance(c.begin(), c.end()) == 0);
/external/libcxx/test/std/input.output/iostreams.base/ios.base/ios.types/ios_seekdir/
H A Dseekdir.pass.cpp16 // static const seekdir end;
24 assert(std::ios_base::beg != std::ios_base::end);
25 assert(std::ios_base::cur != std::ios_base::end);
/external/libcxx/test/std/iterators/stream.iterators/iterator.range/
H A Dend_non_const.pass.cpp12 // template <class C> auto end(C& c) -> decltype(c.end());
21 std::vector<int>::iterator i = end(v);
22 assert(i == v.end());
/external/libcxx/test/std/numerics/numarray/valarray.range/
H A Dend_non_const.pass.cpp16 // end(valarray<T>& v);
29 *(end(v) - 1) = 10;
31 assert(static_cast<std::size_t>(end(v) - begin(v)) == v.size());
/external/libcxx/test/std/re/re.alg/re.alg.search/
H A Dno_update_pos.pass.cpp31 std::cregex_iterator end = std::cregex_iterator(); local
38 assert(it == end);
/external/libmojo/base/android/
H A Djni_registrar.cc18 const RegistrationMethod* end = method + count; local
19 while (method != end) {
/external/libmojo/ui/gfx/range/mojo/
H A Drange_struct_traits_unittest.cc48 const uint32_t end = 5678; local
49 gfx::Range input(start, end);
54 EXPECT_EQ(end, output.end());
59 const float end = 6789.6f; local
60 gfx::RangeF input(start, end);
65 EXPECT_EQ(end, output.end());
/external/libmojo/ui/gfx/range/
H A Drange_f.cc28 RangeF range_f(range.start(), range.end());
34 uint32_t end = end_ > 0 ? static_cast<uint32_t>(std::floor(end_)) : 0; local
35 return Range(start, end);
40 uint32_t end = end_ > 0 ? static_cast<uint32_t>(std::ceil(end_)) : 0; local
41 return Range(start, end);
46 uint32_t end = end_ > 0 ? static_cast<uint32_t>(std::round(end_)) : 0; local
47 return Range(start, end);
51 return base::StringPrintf("{%f,%f}", start(), end());
/external/libopus/celt/
H A Dquant_bands.h44 void amp2Log2(const CELTMode *m, int effEnd, int end,
47 void log2Amp(const CELTMode *m, int start, int end,
50 void quant_coarse_energy(const CELTMode *m, int start, int end, int effEnd,
56 void quant_fine_energy(const CELTMode *m, int start, int end, opus_val16 *oldEBands, opus_val16 *error, int *fine_quant, ec_enc *enc, int C);
58 void quant_energy_finalise(const CELTMode *m, int start, int end, opus_val16 *oldEBands, opus_val16 *error, int *fine_quant, int *fine_priority, int bits_left, ec_enc *enc, int C);
60 void unquant_coarse_energy(const CELTMode *m, int start, int end, opus_val16 *oldEBands, int intra, ec_dec *dec, int C, int LM);
62 void unquant_fine_energy(const CELTMode *m, int start, int end, opus_val16 *oldEBands, int *fine_quant, ec_dec *dec, int C);
64 void unquant_energy_finalise(const CELTMode *m, int start, int end, opus_val16 *oldEBands, int *fine_quant, int *fine_priority, int bits_left, ec_dec *dec, int C);
/external/lzma/Java/Tukaani/src/org/tukaani/xz/delta/
H A DDeltaDecoder.java18 int end = off + len;
19 for (int i = off; i < end; ++i) {
/external/perfetto/include/perfetto/protozero/
H A Dcontiguous_memory_range.h29 uint8_t* end; // STL style: one byte past the end of the buffer. member in struct:protozero::ContiguousMemoryRange
33 inline size_t size() { return static_cast<size_t>(end - begin); }
/external/protobuf/objectivec/
H A DGPBRootObject.h45 @end
/external/walt/ios/WALT/
H A DSettingsController.h22 @end
H A DUIAlertView+Extensions.h21 @end
/external/webrtc/talk/app/webrtc/objc/
H A DRTCSessionDescription+Internal.h41 @end
H A DRTCVideoCapturer+Internal.h38 @end

Completed in 1665 milliseconds

1234567891011>>