Searched defs:bound (Results 1 - 25 of 113) sorted by relevance

12345

/external/turbine/java/com/google/turbine/binder/bound/
H A DAnnotationValue.java17 package com.google.turbine.binder.bound;
H A DBoundClass.java17 package com.google.turbine.binder.bound;
25 * The initial bound tree representation.
27 * <p>The interfaces for bound trees generally have two implementations: one for the sources being
H A DClassValue.java17 package com.google.turbine.binder.bound;
H A DEnumConstantValue.java17 package com.google.turbine.binder.bound;
H A DHeaderBoundClass.java17 package com.google.turbine.binder.bound;
24 /** A bound node that augments {@link BoundClass} with superclasses and interfaces. */
H A DAnnotationMetadata.java17 package com.google.turbine.binder.bound;
H A DPackageSourceBoundClass.java17 package com.google.turbine.binder.bound;
H A DSourceBoundClass.java17 package com.google.turbine.binder.bound;
H A DSourceHeaderBoundClass.java17 package com.google.turbine.binder.bound;
/external/annotation-tools/annotation-file-utilities/src/annotator/find/
H A DBoundLocationCriterion.java69 // if boundIndex is not null, need to check that this is right bound
84 // If the bound is implicit (i.e., a missing "extends Object"),
121 private boolean isInterface(JCExpression bound) { argument
122 Type type = bound.type;
136 " at bound index: " + boundIndex;
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/
H A DResolvedLambdaConstraintType.java25 private ResolvedType bound; field in class:ResolvedLambdaConstraintType
27 private ResolvedLambdaConstraintType(ResolvedType bound) { argument
28 this.bound = bound;
33 return "? super " + bound.describe();
37 return bound;
50 public static ResolvedLambdaConstraintType bound(ResolvedType bound){ argument
51 return new ResolvedLambdaConstraintType(bound);
56 return bound
[all...]
/external/tensorflow/tensorflow/core/lib/monitoring/
H A Dsampler.cc80 double bound = scale; local
82 bucket_limits.push_back(bound);
83 bound *= growth_factor;
/external/turbine/java/com/google/turbine/deps/
H A DTransitive.java24 import com.google.turbine.binder.bound.TypeBoundClass;
46 ImmutableSet<String> bootClassPath, BindingResult bound) {
48 for (ClassSymbol sym : superClosure(bound)) {
49 BytecodeBoundClass info = bound.classPathEnv().get(sym);
103 private static Set<ClassSymbol> superClosure(BindingResult bound) { argument
105 CompoundEnv.<ClassSymbol, TypeBoundClass>of(new SimpleEnv<>(bound.units()))
106 .append(bound.classPathEnv());
108 for (ClassSymbol sym : bound.units().keySet()) {
45 collectDeps( ImmutableSet<String> bootClassPath, BindingResult bound) argument
H A DDependencies.java26 import com.google.turbine.binder.bound.TypeBoundClass;
51 BindingResult bound,
54 Set<ClassSymbol> closure = superTypeClosure(bound, lowered);
55 addPackageInfos(closure, bound);
58 BytecodeBoundClass info = bound.classPathEnv().get(sym);
84 private static Set<ClassSymbol> superTypeClosure(BindingResult bound, Lowered lowered) { argument
86 CompoundEnv.<ClassSymbol, TypeBoundClass>of(new SimpleEnv<>(bound.units()))
87 .append(bound.classPathEnv());
112 private static void addPackageInfos(Set<ClassSymbol> closure, BindingResult bound) { argument
122 if (bound
48 collectDeps( Optional<String> targetLabel, ImmutableSet<String> bootClassPath, BindingResult bound, Lowered lowered) argument
[all...]
/external/valgrind/drd/tests/
H A Domp_prime.c19 int bound = floor(sqrt ((double)v)) + 1; local
21 for (i = 2; i < bound; i++)
/external/annotation-tools/scene-lib/src/type/
H A DBoundedType.java15 * {@code name} and {@code bound} of this {@code BoundedType}.
20 * The possible bound kinds.
27 * Gets this bound kind in a format that can be inserted into source
45 * The bound kind.
50 * The bound of this type. For example, 'Object' in:
55 private DeclaredType bound; field in class:BoundedType
60 * @param boundKind the bound kind
61 * @param bound the bound
63 public BoundedType(DeclaredType name, BoundKind boundKind, DeclaredType bound) { argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dutil.rb127 # Returns self if above the given lower bound, or
129 # otherwise returns the the bound of which the
132 # 4.bound(3) #=> 4
133 # 4.bound(5) #=> 5
134 # 4.bound(2,7) #=> 4
135 # 9.bound(2,7) #=> 7
136 # 1.bound(2,7) #=> 2
140 def bound( lower, upper=nil ) method in class:Integer
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
H A DEstimatedParameter.java25 * a bound flag. The value of bound parameters is considered trusted
49 /** Indicator for bound parameters
52 private boolean bound; field in class:EstimatedParameter
63 bound = false;
68 * bound flag
71 * @param bound flag, should be true if the parameter is bound
75 boolean bound) {
78 this.bound
73 EstimatedParameter(String name, double firstEstimate, boolean bound) argument
116 setBound(boolean bound) argument
[all...]
/external/skia/gm/
H A Dbigtileimagefilter.cpp57 const SkRect bound = SkRect::MakeIWH(kWidth, kHeight); variable
67 canvas->saveLayer(&bound, &p);
/external/skqp/gm/
H A Dbigtileimagefilter.cpp57 const SkRect bound = SkRect::MakeIWH(kWidth, kHeight); variable
67 canvas->saveLayer(&bound, &p);
/external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/java8/
H A DGenericDefaultInterfaceWithLambda.java30 public default ArrayList<T> toList(int bound) { argument
32 if (bound == 0) {
36 for (int i = 1; i < bound; ++i) {
/external/guice/core/src/com/google/inject/util/
H A DTypes.java75 * Returns a type that represents an unknown type that extends {@code bound}.
76 * For example, if {@code bound} is {@code CharSequence.class}, this returns
77 * {@code ? extends CharSequence}. If {@code bound} is {@code Object.class},
80 public static WildcardType subtypeOf(Type bound) { argument
81 return new WildcardTypeImpl(new Type[] { bound }, MoreTypes.EMPTY_TYPE_ARRAY);
85 * Returns a type that represents an unknown supertype of {@code bound}. For
86 * example, if {@code bound} is {@code String.class}, this returns {@code ?
89 public static WildcardType supertypeOf(Type bound) { argument
90 return new WildcardTypeImpl(new Type[] { Object.class }, new Type[] { bound });
/external/lzma/C/
H A DBcj2.c16 #define _IF_BIT_0 ttt = *prob; bound = (p->range >> kNumModelBits) * ttt; if (p->code < bound)
17 #define _UPDATE_0 p->range = bound; *prob = (CProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits));
18 #define _UPDATE_1 p->range -= bound; p->code -= bound; *prob = (CProb)(ttt - (ttt >> kNumMoveBits));
187 UInt32 bound, ttt; local
/external/mesa3d/src/compiler/glsl/
H A Dast_array_index.cpp174 unsigned bound = 0; local
187 bound = array->type->row_type()->vector_elements;
192 bound = array->type->vector_elements;
202 bound = array->type->array_size();
206 if (bound > 0) {
208 type_name, bound);
/external/skia/tests/
H A DFontHostStreamTest.cpp23 static void create(SkBitmap* bm, SkIRect bound) { argument
24 bm->allocN32Pixels(bound.width(), bound.height());

Completed in 2022 milliseconds

12345