/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/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
D | IDBKeyRange.cpp | 102 IDBKey* bound = scriptValueToIDBKey(toIsolate(context), boundValue); in lowerBound() local 103 if (!bound || !bound->isValid()) { in lowerBound() 108 return IDBKeyRange::create(bound, 0, open ? LowerBoundOpen : LowerBoundClosed, UpperBoundOpen); in lowerBound() 113 IDBKey* bound = scriptValueToIDBKey(toIsolate(context), boundValue); in upperBound() local 114 if (!bound || !bound->isValid()) { in upperBound() 119 return IDBKeyRange::create(0, bound, LowerBoundOpen, open ? UpperBoundOpen : UpperBoundClosed); in upperBound() 122 IDBKeyRange* IDBKeyRange::bound(ExecutionContext* context, const ScriptValue& lowerValue, const Scr… in bound() function in WebCore::IDBKeyRange
|
D | IDBKeyRange.h | 70 …static IDBKeyRange* lowerBound(ExecutionContext*, const ScriptValue& bound, bool open, ExceptionSt… 71 …static IDBKeyRange* upperBound(ExecutionContext*, const ScriptValue& bound, bool open, ExceptionSt… 72 …static IDBKeyRange* bound(ExecutionContext*, const ScriptValue& lower, const ScriptValue& upper, b…
|
/external/chromium_org/tools/telemetry/telemetry/page/actions/ |
D | gesture_common.js | 11 var bound = el.getBoundingClientRect(); 12 var rect = { top: bound.top, 13 left: bound.left, 14 width: bound.width, 15 height: bound.height };
|
/external/chromium_org/third_party/skia/src/gpu/ |
D | GrClipMaskCache.h | 117 const SkIRect& bound) { in acquireMask() argument 126 back->acquireMask(fContext, clipGenID, desc, bound); in acquireMask() 161 void getLastBound(SkIRect* bound) const { in getLastBound() argument 165 bound->setEmpty(); in getLastBound() 171 *bound = back->fLastBound; in getLastBound() 202 const SkIRect& bound) { in acquireMask() 208 fLastBound = bound; in acquireMask()
|
/external/skia/src/gpu/ |
D | GrClipMaskCache.h | 117 const SkIRect& bound) { in acquireMask() argument 126 back->acquireMask(fContext, clipGenID, desc, bound); in acquireMask() 161 void getLastBound(SkIRect* bound) const { in getLastBound() argument 165 bound->setEmpty(); in getLastBound() 171 *bound = back->fLastBound; in getLastBound() 202 const SkIRect& bound) { in acquireMask() 208 fLastBound = bound; in acquireMask()
|
/external/chromium_org/third_party/lzma_sdk/ |
D | Bcj2.c | 29 #define IF_BIT_0(p) ttt = *(p); bound = (range >> kNumBitModelTotalBits) * ttt; if (code < bound) 30 #define UPDATE_0(p) range = bound; *(p) = (CProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits)); … 31 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >> kNumMoveBits)); NOR… 62 UInt32 bound; in Bcj2_Decode() local
|
/external/lzma/C/ |
D | Bcj2.c | 29 #define IF_BIT_0(p) ttt = *(p); bound = (range >> kNumBitModelTotalBits) * ttt; if (code < bound) 30 #define UPDATE_0(p) range = bound; *(p) = (CProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits)); … 31 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >> kNumMoveBits)); NOR… 62 UInt32 bound; in Bcj2_Decode() local
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | ExceptionMessages.h | 71 static String indexExceedsMaximumBound(const char* name, NumberType given, NumberType bound) in indexExceedsMaximumBound() argument 73 bool eq = given == bound; in indexExceedsMaximumBound() 82 result.append(formatNumber(bound)); in indexExceedsMaximumBound() 88 static String indexExceedsMinimumBound(const char* name, NumberType given, NumberType bound) in indexExceedsMinimumBound() argument 90 bool eq = given == bound; in indexExceedsMinimumBound() 99 result.append(formatNumber(bound)); in indexExceedsMinimumBound()
|
/external/smack/src/org/xbill/DNS/ |
D | UDPClient.java | 43 private boolean bound = false; field in UDPClient 76 bound = true; in bind_random() 91 if (bound) in bind() 98 bound = true; in bind() 104 if (!bound) in connect()
|
/external/libcxx/test/algorithms/alg.sorting/alg.binary.search/upper.bound/ |
D | Android.mk | 17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.binary.search/upper.bound/Android.… 19 test_name := algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound 23 test_name := algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound_comp
|
/external/libcxx/test/algorithms/alg.sorting/alg.binary.search/lower.bound/ |
D | Android.mk | 17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.binary.search/lower.bound/Android.… 19 test_name := algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound 23 test_name := algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound_comp
|
/external/openssl/crypto/asn1/ |
D | asn_mime.c | 103 static int mime_bound_check(char *line, int linelen, char *bound, int blen); 104 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret); 283 char bound[33], c; in SMIME_write_ASN1() local 299 RAND_pseudo_bytes((unsigned char *)bound, 32); in SMIME_write_ASN1() 301 c = bound[i] & 0xf; in SMIME_write_ASN1() 304 bound[i] = c; in SMIME_write_ASN1() 306 bound[32] = 0; in SMIME_write_ASN1() 313 bound, mime_eol, mime_eol); in SMIME_write_ASN1() 317 BIO_printf(bio, "------%s%s", bound, mime_eol); in SMIME_write_ASN1() 320 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eol); in SMIME_write_ASN1() [all …]
|
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/ |
D | asn_mime.c | 103 static int mime_bound_check(char *line, int linelen, char *bound, int blen); 104 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret); 283 char bound[33], c; in SMIME_write_ASN1() local 299 RAND_pseudo_bytes((unsigned char *)bound, 32); in SMIME_write_ASN1() 301 c = bound[i] & 0xf; in SMIME_write_ASN1() 304 bound[i] = c; in SMIME_write_ASN1() 306 bound[32] = 0; in SMIME_write_ASN1() 313 bound, mime_eol, mime_eol); in SMIME_write_ASN1() 317 BIO_printf(bio, "------%s%s", bound, mime_eol); in SMIME_write_ASN1() 320 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eol); in SMIME_write_ASN1() [all …]
|
/external/chromium_org/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/chromium_org/native_client_sdk/src/libraries/ppapi_simple/ |
D | ps_context_2d.cc | 57 ctx->bound = 0; in PSContext2DHandleEvent() 68 ctx->bound = in PSContext2DHandleEvent() 94 if (!ctx->bound) return 0; in PSContext2DGetBuffer() 125 if (ctx->bound && ctx->image) { in PSContext2DSwapBuffer()
|
/external/chromium_org/v8/src/ |
D | types.h | 459 int IndexInUnion(int bound, UnionHandle unioned, int current_size); 603 i::Handle<i::Map> map, TypeHandle bound, Region* region) { in New() argument 606 type->Set(0, bound); in New() 617 TypeHandle bound = BitsetType::New(BitsetType::Lub(*map), region); in New() local 618 return New(map, bound, region); in New() 639 i::Handle<i::Object> value, TypeHandle bound, Region* region) { in New() argument 642 type->Set(0, bound); in New() 648 TypeHandle bound = BitsetType::New(BitsetType::Lub(*value), region); in New() local 649 return New(value, bound, region); in New() 668 static ContextHandle New(TypeHandle outer, TypeHandle bound, Region* region) { in New() argument [all …]
|
/external/chromium_org/gpu/GLES2/extensions/CHROMIUM/ |
D | CHROMIUM_texture_mailbox.txt | 42 Associates the currently bound texture object with the mailbox name. A 45 previous association is broken. The currently bound texture object is not 71 <texture> is used instead of the currently bound texture. This operation 72 does not change the texture bindings or alter the bound texture in any way. 84 Deletes the currently bound texture object, and redefines its texture name 94 If glConsumeTextureCHROMIUM generates an error, the currently bound texture 107 INVALID_OPERATION is generated if the currently bound texture was previously 116 bindings or alter the currently bound texture in any way. Otherwise performs
|
/external/chromium_org/ui/views/controls/textfield/ |
D | textfield_unittest.cc | 262 void MouseClick(const gfx::Rect bound, int x_offset) { in MouseClick() argument 263 gfx::Point point(bound.x() + x_offset, bound.y() + bound.height() / 2); in MouseClick() 1488 gfx::Rect bound = GetCursorBounds(sel); in TEST_F() local 1490 EXPECT_EQ(bound.x(), GetCursorBounds(sel).x()); in TEST_F() 1491 cursor_bounds.push_back(bound); in TEST_F() 1496 bound = GetCursorBounds(sel); in TEST_F() 1498 EXPECT_EQ(bound.x(), GetCursorBounds(sel).x()); in TEST_F() 1499 cursor_bounds.push_back(bound); in TEST_F() 1502 bound = GetCursorBounds(sel); in TEST_F() 1504 EXPECT_EQ(bound.x(), GetCursorBounds(sel).x()); in TEST_F() [all …]
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
D | CA.pl | 175 my ($infile, $outfile, $bound) = @_; 180 $flag = 1 if (/^-----BEGIN.*$bound/) ; 182 if (/^-----END.*$bound/) {
|
D | CA.pl.in | 175 my ($infile, $outfile, $bound) = @_; 180 $flag = 1 if (/^-----BEGIN.*$bound/) ; 182 if (/^-----END.*$bound/) {
|
/external/openssl/apps/ |
D | CA.pl | 175 my ($infile, $outfile, $bound) = @_; 180 $flag = 1 if (/^-----BEGIN.*$bound/) ; 182 if (/^-----END.*$bound/) {
|
D | CA.pl.in | 175 my ($infile, $outfile, $bound) = @_; 180 $flag = 1 if (/^-----BEGIN.*$bound/) ; 182 if (/^-----END.*$bound/) {
|
/external/chromium_org/third_party/angle/extensions/ |
D | ANGLE_framebuffer_blit.txt | 85 result in an INVALID_FRAMEBUFFER_OPERATION error if the object bound 104 "While an application-created framebuffer object is bound to 111 the object bound to READ_FRAMEBUFFER_BINDING_ANGLE is not "framebuffer 113 error if the object bound to READ_FRAMEBUFFER_BINDING_ANGLE is not 132 copied from the source rectangle, bound by the locations (srcX0, 133 srcY0) and (srcX1, srcY1), to the destination rectangle, bound by 173 INVALID_FRAMEBUFFER_OPERATION error if the objects bound to 218 to the state of the bound framebuffer object, and any previous 221 If a framebuffer object is bound to DRAW_FRAMEBUFFER_ANGLE or 224 framebuffer is bound to the corresponding bind point. Calling [all …]
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
D | regress-serialized-slots.js | 41 function bound() function 48 return bound;
|