/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/ |
D | EstimatedParameter.java | 52 private boolean bound; field in EstimatedParameter 63 bound = false; in EstimatedParameter() 75 boolean bound) { in EstimatedParameter() argument 78 this.bound = bound; in EstimatedParameter() 88 bound = parameter.bound; in EstimatedParameter() 116 public void setBound(boolean bound) { in setBound() argument 117 this.bound = bound; in setBound() 123 return bound; in isBound()
|
/external/bison/lib/ |
D | getdtablesize.c | 77 unsigned int bound; in getdtablesize() local 78 for (bound = 0x10000; _setmaxstdio (bound) < 0; bound = bound / 2) in getdtablesize() 81 dtablesize = bound; in getdtablesize()
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/ |
D | RangeDecoder.java | 26 int bound = (range >>> BIT_MODEL_TOTAL_BITS) * prob; in decodeBit() local 30 if ((code ^ 0x80000000) < (bound ^ 0x80000000)) { in decodeBit() 31 range = bound; in decodeBit() 36 range -= bound; in decodeBit() 37 code -= bound; in decodeBit()
|
D | RangeEncoder.java | 106 int bound = (range >>> BIT_MODEL_TOTAL_BITS) * prob; in encodeBit() local 110 range = bound; in encodeBit() 114 low += bound & 0xFFFFFFFFL; in encodeBit() 115 range -= bound; in encodeBit()
|
/external/lzma/C/ |
D | Bcj2.c | 31 #define IF_BIT_0(p) ttt = *(p); bound = (range >> kNumBitModelTotalBits) * ttt; if (code < bound) 32 #define UPDATE_0(p) range = bound; *(p) = (CProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits)); … 33 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >> kNumMoveBits)); NOR… 64 UInt32 bound; in Bcj2_Decode() local
|
/external/clang/test/SemaObjC/ |
D | parameterized_classes_arc.m | 81 @interface PC2<T : __strong id> // expected-error {{type bound '__strong id' for type parameter 'T'… 84 @interface PC3<T : __weak id> // expected-error {{type bound '__weak id' for type parameter 'T' can… 87 @interface PC4<T : __strong Forward*> // expected-error {{type bound 'Forward *__strong' for type p… 90 @interface PC5<T : __weak Forward*> // expected-error {{type bound 'Forward *__weak' for type param… 93 @interface PC6<T : StrongID> // expected-error {{type bound 'StrongID' (aka '__strong id') for type… 96 @interface PC7<T : StrongForward> // expected-error {{type bound 'StrongForward' (aka 'Forward *__s… 100 @interface PC8<T : const id> // expected-error {{type bound 'const id' for type parameter 'T' canno… 103 @interface PC9<T : volatile id> // expected-error {{type bound 'volatile id' for type parameter 'T'… 106 @interface PC10<T : __attribute__((address_space(256))) id> // expected-error {{type bound '__attri…
|
D | parameterized_classes.m | 28 // Parse type parameters with a bound 35 // Parse a type parameter with a bound that terminates in '>>'. 65 @interface PC9<T : int, // expected-error{{type bound 'int' for type parameter 'T' is not an Object… 66 …U : NSString> : NSObject // expected-error{{missing '*' in type bound 'NSString' for type paramete… 89 @interface PC11<T, U> : NSObject // expected-error{{missing type bound 'NSObject *' for type parame… 100 @class PC13<U>; // expected-error{{missing type bound 'NSObject *' for type parameter 'U' in @class… 103 @class PC12<T>; // expected-error{{missing type bound 'NSObject *' for type parameter 'T' in @class… 151 …<T : NSObject *, // expected-error{{type bound 'NSObject *' for type parameter 'T' conflicts with … 152 …X : id> () // expected-error{{type bound 'id' for type parameter 'X' conflicts with previous bound… 268 …rgs8b; // expected-error{{type argument 'NSObject *' does not satisfy the bound ('id<NSCopying>') … [all …]
|
/external/clang/test/SemaObjCXX/ |
D | parameterized_classes_arc.mm | 93 @interface PC2<T : __strong id> // expected-error {{type bound '__strong id' for type parameter 'T'… 96 @interface PC3<T : __weak id> // expected-error {{type bound '__weak id' for type parameter 'T' can… 99 @interface PC4<T : __strong Forward*> // expected-error {{type bound 'Forward *__strong' for type p… 102 @interface PC5<T : __weak Forward*> // expected-error {{type bound 'Forward *__weak' for type param… 105 @interface PC6<T : StrongID> // expected-error {{type bound 'StrongID' (aka '__strong id') for type… 108 @interface PC7<T : StrongForward> // expected-error {{type bound 'StrongForward' (aka 'Forward *__s… 112 @interface PC8<T : const id> // expected-error {{type bound 'const id' for type parameter 'T' canno… 115 @interface PC9<T : volatile id> // expected-error {{type bound 'volatile id' for type parameter 'T'… 118 @interface PC10<T : __attribute__((address_space(256))) id> // expected-error {{type bound '__attri…
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/actions/ |
D | gesture_common.js | 13 var bound = { left: client_rect.left, variable 23 bound.left += frame_bound.left; 24 bound.top += frame_bound.top; 28 return bound;
|
/external/guice/core/src/com/google/inject/util/ |
D | Types.java | 80 public static WildcardType subtypeOf(Type bound) { in subtypeOf() argument 81 return new WildcardTypeImpl(new Type[] { bound }, MoreTypes.EMPTY_TYPE_ARRAY); in subtypeOf() 89 public static WildcardType supertypeOf(Type bound) { in supertypeOf() argument 90 return new WildcardTypeImpl(new Type[] { Object.class }, new Type[] { bound }); in supertypeOf()
|
/external/clang/test/PCH/ |
D | objc_parameterized_classes.m | 27 …<T : NSObject *, // expected-error{{type bound 'NSObject *' for type parameter 'T' conflicts with … 29 …U : id> (Cat2) // expected-error{{type bound 'id' for type parameter 'U' conflicts with previous b…
|
/external/v8/test/mjsunit/ |
D | debug-stepin-function-call.js | 140 var bound = g.bind(null, 3); 142 bound(); 147 var bound = g.bind(null, 3); 149 bound.apply(null, [3]);
|
/external/pcre/dist/testdata/ |
D | testoutput16 | 66 Subject length lower bound = 17 94 Subject length lower bound = 1 102 Subject length lower bound = 1 110 Subject length lower bound = 1 126 Subject length lower bound = 1 136 Subject length lower bound = 1
|
D | testoutput18-16 | 341 Subject length lower bound = 1 380 Subject length lower bound = 3 400 Subject length lower bound = 1 419 Subject length lower bound = 1 438 Subject length lower bound = 1 458 Subject length lower bound = 1 668 Subject length lower bound = 1 694 Subject length lower bound = 1 714 Subject length lower bound = 1 726 Subject length lower bound = 1 [all …]
|
D | testoutput18-32 | 339 Subject length lower bound = 1 378 Subject length lower bound = 3 398 Subject length lower bound = 1 417 Subject length lower bound = 1 436 Subject length lower bound = 1 456 Subject length lower bound = 1 665 Subject length lower bound = 1 691 Subject length lower bound = 1 711 Subject length lower bound = 1 723 Subject length lower bound = 1 [all …]
|
/external/llvm/test/CodeGen/ARM/ |
D | sat-arith.ll | 24 ; upper-bound of the immediate argument 33 ; lower-bound of the immediate argument 42 ; upper-bound of the immediate argument 51 ; lower-bound of the immediate argument
|
/external/v8/test/message/ |
D | let-lexical-name-prohibited.out | 1 *%(basename)s:7: SyntaxError: let is disallowed as a lexically bound name 4 SyntaxError: let is disallowed as a lexically bound name
|
D | let-lexical-name-in-object-prohibited.out | 1 *%(basename)s:7: SyntaxError: let is disallowed as a lexically bound name 4 SyntaxError: let is disallowed as a lexically bound name
|
D | let-lexical-name-in-array-prohibited.out | 1 *%(basename)s:7: SyntaxError: let is disallowed as a lexically bound name 4 SyntaxError: let is disallowed as a lexically bound name
|
/external/skia/src/core/ |
D | SkTextToPathIter.h | 86 SkScalar bound = fBoundsBase[i] - (fXYIndex ? x : y); in setPosition() local 88 bound += xOffset; in setPosition() 90 fBounds[i] = bound / fScale; in setPosition()
|
/external/mesa3d/src/egl/main/ |
D | eglsurface.c | 50 EGLint bound = surf->Config->MaxSwapInterval; in _eglClampSwapInterval() local 51 if (interval >= bound) { in _eglClampSwapInterval() 52 interval = bound; in _eglClampSwapInterval() 55 bound = surf->Config->MinSwapInterval; in _eglClampSwapInterval() 56 if (interval < bound) in _eglClampSwapInterval() 57 interval = bound; in _eglClampSwapInterval()
|
/external/skia/tests/ |
D | DrawTextTest.cpp | 19 static void create(SkBitmap* bm, SkIRect bound) { in create() argument 20 bm->allocN32Pixels(bound.width(), bound.height()); in create()
|
/external/v8/test/mjsunit/compiler/ |
D | regress-serialized-slots.js | 41 function bound() function 48 return bound;
|
/external/bison/src/ |
D | location.c | 217 boundary_set_from_string (boundary *bound, char *loc_str) in boundary_set_from_string() argument 224 bound->column = atoi (delim+1); in boundary_set_from_string() 228 bound->line = atoi (delim+1); in boundary_set_from_string() 229 bound->file = uniqstr_new (loc_str); in boundary_set_from_string()
|
/external/eigen/Eigen/src/Core/products/ |
D | SelfadjointMatrixVector.h | 75 Index bound = (std::max)(Index(0),size-8) & 0xfffffffe; in run() local 77 bound = size - bound; in run() 79 for (Index j=FirstTriangular ? bound : 0; in run() 80 j<(FirstTriangular ? size : bound);j+=2) in run() 148 for (Index j=FirstTriangular ? 0 : bound;j<(FirstTriangular ? bound : size);j++) in run()
|