HomeSort by relevance Sort by last modified time
    Searched refs:Bound (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/declarations/
ResolvedTypeParameterDeclaration.java 46 static ResolvedTypeParameterDeclaration onType(final String name, String classQName, List<Bound> bounds) {
84 public List<Bound> getBounds() {
127 * The package name of the type bound(s).
135 * The class(es) wrapping the type bound(s).
171 List<Bound> getBounds();
174 * Has the type parameter a lower bound?
177 for (Bound b : getBounds()) {
186 * Has the type parameter an upper bound?
189 for (Bound b : getBounds()) {
198 * Get the type used as lower bound
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
NavigableMapTestSuiteBuilder.java 22 import com.google.common.collect.testing.DerivedCollectionGenerators.Bound;
65 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
66 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
67 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.EXCLUSIVE));
68 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.INCLUSIVE));
69 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.INCLUSIVE))
    [all...]
NavigableSetTestSuiteBuilder.java 19 import com.google.common.collect.testing.DerivedCollectionGenerators.Bound;
57 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
58 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
59 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.EXCLUSIVE));
60 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.INCLUSIVE));
61 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.INCLUSIVE, Bound.INCLUSIVE))
    [all...]
SortedSetTestSuiteBuilder.java 19 import com.google.common.collect.testing.DerivedCollectionGenerators.Bound;
66 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.NO_BOUND, Bound.EXCLUSIVE));
67 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.INCLUSIVE, Bound.NO_BOUND));
68 derivedSuites.add(createSubsetSuite(parentBuilder, Bound.INCLUSIVE, Bound.EXCLUSIVE));
83 parentBuilder, final Bound from, final Bound to) {
101 TestSortedSetGenerator<E> delegate, Bound to, Bound from)
    [all...]
SortedMapTestSuiteBuilder.java 19 import com.google.common.collect.testing.DerivedCollectionGenerators.Bound;
67 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.EXCLUSIVE));
68 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.NO_BOUND));
69 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.EXCLUSIVE));
105 parentBuilder, final Bound from, final Bound to) {
122 TestSortedMapGenerator<K, V> delegate, Bound to, Bound from)
    [all...]
