Home
last modified time | relevance | path

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

12345

/external/rust/crates/memchr/src/tests/
Dmemchr.rs2 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/
Danalysis-naive-cluster-stabilization.test1 …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…
Danalysis-naive-clusterization.test1 …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…
Danalysis-clustering-algorithms.test3 …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.
Duops-CMOV16rm-noreg.s3 …ysis-inconsistency-epsilon=0.1 -analysis-numpoints=1 -analysis-clustering=naive | FileCheck -check…
/external/rust/crates/memchr/src/
Dlib.rs53 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/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/plotters/src/style/font/
Dmod.rs15 mod naive; module
17 use naive::FontDataInternal;
/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/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/llvm-project/clang/test/Parser/
Dextra-semi-resulting-in-nullstmt-in-init-statement.cpp13 void naive(int x) { in naive() function
/external/llvm/test/CodeGen/ARM/
Dfmdrr-fmrrd.ll3 ; naive codegen for this is:
/external/llvm-project/llvm/test/CodeGen/ARM/
Dfmdrr-fmrrd.ll3 ; naive codegen for this is:
/external/python/cpython3/Doc/library/
Ddatetime.rst33 .. _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/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};
/external/llvm-project/llvm/test/tools/llvm-xray/X86/
Dconvert-basic-arg1-to-yaml.txt1 ; RUN: llvm-xray convert %S/Inputs/naive-with-arg1-entries.xray -f=yaml -o - | FileCheck %s
Dconvert-to-yaml.txt1 ; RUN: llvm-xray convert %S/Inputs/naive-log-simple.xray -f=yaml -o - | FileCheck %s
/external/llvm-project/llvm/test/Transforms/Mem2Reg/
D2003-10-05-DeadPHIInsertion.ll1 ; Mem2reg should not insert dead PHI nodes! The naive algorithm inserts a PHI
/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 …]

12345