/external/v8/src/ |
log.cc | 131 bool overflow_; // Tell whether a buffer overflow has occurred. 328 bool overflow = Remove(&sample); local 331 LOG(isolate, TickEvent(&sample, overflow)); 332 overflow = Remove(&sample); 1131 void Logger::TickEvent(TickSample* sample, bool overflow) { 1146 if (overflow) { 1147 msg.Append(",overflow"); [all...] |
apinatives.js | 64 // if we need to bail out from a stack overflow.
|
/external/zlib/ |
trees.c | 509 int overflow = 0; /* number of elements with bit length too large */ local 514 * overflow in the case of the bit length tree). 521 if (bits > max_length) bits = max_length, overflow++; 534 if (overflow == 0) return; 536 Trace((stderr,"\nbit length overflow\n")); 544 s->bl_count[bits+1] += 2; /* move one overflow item as its brother */ 546 /* The brother of the overflow item also moves one step up, 549 overflow -= 2; 550 } while (overflow > 0); [all...] |
/external/webkit/Source/WebCore/bindings/objc/ |
DOMCSS.mm | 917 - (NSString *)overflow 919 return [self getPropertyValue:@"overflow"]; 922 - (void)setOverflow:(NSString *)overflow 924 [self setProperty:@"overflow" value:overflow priority:@""];
|
/build/tools/droiddoc/templates-sdk/assets/ |
android-developer-docs.js | 49 $("body").css({'overflow':'auto'}); 50 $("html").css({'overflow':'auto'}); 52 $("#doc-content").css({'overflow':'visible', 'border-left':'3px solid #DDD'}); 54 $("#nav-tree").css({'overflow-y': 'auto'});
|
/external/chromium/third_party/libevent/ |
evdns.c | [all...] |
/external/doclava/res/assets/templates/assets/ |
doclava-developer-docs.js | 49 $("body").css({'overflow':'auto'}); 50 $("html").css({'overflow':'auto'}); 52 $("#doc-content").css({'overflow':'visible', 'border-left':'3px solid #DDD'}); 54 $("#nav-tree").css({'overflow-y': 'auto'});
|
doclava-developer-core.css | 19 overflow:hidden; /* keeps scrollbar off IE */ 80 overflow:auto;
|
/external/oprofile/include/ |
sstream | 26 /* seekoff and ideas for overflow is largely borrowed from libstdc++-v3 */ 101 overflow(int c = EOF)
|
/external/v8/test/mjsunit/ |
regexp.js | 334 // Check decimal escapes doesn't overflow. 338 "Overflow decimal escape"); 341 // Check numbers in quantifiers doesn't overflow and doesn't throw on 416 assertTrue(String(e).indexOf("Stack overflow") >= 0, "overflow");
|
smi-ops-inlined.js | 94 assertEquals(SMI_MIN - ONE, Sub1(SMI_MIN)); // overflow 95 assertEquals(ONE - SMI_MIN, Sub1Reversed(SMI_MIN)); // overflow 101 assertEquals(SMI_MIN - ONE_HUNDRED, Sub100(SMI_MIN)); // overflow 102 assertEquals(ONE_HUNDRED - SMI_MIN, Sub100Reversed(SMI_MIN)); // overflow
|
/external/v8/tools/ |
logreader.js | 108 // Filter out possible 'overflow' string.
|
/external/valgrind/main/memcheck/tests/ |
addressable.stderr.exp | 27 overflow in your program's main thread (unlikely but
|
/external/webkit/Source/WebCore/css/ |
mediaControls.css | 48 overflow: hidden;
|
mediaControlsEfl.css | 42 overflow: hidden;
|
/external/stlport/src/ |
strstream.cpp | 116 strstreambuf::int_type strstreambuf::overflow(int_type c) { function in class:strstreambuf
|
/ndk/sources/cxx-stl/stlport/src/ |
strstream.cpp | 116 strstreambuf::int_type strstreambuf::overflow(int_type c) { function in class:strstreambuf
|
/external/v8/src/ia32/ |
assembler-ia32.h | 191 overflow = 0, enumerator in enum:v8::internal::Condition 1031 inline bool overflow() const { return pc_ >= reloc_info_writer.pos() - kGap; } function in class:v8::internal::Assembler [all...] |
/external/v8/test/cctest/ |
test-disasm-ia32.cc | 297 __ j(overflow, &Ljcc); 316 __ j(overflow, &Ljcc); 402 __ cmov(overflow, eax, Operand(eax, 0));
|
/frameworks/base/media/libstagefright/codecs/amrnb/dec/src/ |
dec_amr.cpp | 242 /* Initialize overflow Flag */ 244 s->overflow = 0; 419 /* Initialize overflow Flag */ 421 state->overflow = 0; [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
Folder.java | 296 ArrayList<ShortcutInfo> overflow = new ArrayList<ShortcutInfo>(); local 302 overflow.add(child); 314 for (ShortcutInfo item: overflow) { [all...] |
/external/clang/lib/CodeGen/ |
CGExprCXX.cpp | 513 // If 'count' was a negative number, it's an overflow. 519 // overflow. 527 // Scale numElements by that. This might overflow, but we don't 534 bool overflow; local 536 = adjustedCount.umul_ov(typeSizeMultiplier, overflow); 537 hasAnyOverflow |= overflow; 542 // used if there was overflow. 545 allocationSize = allocationSize.uadd_ov(cookieSize, overflow); 546 hasAnyOverflow |= overflow; 549 // On overflow, produce a -1 so operator new will fail [all...] |
/external/llvm/lib/Support/ |
APFloat.cpp | 178 bool negative, overflow; 190 overflow = false; 199 overflow = true; 203 overflow = true; 205 if (!overflow) { 211 overflow = true; 214 if (overflow) 833 /* Our callers should never cause us to overflow. */ 1062 /* Our exponent should not overflow. */ 1111 /* Handle overflow. Sign is preserved. We either become infinity o [all...] |
/dalvik/vm/mterp/armv5te/ |
footer.S | 578 @ find space for the new stack frame, check for overflow 588 blo .LstackOverflow @ yes, this frame will overflow stack [all...] |
/external/bluetooth/glib/glib/ |
gstrfuncs.c | 404 * If the correct value would cause overflow, plus or minus %HUGE_VAL 410 * you can reliably detect overflow and underflow. 705 gboolean overflow; local 760 overflow = FALSE; 773 /* Check for overflow. */ 775 overflow = TRUE; 792 if (G_UNLIKELY (overflow)) 835 * If the correct value would cause overflow, %G_MAXUINT64 877 * If the correct value would cause overflow, %G_MAXINT64 or %G_MININT64 1169 case ENFILE: return "file table overflow"; [all...] |