/third_party/rust/crates/clap/src/builder/ |
H A D | range.rs | 104 fn start_bound(&self) -> std::ops::Bound<&usize> { in start_bound() 105 std::ops::Bound::Included(&self.start_inclusive) in start_bound() 108 fn end_bound(&self) -> std::ops::Bound<&usize> { in end_bound() 109 std::ops::Bound::Included(&self.end_inclusive) in end_bound() 199 assert_eq!(range.start_bound(), std::ops::Bound::Included(&5)); in from_fixed() 200 assert_eq!(range.end_bound(), std::ops::Bound::Included(&5)); in from_fixed() 210 assert_eq!(range.start_bound(), std::ops::Bound::Included(&0)); in from_fixed_empty() 211 assert_eq!(range.end_bound(), std::ops::Bound::Included(&0)); in from_fixed_empty() 221 assert_eq!(range.start_bound(), std::ops::Bound::Included(&5)); in from_range() 222 assert_eq!(range.end_bound(), std::ops::Bound in from_range() [all...] |
/third_party/rust/crates/regex/regex-syntax/src/hir/ |
H A D | interval.rs | 252 let (min, max) = (I::Bound::min_value(), I::Bound::max_value()); in negate() 265 if self.ranges[0].lower() > I::Bound::min_value() { in negate() 267 self.ranges.push(I::create(I::Bound::min_value(), upper)); in negate() 274 if self.ranges[drain_end - 1].upper() < I::Bound::max_value() { in negate() 276 self.ranges.push(I::create(lower, I::Bound::max_value())); in negate() 338 type Bound: Bound; in next() types 340 fn lower(&self) -> Self::Bound; in next() 341 fn upper(&self) -> Self::Bound; in next() 466 pub trait Bound: global() traits [all...] |
H A D | mod.rs | 999 type Bound = char; types 1196 type Bound = u8; types
|
/third_party/node/deps/v8/src/compiler/ |
H A D | loop-variable-optimizer.h | 30 struct Bound { struct in v8::internal::compiler::InductionVariable 31 Bound(Node* bound, ConstraintKind kind) : bound(bound), kind(kind) {} in Bound() function 37 const ZoneVector<Bound>& lower_bounds() { return lower_bounds_; } in lower_bounds() 38 const ZoneVector<Bound>& upper_bounds() { return upper_bounds_; } in upper_bounds() 65 ZoneVector<Bound> lower_bounds_; 66 ZoneVector<Bound> upper_bounds_;
|
H A D | loop-variable-optimizer.cc | 84 upper_bounds_.push_back(Bound(bound, kind)); in AddUpperBound() 94 lower_bounds_.push_back(Bound(bound, kind)); in AddLowerBound()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | DependenceAnalysis.cpp | 1023 const SCEV *Bound = SE->getMinusSCEV(S, Size); in isKnownLessThan() local 1024 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(Bound)) { in isKnownLessThan() 2540 BoundInfo *Bound = new BoundInfo[MaxLevels + 1]; in banerjeeMIVtest() local 2547 Bound[K].Iterations = A[K].Iterations ? A[K].Iterations : B[K].Iterations; in banerjeeMIVtest() 2548 Bound[K].Direction = Dependence::DVEntry::ALL; in banerjeeMIVtest() 2549 Bound[K].DirSet = Dependence::DVEntry::NONE; in banerjeeMIVtest() 2550 findBoundsALL(A, B, Bound, K); in banerjeeMIVtest() 2553 if (Bound[K].Lower[Dependence::DVEntry::ALL]) in banerjeeMIVtest() 2554 LLVM_DEBUG(dbgs() << *Bound[K].Lower[Dependence::DVEntry::ALL] << '\t'); in banerjeeMIVtest() 2557 if (Bound[ in banerjeeMIVtest() 2609 exploreDirections(unsigned Level, CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, const SmallBitVector &Loops, unsigned &DepthExpanded, const SCEV *Delta) const exploreDirections() argument 2714 testBounds(unsigned char DirKind, unsigned Level, BoundInfo *Bound, const SCEV *Delta) const testBounds() argument 2742 findBoundsALL(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const findBoundsALL() argument 2781 findBoundsEQ(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const findBoundsEQ() argument 2821 findBoundsLT(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const findBoundsLT() argument 2865 findBoundsGT(CoefficientInfo *A, CoefficientInfo *B, BoundInfo *Bound, unsigned K) const findBoundsGT() argument [all...] |
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/data/ |
H A D | font_data.cc | 31 void FontData::Bound(int32_t offset, int32_t length) { in Bound() function in sfntly::FontData 66 Bound(data->bound_offset_ + offset, length); in FontData() 71 Bound(data->bound_offset_ + offset, in FontData()
|
H A D | font_data.h | 61 virtual void Bound(int32_t offset, int32_t length);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | DependenceAnalysis.h | 800 const SCEV *getLowerBound(BoundInfo *Bound) const; 805 const SCEV *getUpperBound(BoundInfo *Bound) const; 809 /// in the DirSet field of Bound. Returns the number of distinct 815 BoundInfo *Bound, 823 BoundInfo *Bound, 827 /// using the * direction. Records them in Bound. 830 BoundInfo *Bound, 834 /// using the < direction. Records them in Bound. 837 BoundInfo *Bound, 841 /// using the > direction. Records them in Bound [all...] |
/third_party/rust/crates/proc-macro2/src/ |
H A D | fallback.rs | 1063 use core::ops::Bound; in subspan() 1066 Bound::Included(start) => { in subspan() 1070 Bound::Excluded(start) => { in subspan() 1074 Bound::Unbounded => self.span.lo, in subspan() 1077 Bound::Included(end) => { in subspan() 1081 Bound::Excluded(end) => { in subspan() 1085 Bound::Unbounded => self.span.hi, in subspan()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | parserRealSource9.js | 155 if (symbol.flags & SymbolFlags.Bound) { 160 typeSymbol.flags |= SymbolFlags.Bound; 355 if (symbol.flags & SymbolFlags.Bound) {
359 typeSymbol.flags |= SymbolFlags.Bound;
|
H A D | parserRealSource2.js | 147 Bound = 1 << 18, 417 SymbolFlags[SymbolFlags["Bound"] = 262144] = "Bound";
|
/third_party/rust/crates/serde/test_suite/tests/ |
H A D | test_ser.rs | 12 use std::ops::Bound; 538 &Bound::Unbounded::<()>, in test_bound() 540 Token::Enum { name: "Bound" }, in test_bound() 546 &Bound::Included(0u8), in test_bound() 548 Token::Enum { name: "Bound" }, in test_bound() 554 &Bound::Excluded(0u8), in test_bound() 556 Token::Enum { name: "Bound" }, in test_bound()
|
H A D | test_de.rs | 28 use std::ops::Bound; 1944 Bound::Unbounded::<()>, in test_bound() 1946 Token::Enum { name: "Bound" }, in test_bound() 1952 Bound::Included(0), in test_bound() 1954 Token::Enum { name: "Bound" }, in test_bound() 1960 Bound::Excluded(0), in test_bound() 1962 Token::Enum { name: "Bound" }, in test_bound()
|
/third_party/node/test/parallel/ |
H A D | test-net-server-listen-handle.js | 59 `Bound ${handleName} has fd -1 and errno ${errno}`);
|
H A D | test-net-connect-options-fd.js | 82 console.error(`[Pipe]Bound handle with Pipe ${handle.fd}`);
|
/third_party/rust/crates/serde/serde/src/ser/ |
H A D | impls.rs | 338 impl<T> Serialize for Bound<T> 347 Bound::Unbounded => serializer.serialize_unit_variant("Bound", 0, "Unbounded"), in serialize() 348 Bound::Included(ref value) => { in serialize() 349 serializer.serialize_newtype_variant("Bound", 1, "Included", value) in serialize() 351 Bound::Excluded(ref value) => { in serialize() 352 serializer.serialize_newtype_variant("Bound", 2, "Excluded", value) in serialize()
|
/third_party/rust/crates/serde/serde/src/ |
H A D | lib.rs | 189 pub use self::core::ops::{Bound, Range, RangeFrom, RangeInclusive, RangeTo};
|
/third_party/rust/crates/serde/serde/src/de/ |
H A D | impls.rs | 2773 impl<'de, T> Deserialize<'de> for Bound<T> 2848 struct BoundVisitor<T>(PhantomData<Bound<T>>); in deserialize() 2854 type Value = Bound<T>; in deserialize() 2857 formatter.write_str("enum Bound") in deserialize() 2865 (Field::Unbounded, v) => v.unit_variant().map(|()| Bound::Unbounded), in deserialize() 2866 (Field::Included, v) => v.newtype_variant().map(Bound::Included), in deserialize() 2867 (Field::Excluded, v) => v.newtype_variant().map(Bound::Excluded), in deserialize() 2874 deserializer.deserialize_enum("Bound", VARIANTS, BoundVisitor(PhantomData)) in deserialize()
|
/third_party/backends/backend/ |
H A D | mustek_usb2_high.c | 760 unsigned short Bound = TotalCount - 1; in MustScanner_FiltLower() local 766 for (i = 0; i < Bound; i++) in MustScanner_FiltLower() 769 for (j = 0; j < Bound - i; j++) in MustScanner_FiltLower()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDie.cpp | 116 Optional<uint64_t> Bound;
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceAssemblerX8632.cpp | 3058 const intptr_t Bound = Buffer.size(); in bind() local 3063 const intptr_t Offset = Bound - (Position + 4); in bind() 3069 const intptr_t Offset = Bound - (Position + 1); in bind() 3073 L->bindTo(Bound); in bind()
|
H A D | IceAssemblerX8664.cpp | 3222 const intptr_t Bound = Buffer.size(); in bind() local 3227 const intptr_t Offset = Bound - (Position + 4); in bind() 3233 const intptr_t Offset = Bound - (Position + 1); in bind() 3237 L->bindTo(Bound); in bind()
|
/third_party/rust/crates/syn/tests/common/ |
H A D | eq.rs | 526 spanless_eq_enum!(AssocConstraintKind; Equality(term) Bound(bounds));
|
/third_party/rust/crates/memchr/bench/data/code/ |
H A D | rust-library.rs | 5618 use std::ops::Bound; 5619 use std::ops::Bound::*; 6214 fn start_bound(&self) -> Bound<&usize> { in test_replace_range_evil_start_bound() 6215 Bound::Included(if self.0.get() { in test_replace_range_evil_start_bound() 6222 fn end_bound(&self) -> Bound<&usize> { in test_replace_range_evil_start_bound() 6223 Bound::Unbounded in test_replace_range_evil_start_bound() 6237 fn start_bound(&self) -> Bound<&usize> { in test_replace_range_evil_end_bound() 6238 Bound::Included(&0) in test_replace_range_evil_end_bound() 6240 fn end_bound(&self) -> Bound<&usize> { in test_replace_range_evil_end_bound() 6241 Bound in test_replace_range_evil_end_bound() [all...] |