/external/rust/crates/memchr/src/tests/ |
D | memchr.rs | 2 use naive; 93 memchr(n1, &corpus) == naive::memchr(n1, &corpus) 99 memchr2(n1, n2, &corpus) == naive::memchr2(n1, n2, &corpus) 108 memchr3(n1, n2, n3, &corpus) == naive::memchr3(n1, n2, n3, &corpus) 114 memrchr(n1, &corpus) == naive::memrchr(n1, &corpus) 120 memrchr2(n1, n2, &corpus) == naive::memrchr2(n1, n2, &corpus) 129 memrchr3(n1, n2, n3, &corpus) == naive::memrchr3(n1, n2, n3, &corpus)
|
/external/llvm-project/llvm/test/tools/llvm-exegesis/X86/ |
D | analysis-naive-cluster-stabilization.test | 1 …ysis-inconsistency-epsilon=0.5 -analysis-numpoints=1 -analysis-clustering=naive | FileCheck -check… 2 …ysis-inconsistency-epsilon=0.5 -analysis-numpoints=1 -analysis-clustering=naive | FileCheck -check… 3 …ysis-display-unstable-clusters -analysis-numpoints=1 -analysis-clustering=naive | FileCheck -check… 5 …ysis-inconsistency-epsilon=0.5 -analysis-numpoints=1 -analysis-clustering=naive | FileCheck -check… 6 …ysis-inconsistency-epsilon=0.5 -analysis-numpoints=1 -analysis-clustering=naive | FileCheck -check… 7 …ysis-display-unstable-clusters -analysis-numpoints=1 -analysis-clustering=naive | FileCheck -check…
|
D | analysis-naive-clusterization.test | 1 …ysis-inconsistency-epsilon=0.1 -analysis-numpoints=1 -analysis-clustering=naive | FileCheck -check… 2 …ysis-inconsistency-epsilon=0.5 -analysis-numpoints=1 -analysis-clustering=naive | FileCheck -check… 3 …ysis-display-unstable-clusters -analysis-numpoints=1 -analysis-clustering=naive | FileCheck -check…
|
D | analysis-clustering-algorithms.test | 3 …nalysis-clustering-epsilon=0.5 -analysis-numpoints=1 -analysis-clustering=naive | FileCheck -check… 4 …alysis-clustering-epsilon=0.49 -analysis-numpoints=1 -analysis-clustering=naive | FileCheck -check… 31 # And -analysis-clustering=naive every opcode goes into separate cluster.
|
D | uops-CMOV16rm-noreg.s | 3 …ysis-inconsistency-epsilon=0.1 -analysis-numpoints=1 -analysis-clustering=naive | FileCheck -check…
|
/external/rust/crates/chrono/src/offset/ |
D | utc.rs | 9 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()
|
D | local.rs | 12 use naive::NaiveTime; 13 use naive::{NaiveDate, NaiveDateTime};
|
/external/rust/crates/memchr/src/ |
D | lib.rs | 53 mod naive; module 137 naive::memchr(n1, haystack) in memchr() 200 naive::memchr2(n1, n2, haystack) in memchr2() 257 naive::memchr3(n1, n2, n3, haystack) in memchr3() 307 naive::memrchr(n1, haystack) in memrchr() 371 naive::memrchr2(n1, n2, haystack) in memrchr2() 428 naive::memrchr3(n1, n2, n3, haystack) in memrchr3()
|
/external/rust/crates/plotters/src/style/font/ |
D | mod.rs | 15 mod naive; module 17 use naive::FontDataInternal;
|
/external/rust/crates/num-integer/benches/ |
D | average.rs | 238 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/python/dateutil/dateutil/parser/ |
D | _parser.py | 1171 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/ |
D | CHANGELOG.md | 293 `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`
|
D | README.md | 23 * 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/ |
D | lib.rs | 497 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()
|
D | date.rs | 17 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/llvm-project/clang/test/Parser/ |
D | extra-semi-resulting-in-nullstmt-in-init-statement.cpp | 13 void naive(int x) { in naive() function
|
/external/llvm/test/CodeGen/ARM/ |
D | fmdrr-fmrrd.ll | 3 ; naive codegen for this is:
|
/external/llvm-project/llvm/test/CodeGen/ARM/ |
D | fmdrr-fmrrd.ll | 3 ; naive codegen for this is:
|
/external/python/cpython3/Doc/library/ |
D | datetime.rst | 33 .. _datetime-naive-aware: 38 Date and time objects may be categorized as "aware" or "naive" depending on 47 A **naive** object does not contain enough information to unambiguously locate 48 itself relative to other date/time objects. Whether a naive object represents 90 An idealized naive date, assuming the current Gregorian calendar always was, and 161 Objects of the :class:`date` type are always naive. 163 An object of type :class:`.time` or :class:`.datetime` may be aware or naive. 170 Otherwise, *d* is naive. 177 Otherwise, *t* is naive. 179 The distinction between aware and naive doesn't apply to :class:`timedelta` [all …]
|
/external/llvm-project/llvm/test/tools/llvm-xray/X86/ |
D | convert-basic-arg1-to-yaml.txt | 1 ; RUN: llvm-xray convert %S/Inputs/naive-with-arg1-entries.xray -f=yaml -o - | FileCheck %s
|
D | convert-to-yaml.txt | 1 ; RUN: llvm-xray convert %S/Inputs/naive-log-simple.xray -f=yaml -o - | FileCheck %s
|
D | convert-with-yaml-instrmap.txt | 1 ; RUN: llvm-xray convert -m %S/Inputs/simple-xray-instrmap.yaml %S/Inputs/naive-log-simple.xray -f=…
|
/external/rust/crates/chrono/src/naive/ |
D | datetime.rs | 18 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};
|
/external/llvm-project/llvm/test/Transforms/Mem2Reg/ |
D | 2003-10-05-DeadPHIInsertion.ll | 1 ; Mem2reg should not insert dead PHI nodes! The naive algorithm inserts a PHI
|
/external/llvm/test/Transforms/Mem2Reg/ |
D | 2003-10-05-DeadPHIInsertion.ll | 1 ; Mem2reg should not insert dead PHI nodes! The naive algorithm inserts a PHI
|