Home
last modified time | relevance | path

Searched refs:naive (Results 1 – 25 of 110) sorted by relevance

12345

/external/rust/crates/memchr/src/tests/memchr/
Dmemchr.rs5 memchr::{fallback, naive},
96 memchr(n1, &corpus) == naive::memchr(n1, &corpus)
102 memchr2(n1, n2, &corpus) == naive::memchr2(n1, n2, &corpus)
111 memchr3(n1, n2, n3, &corpus) == naive::memchr3(n1, n2, n3, &corpus)
117 memrchr(n1, &corpus) == naive::memrchr(n1, &corpus)
123 memrchr2(n1, n2, &corpus) == naive::memrchr2(n1, n2, &corpus)
132 memrchr3(n1, n2, n3, &corpus) == naive::memrchr3(n1, n2, n3, &corpus)
/external/rust/crates/memchr/src/memchr/
Dmod.rs11 pub mod naive; module
91 naive::memchr(n1, haystack) in memchr()
155 naive::memchr2(n1, n2, haystack) in memchr2()
213 naive::memchr3(n1, n2, n3, haystack) in memchr3()
264 naive::memrchr(n1, haystack) in memrchr()
329 naive::memrchr2(n1, n2, haystack) in memrchr2()
387 naive::memrchr3(n1, n2, n3, haystack) in memrchr3()
/external/rust/crates/chrono/src/offset/
Dutc.rs9 use naive::{NaiveDate, NaiveDateTime};
50 let naive = NaiveDateTime::from_timestamp(now.as_secs() as i64, now.subsec_nanos() as u32); in now() localVariable
51 DateTime::from_utc(naive, Utc) in now()
Dlocal.rs12 use naive::NaiveTime;
13 use naive::{NaiveDate, NaiveDateTime};
/external/rust/crates/num-integer/benches/
Daverage.rs238 fn naive(b: &mut Bencher) {
267 fn naive(b: &mut Bencher) {
296 fn naive(b: &mut Bencher) {
331 fn naive(b: &mut Bencher) {
360 fn naive(b: &mut Bencher) {
389 fn naive(b: &mut Bencher) {
/external/rust/crates/base64/src/engine/
Dtests.rs17 engine::{general_purpose, naive, Config, DecodeEstimate, DecodePaddingMode, Engine},
26 case::naive(NaiveWrapper {}),
1336 type Engine = naive::Naive;
1339 naive::Naive::new( in standard()
1341 naive::NaiveConfig { in standard()
1350 naive::Naive::new( in standard_unpadded()
1352 naive::NaiveConfig { in standard_unpadded()
1364 naive::Naive::new( in standard_with_pad_mode()
1366 naive::NaiveConfig { in standard_with_pad_mode()
1375 naive::Naive::new( in standard_allow_trailing_bits()
[all …]
/external/rust/crates/plotters/src/style/font/
Dmod.rs24 mod naive; module
29 use naive::FontDataInternal;
/external/python/dateutil/dateutil/parser/
D_parser.py1171 def _build_tzaware(self, naive, res, tzinfos): argument
1174 aware = naive.replace(tzinfo=tzinfo)
1178 aware = naive.replace(tzinfo=tz.tzlocal())
1189 aware = naive.replace(tzinfo=tz.tzutc())
1192 aware = naive.replace(tzinfo=tz.tzoffset(res.tzname, res.tzoffset))
1196 aware = naive
1207 aware = naive
1229 naive = default.replace(**repl)
1232 naive = naive + relativedelta.relativedelta(weekday=res.weekday)
1234 return naive
/external/rust/crates/chrono/
DCHANGELOG.md293 `chrono::naive::time::NaiveTime` | `chrono::naive::NaiveTime`
294 `chrono::naive::date::NaiveDate` | `chrono::naive::NaiveDate`
295 `chrono::naive::date::MIN` | `chrono::naive::MIN_DATE`
296 `chrono::naive::date::MAX` | `chrono::naive::MAX_DATE`
297 `chrono::naive::datetime::NaiveDateTime` | `chrono::naive::NaiveDateTime`
318 - `chrono::serde` and `chrono::naive::serde` modules have been added
326 For rustc-serialize, there are separate `chrono::TsSeconds` and `chrono::naive::TsSeconds` types
637 - `parse_from_str` method has been added to all naive types and `DateTime<FixedOffset>`.
639 - All naive types and instances of `DateTime` with time zones `UTC`, `Local` and `FixedOffset`
DREADME.md23 * Chrono is timezone-aware by default, with separate timezone-naive types.
374 which simply returns a naive local time described below.
378 Chrono provides naive counterparts to `Date`, (non-existent) `Time` and `DateTime`
379 as [**`NaiveDate`**](https://docs.rs/chrono/0.4/chrono/naive/struct.NaiveDate.html),
380 [**`NaiveTime`**](https://docs.rs/chrono/0.4/chrono/naive/struct.NaiveTime.html) and
381 [**`NaiveDateTime`**](https://docs.rs/chrono/0.4/chrono/naive/struct.NaiveDateTime.html) respective…
387 Timezone-aware `DateTime` and `Date` types have two methods returning naive versions:
389 a view to the naive local time,
391 a view to the naive UTC time.
402 Chrono doesn't try to make use of them](https://docs.rs/chrono/0.4/chrono/naive/struct.NaiveTime.ht…
/external/rust/crates/chrono/src/
Dlib.rs497 pub use naive::{IsoWeek, NaiveDate, NaiveDateTime, NaiveTime};
541 pub mod naive { module
586 pub use naive::__BenchYearFlags;
1432 for y in range_inclusive(naive::MIN_DATE.year(), naive::MAX_DATE.year()) { in test_readme_doomsday()
1516 for year in range_inclusive(naive::MIN_DATE.year(), naive::MAX_DATE.year()) { in test_num_days_from_ce_against_alternative_impl()
Ddate.rs17 use naive::{self, IsoWeek, NaiveDate, NaiveTime};
53 pub const MIN_DATE: Date<Utc> = Date { date: naive::MIN_DATE, offset: Utc };
55 pub const MAX_DATE: Date<Utc> = Date { date: naive::MAX_DATE, offset: Utc };
/external/cronet/third_party/protobuf/third_party/utf8_range/
DBUILD8 "naive.c",
/external/protobuf/third_party/utf8_range/
DBUILD.bazel8 "naive.c",
/external/python/cpython3/Doc/library/
Ddatetime.rst36 .. _datetime-naive-aware:
41 Date and time objects may be categorized as "aware" or "naive" depending on
50 A **naive** object does not contain enough information to unambiguously locate
51 itself relative to other date/time objects. Whether a naive object represents
93 An idealized naive date, assuming the current Gregorian calendar always was, and
164 Objects of the :class:`date` type are always naive.
166 An object of type :class:`.time` or :class:`.datetime` may be aware or naive.
173 Otherwise, *d* is naive.
180 Otherwise, *t* is naive.
182 The distinction between aware and naive doesn't apply to :class:`timedelta`
[all …]
/external/llvm/test/CodeGen/ARM/
Dfmdrr-fmrrd.ll3 ; naive codegen for this is:
/external/protobuf/php/ext/google/protobuf/
Dconfig.m47 …def.c map.c message.c names.c php-upb.c protobuf.c third_party/utf8_range/naive.c third_party/utf8…
/external/cronet/third_party/protobuf/php/ext/google/protobuf/
Dconfig.m47 …def.c map.c message.c names.c php-upb.c protobuf.c third_party/utf8_range/naive.c third_party/utf8…
/external/rust/crates/chrono/src/naive/
Ddatetime.rs18 use naive::date::{MAX_DATE, MIN_DATE};
19 use naive::time::{MAX_TIME, MIN_TIME};
20 use naive::{IsoWeek, NaiveDate, NaiveTime};
1506 use naive::{MAX_DATE, MIN_DATE}; in test_encodable_json()
1540 use naive::{MAX_DATE, MIN_DATE}; in test_decodable_json()
2216 use naive::NaiveDate; in test_serde_bincode()
2249 use naive::{NaiveDate, MAX_DATE, MIN_DATE};
Disoweek.rs145 use naive::{internals, MAX_DATE, MIN_DATE};
/external/crosvm/hypervisor/src/geniezone/
DREADME.md14 - Probe proper hypervisor backend with naive logic
/external/llvm/test/Transforms/Mem2Reg/
D2003-10-05-DeadPHIInsertion.ll1 ; Mem2reg should not insert dead PHI nodes! The naive algorithm inserts a PHI
/external/python/cpython2/Doc/library/
Ddatetime.rst20 There are two kinds of date and time objects: "naive" and "aware".
28 A naive object does not contain enough information to unambiguously locate
29 itself relative to other date/time objects. Whether a naive object represents
75 An idealized naive date, assuming the current Gregorian calendar always was, and
114 Objects of the :class:`date` type are always naive.
116 An object of type :class:`.time` or :class:`.datetime` may be naive or aware.
120 returns ``None``, *d* is naive. A :class:`.time` object *t* is aware
122 ``None``. Otherwise, *t* is naive.
124 The distinction between naive and aware doesn't apply to :class:`timedelta`
676 :meth:`now`, but returns the current UTC date and time, as a naive
[all …]
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DRWMutex.inc25 // This naive implementation treats readers the same as writers. This
/external/llvm/lib/Support/Unix/
DRWMutex.inc25 // This naive implementation treats readers the same as writers. This

12345