/external/libvpx/libvpx/vp8/encoder/arm/neon/ |
fastquantizeb_neon.asm | 74 vshr.s16 q4, #1 ; right shift 1 after vqdmulh 82 vshr.s16 q10, #1 ; right shift 1 after vqdmulh 195 vshr.s16 q12, #1 ; right shift 1 after vqdmulh
|
/external/v8/test/mjsunit/ |
undeletable-functions.js | 141 assertFalse(hasOwnProperty.call(type, prop), "still there after delete: " + prop); 154 assertTrue(type.hasOwnProperty(prop), "not there after delete: " + prop); 166 assertTrue(type.hasOwnProperty(prop), "not there after delete: " + prop);
|
/frameworks/base/core/java/android/text/ |
TextLine.java | 608 * @param after true if the new offset should logically follow the provided 613 boolean runIsRtl, int offset, boolean after) { 615 if (runIndex < 0 || offset == (after ? mLen : 0)) { 619 if (after) { 633 int target = after ? offset + 1 : offset; 662 return after ? spanLimit : spanStart; 668 int cursorOpt = after ? Paint.CURSOR_AFTER : Paint.CURSOR_BEFORE; [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pickletools.py | 60 + Recursive objects. For example, after "L = []; L.append(L)", L is a 815 No matter how many object are on the stack after the topmost 844 # what the stack looks like after this opcode runs; a list [all...] |
sysconfig.py | 257 after = value[m.end():] 258 value = value[:m.start()] + item + after 259 if "$" in after: 318 # _sysconfigdata module after the changes introduced by #15298:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pickletools.py | 60 + Recursive objects. For example, after "L = []; L.append(L)", L is a 815 No matter how many object are on the stack after the topmost 844 # what the stack looks like after this opcode runs; a list [all...] |
sysconfig.py | 257 after = value[m.end():] 258 value = value[:m.start()] + item + after 259 if "$" in after: 318 # _sysconfigdata module after the changes introduced by #15298:
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
timelinePanel.css | 260 .timeline-tree-item.warning::after, 261 .timeline-tree-item.child-warning::after { 274 .timeline-tree-item.warning::after, 275 .timeline-tree-item.child-warning::after { 280 .timeline-tree-item.child-warning::after {
|
/external/chromium_org/third_party/freetype/src/autofit/ |
afcjk.c | 442 /* we simply take the median value after a simple sort */ 1975 AF_Edge before, after; local [all...] |
aflatin.c | 366 /* we simply take the median value after a simple sort */ 2172 AF_Edge before, after; local [all...] |
aflatin2.c | 359 /* we simply take the median value after a simple sort */ 2222 AF_Edge before, after; local [all...] |
/external/freetype/src/autofit/ |
afcjk.c | 445 /* we simply take the median value after a simple sort */ 1980 AF_Edge before, after; local [all...] |
aflatin.c | 429 /* we simply take the median value after a simple sort */ 2273 AF_Edge before, after; local [all...] |
aflatin2.c | 361 /* we simply take the median value after a simple sort */ 2253 AF_Edge before, after; local [all...] |
/external/chromium/net/tools/flip_server/ |
balsa_frame.cc | 692 base::StringPiece* before, base::StringPiece* after) { 706 *after = base::StringPiece(p + 1, end - (p + 1)); 708 *after = base::StringPiece(""); 710 StringPieceUtils::RemoveWhitespaceContext(after); 716 *after = ""; 771 // Strip the key whitespace after checking that there is a value. [all...] |
/external/chromium_org/net/tools/flip_server/ |
balsa_frame.cc | 692 base::StringPiece* before, base::StringPiece* after) { 706 *after = base::StringPiece(p + 1, end - (p + 1)); 708 *after = base::StringPiece(""); 710 StringPieceUtils::RemoveWhitespaceContext(after); 716 *after = ""; 771 // Strip the key whitespace after checking that there is a value. [all...] |
/frameworks/av/media/libmedia/ |
AudioTrackShared.cpp | 78 TIMEOUT_CONTINUE, // additional chances after TIMEOUT_FINITE 218 struct timespec after; local 219 clock_gettime(CLOCK_MONOTONIC, &after); 220 total.tv_sec += after.tv_sec - before.tv_sec; 221 long deltaNs = after.tv_nsec - before.tv_nsec; 230 before = after; 366 TIMEOUT_CONTINUE, // additional chances after TIMEOUT_FINITE 582 // After flush(), allow releaseBuffer() on a previously obtained buffer; 829 mEnd = mFrameCount; // this is what allows playback to continue after the loop
|
/cts/tests/tests/widget/src/android/widget/cts/ |
AutoCompleteTextViewTest.java | 727 protected void onTextChanged(CharSequence text, int start, int before, int after) { 728 super.onTextChanged(text, start, before, after); 733 mAfter = after;
|
/external/chromium/chrome/browser/resources/net_internals/ |
eventsview.js | 103 // How soon after updating the filter list the counter should be updated. 155 // started one after another, so sort in the opposite order of their 180 * appear right after the SourceEntry with the highest source ID received 270 * the parameter, to negate it. Before is more natural, after 401 // SourceEntry that should be after |sourceEntry|, if it needs 491 * logging events. In either case, called after clearing the old entries,
|
/external/libpng/ |
CHANGES | 156 of the color bytes instead of after 186 added read of CRC after IEND chunk for embedded PNGs (Laszlo Nyul) 405 Removed lines after Dynamic Dependencies" in makefile.aco . [all...] |
/frameworks/base/core/java/android/animation/ |
AnimatorSet.java | 26 * can be set up to play together, in sequence, or after a specified delay. 111 // The amount of time in ms to delay starting the animation after start() is called 172 * @param items The animations that will be started one after another. 191 * @param items The animations that will be started one after another. 269 * <code>play(a1).after(a2)</code> sets up the AnimatorSet to play 392 * The amount of time, in milliseconds, to delay starting the animation after 403 * The amount of time, in milliseconds, to delay starting the animation after 506 // insert "play-after" delays 693 // The Dependency rule (WITH or AFTER) that the listener should wait for on 715 if (mRule == Dependency.AFTER) { 1146 public Builder after(Animator anim) { method in class:AnimatorSet.Builder 1166 public Builder after(long delay) { method in class:AnimatorSet.Builder [all...] |
/external/chromium_org/v8/test/mjsunit/ |
object-freeze.js | 233 // Setting elements after freezing should not be allowed 241 // Also testing that getter/setter properties work after freezing 283 // Accessors on fast object should behavior properly after freezing
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
DropBoxTest.java | 66 long after = System.currentTimeMillis(); local 77 assertTrue(e2.getTimeMillis() < after); 93 long after = System.currentTimeMillis(); 733 int after = countOpenFiles(); local 734 assertTrue(after > 0); 735 assertTrue(after < before + 20);
|
/sdk/testapps/gridlayoutTest/v7-gridlayout/libs/ |
android-support-v7-gridlayout.jar | |
/cts/suite/cts/deviceTests/browserbench/assets/octane/css/ |
bootstrap.css | 145 .clearfix:after { 149 .clearfix:after { 189 .row:after { 193 .row:after { 282 .row-fluid:after { 286 .row-fluid:after { 358 .container:after { 362 .container:after { 371 .container-fluid:after { 375 .container-fluid:after { [all...] |