HomeSort by relevance Sort by last modified time
    Searched defs:bound (Results 1 - 25 of 395) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/turbine/java/com/google/turbine/binder/
Resolve.java 21 import com.google.turbine.binder.bound.BoundClass;
22 import com.google.turbine.binder.bound.HeaderBoundClass;
23 import com.google.turbine.binder.bound.TypeBoundClass;
24 import com.google.turbine.binder.bound.TypeBoundClass.FieldInfo;
52 HeaderBoundClass bound = env.get(sym); local
53 if (bound == null) {
56 result = bound.children().get(simpleName);
60 if (bound.superclass() != null) {
61 result = resolve(env, origin, bound.superclass(), simpleName);
66 for (ClassSymbol i : bound.interfaces())
    [all...]
  /external/turbine/java/com/google/turbine/binder/bound/
AnnotationValue.java 17 package com.google.turbine.binder.bound;
BoundClass.java 17 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
ClassValue.java 17 package com.google.turbine.binder.bound;
EnumConstantValue.java 17 package com.google.turbine.binder.bound;
HeaderBoundClass.java 17 package com.google.turbine.binder.bound;
24 /** A bound node that augments {@link BoundClass} with superclasses and interfaces. */
AnnotationMetadata.java 17 package com.google.turbine.binder.bound;
PackageSourceBoundClass.java 17 package com.google.turbine.binder.bound;
SourceBoundClass.java 17 package com.google.turbine.binder.bound;
SourceHeaderBoundClass.java 17 package com.google.turbine.binder.bound;
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
spirv_definition.h 28 uint32_t bound; member in struct:spv_header_t
  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
EstimatedParameter.java 25 * 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 = bound
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/
ResolvedLambdaConstraintType.java 25 private ResolvedType bound; field in class:ResolvedLambdaConstraintType
27 private ResolvedLambdaConstraintType(ResolvedType bound) {
28 this.bound = bound;
33 return "? super " + bound.describe();
37 return bound;
50 public static ResolvedLambdaConstraintType bound(ResolvedType bound){ method in class:ResolvedLambdaConstraintType
51 return new ResolvedLambdaConstraintType(bound);
56 return bound.isAssignableBy(other)
    [all...]
  /external/tensorflow/tensorflow/core/lib/monitoring/
sampler.cc 80 double bound = scale; local
82 bucket_limits.push_back(bound);
83 bound *= growth_factor;
  /external/valgrind/drd/tests/
omp_prime.c 19 int bound = floor(sqrt ((double)v)) + 1; local
21 for (i = 2; i < bound; i++)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
x86-64-opcode-inval.s 15 bound: label
16 bound %edx,(%eax)
  /external/annotation-tools/scene-lib/src/type/
BoundedType.java 15 * {@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) {
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
util.rb 127 # 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/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
AnalyseNewJavaParserHelpersTest.java 93 ResolvedTypeParameterDeclaration.Bound bound = type.asReferenceType().typeParametersValues().get(0).asTypeParameter().getBounds().get(0); local
94 assertEquals(true, bound.isExtends());
95 assertEquals("com.github.javaparser.ast.Node", bound.getType().describe());
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
RangeDecoder.java 26 int bound = (range >>> BIT_MODEL_TOTAL_BITS) * prob; local
29 // Compare code and bound as if they were unsigned 32-bit integers.
30 if ((code ^ 0x80000000) < (bound ^ 0x80000000)) {
31 range = bound;
36 range -= bound;
37 code -= bound;
  /external/mesa3d/src/compiler/glsl/
ast_array_index.cpp 174 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/gm/
bigtileimagefilter.cpp 57 const SkRect bound = SkRect::MakeIWH(kWidth, kHeight); variable
67 canvas->saveLayer(&bound, &p);
  /external/skqp/gm/
bigtileimagefilter.cpp 57 const SkRect bound = SkRect::MakeIWH(kWidth, kHeight); variable
67 canvas->saveLayer(&bound, &p);
  /external/turbine/javatests/com/google/turbine/bytecode/sig/
SigRegressionTest.java 38 Sig.ClassTySig bound = (Sig.ClassTySig) tyParam.classBound(); local
39 assertThat(bound.pkg()).isEqualTo("java/lang");
40 assertThat(Iterables.getOnlyElement(bound.classes()).simpleName()).isEqualTo("Object");
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/typeinference/bounds/
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...]

Completed in 1130 milliseconds

1 2 3 4 5 6 7 8 91011>>