DerivedCollectionGenerators.java 334 public enum Bound {
342 final Bound to;
343 final Bound from;
350 TestSortedSetGenerator<E> delegate, Bound to, Bound from) {
369 public final Bound getTo() {
373 public final Bound getFrom() {
408 if (from != Bound.NO_BOUND) {
412 if (to != Bound.NO_BOUND) {
430 if (from == Bound.NO_BOUND && to == Bound.EXCLUSIVE)
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
SortedMultisetTestSuiteBuilder.java 109 enum Bound {
126 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.NO_BOUND,
127 Bound.EXCLUSIVE));
128 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.NO_BOUND,
129 Bound.INCLUSIVE));
130 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.EXCLUSIVE,
131 Bound.NO_BOUND));
132 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.EXCLUSIVE,
133 Bound.EXCLUSIVE));
134 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.EXCLUSIVE
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/bounds/
FalseBound.java 3 import com.github.javaparser.symbolsolver.resolution.typeinference.Bound;
16 public class FalseBound extends Bound {
CapturesBound.java 4 import com.github.javaparser.symbolsolver.resolution.typeinference.Bound;
17 public class CapturesBound extends Bound {
ThrowsBound.java 3 import com.github.javaparser.symbolsolver.resolution.typeinference.Bound;
13 * A bound of the form throws ? is purely informational: it directs resolution to optimize the instantiation of ? so
18 public class ThrowsBound extends Bound {
SameAsBound.java 4 import com.github.javaparser.symbolsolver.resolution.typeinference.Bound;
22 public class SameAsBound extends Bound {
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/typeinference/bounds/
SameAsBoundTest.java 6 import com.github.javaparser.symbolsolver.resolution.typeinference.Bound;
23 // { ? = String } contains a single bound, instantiating ? as String.
25 Bound bound1 = new SameAsBound(inferenceVariable, stringType);
26 Bound bound2 = new SameAsBound(stringType, inferenceVariable);
SubtypeOfBoundTest.java 34 // { Integer <: ?, Double <: ?, ? <: Object } describes two proper lower bounds and one proper upper bound for ?.
37 Bound bound = new SubtypeOfBound(integerType, inferenceVariable); local
39 assertEquals(Optional.of(new ProperLowerBound(inferenceVariable, integerType)), bound.isProperLowerBound());
46 // { Integer <: ?, Double <: ?, ? <: Object } describes two proper lower bounds and one proper upper bound for ?.
49 Bound bound = new SubtypeOfBound(doubleType, inferenceVariable); local
51 assertEquals(Optional.of(new ProperLowerBound(inferenceVariable, doubleType)), bound.isProperLowerBound());
58 // { Integer <: ?, Double <: ?, ? <: Object } describes two proper lower bounds and one proper upper bound for ?.
61 Bound bound = new SubtypeOfBound(inferenceVariable, objectType) local
    [all...]
  /external/v8/src/compiler/
loop-variable-optimizer.h 30 struct Bound {
31 Bound(Node* bound, ConstraintKind kind) : bound(bound), kind(kind) {}
33 Node* bound; member in struct:v8::internal::compiler::InductionVariable::Bound
37 const ZoneVector<Bound>& lower_bounds() { return lower_bounds_; }
38 const ZoneVector<Bound>& upper_bounds() { return upper_bounds_; }
56 void AddUpperBound(Node* bound, ConstraintKind kind);
57 void AddLowerBound(Node* bound, ConstraintKind kind)
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
font_data.cc 31 void FontData::Bound(int32_t offset, int32_t length) {
66 Bound(data->bound_offset_ + offset, length);
71 Bound(data->bound_offset_ + offset,
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
Bound.java 13 public abstract class Bound {
19 static Bound falseBound() {
28 * A bound is satisfied by an inference variable substitution if, after applying the substitution,
38 * Given a bound of the form ? = T or T = ?, we say T is an instantiation of ?.
52 * Given a bound of the form ? <: T, we say T is a proper upper bound of ?.
54 * Return empty if it is not a proper upper bound. Otherwise it returns the variable of which this is an
55 * proper upper bound.
62 * Given a bound of the form T <: ?, we say T is a proper lower bound of ?
    [all...]
ConstraintFormula.java 39 public ReductionResult withBound(Bound bound) {
41 newInstance.boundSet = this.boundSet.withBound(bound);
56 return empty().withBound(Bound.falseBound());
100 public static ReductionResult oneBound(Bound bound) {
101 return empty().withBound(bound);
119 * i) A bound or bound set, which is to be incorporated with the "current" bound set. Initially, the current boun
    [all...]
BoundSet.java 23 private List<Bound> bounds = new LinkedList<>();
51 * It is sometimes convenient to refer to an empty bound set with the symbol true; this is merely out of
62 public BoundSet withBound(Bound bound) {
63 if (this.bounds.contains(bound)) {
68 boundSet.bounds.add(bound);
74 Bound bi = bounds.get(i);
78 Bound bj = bounds.get(j);
96 interface Processor<B1 extends Bound, B2 extends Bound, R>
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-bind.cpp 275 template<typename Bound, typename... Args>
276 inline typename safe_tuple_element<is_placeholder<Bound>::value -1,
278 mu(Bound& bound_arg, const tuple<Args&...>& args) {
279 return get<is_placeholder<Bound>::value-1>(args);
293 template<typename Bound, typename... Args>
294 inline typename enable_if<is_bind_expression<Bound>::value,
295 typename Bound::result_type>::type
296 mu(Bound& bound_arg, const tuple<Args&...>& args) {
311 template<typename Bound, typename... Args>
312 inline typename enable_if<(!is_bind_expression<Bound>::value
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DependenceAnalysis.cpp 528 LLVM_DEBUG(dbgs() << "\t\tupper bound = " << UpperBound << "\n");
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/
JavassistTypeParameter.java 96 public List<ResolvedTypeParameterDeclaration.Bound> getBounds() {
97 List<Bound> bounds = new ArrayList<>();
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp 527 DEBUG(dbgs() << "\t\tupper bound = " << UpperBound << "\n");
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
resize_area_op.cc 64 #define BOUND_IF_NEEDED(x, y) (NeedsXBounding ? Bound(x, y) : (x))
113 #define BOUND_IF_NEEDED(x, y) (NeedsXBounding ? Bound(x, y) : (x))
182 Bound(x_interp.start, st.in_width) != x_interp.start ||
183 Bound(x_interp.end - 1, st.in_width) != (x_interp.end - 1);
244 Bound(i, st.in_height) * st.in_width * st.channels));
277 static EIGEN_ALWAYS_INLINE int64 Bound(int64 val, int64 limit) {
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionTypeParameter.java 112 public List<Bound> getBounds() {
113 return Arrays.stream(typeVariable.getBounds()).map((refB) -> Bound.extendsBound(ReflectionFactory.typeUsageFor(refB, typeSolver))).collect(Collectors.toList());
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 571 /// an i64). The loop bound may be a smaller type. collectUpperBound
572 /// find the bound, if available, and zero extends it to the Type T.
573 /// (I zero extend since the bound should always be >= 0.)
574 /// If no upper bound is available, return NULL.
    [all...]

Completed in 1100 milliseconds

1 2 3