/external/v8/test/mjsunit/ |
array-push.js | 35 assertEquals([], a, "after .push()"); 37 assertEquals(1, a.push(1), "length after .push(1)"); 38 assertEquals([1], a, "after .push(1)"); 40 assertEquals(3, a.push(2, 3), "length after .push(2, 3)"); 41 assertEquals([1, 2, 3], a, "after .push(2, 3)"); 44 "length after .push(4, 5, 6)"); 46 "after .push(4, 5, 5)"); 49 "length after .push(7, 8, 9, 10)"); 51 "after .push(7, 8, 9, 10)"); 54 "length after .push(11, 12, 13, 14, 15)") [all...] |
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
KeyframeAnimationEffect.cpp | 87 static PassRefPtr<BlendedCompositableValue> create(const AnimationEffect::CompositableValue* before, const AnimationEffect::CompositableValue* after, double fraction) 89 return adoptRef(new BlendedCompositableValue(before, after, fraction)); 100 BlendedCompositableValue(const AnimationEffect::CompositableValue* before, const AnimationEffect::CompositableValue* after, double fraction) 102 , m_after(const_cast<AnimationEffect::CompositableValue*>(after)) 104 , m_dependsOnUnderlyingValue(before->dependsOnUnderlyingValue() || after->dependsOnUnderlyingValue()) 290 PropertySpecificKeyframeVector::const_iterator after; local 297 after = before + 1; 299 ASSERT((*after)->offset() > offset); 301 after = m_keyframes.end() - 1; 302 before = after - 1 [all...] |
/external/freetype/src/base/ |
ftutil.c | 288 FT_ListNode after = list->head; local 291 node->next = after; 294 if ( !after ) 297 after->prev = node; 309 FT_ListNode before, after; local 313 after = node->next; 316 before->next = after; 318 list->head = after; 320 if ( after ) 321 after->prev = before 333 FT_ListNode before, after; local [all...] |
/external/clang/test/Parser/ |
cxx0x-literal-operators.cpp | 5 expected-error {{string literal after 'operator' must be '""'}} \
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
SuggestionSpanPickedNotificationReceiver.java | 36 final String after = intent.getStringExtra( local 38 Log.d(TAG, "Received notification picked: " + before + "," + after);
|
LatinImeLogger.java | 48 String before, String after, int position, SuggestedWords suggestedWords) { 52 String before, String after, int separatorCode) { 55 public static void logOnAutoCorrectionForGeometric(String before, String after,
|
/cts/suite/pts/deviceTests/opengl/jni/graphics/ |
ProgramNode.h | 28 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
|
TransformationNode.cpp | 32 void TransformationNode::after(Program& program, Matrix& model, Matrix& view, function in class:TransformationNode
|
SceneGraphNode.cpp | 31 after(program, model, view, projection);
|
SceneGraphNode.h | 28 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0;
|
/external/chromium_org/tools/gyp/tools/ |
pretty_gyp.py | 102 after = False 104 after = True 108 # unindent that until after this line is printed so it stays with 111 after = True 112 return (cnt, after) 126 (brace_diff, after) = count_braces(line) 128 if after:
|
/external/llvm/utils/lit/lit/ |
TestingConfig.py | 120 """finish() - Finish this config object, after loading is complete."""
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/ |
ClassCacheTest.java | 39 long after = System.currentTimeMillis(); local 41 Assert.assertEquals(1, (after - before) / timeToWait); 78 long after = System.currentTimeMillis(); local 80 Assert.assertEquals(1, (after - before) / timeToWait);
|
/packages/experimental/RpcPerformance/ |
rpcperftest.cpp | 80 struct timespec before, after; local 89 clock_gettime(CLOCK_MONOTONIC, &after); 91 double seconds = (after.tv_sec - before.tv_sec); 92 seconds += (after.tv_nsec - before.tv_nsec) / 1000000000.0;
|
/external/chromium_org/chrome/browser/ |
loadtimes_extension_bindings_browsertest.cc | 27 "window.after.firstPaintAfterLoadTime = 0;" 28 "window.after.firstPaintTime = 0;")); 31 std::string after; local 40 " JSON.stringify(after))", 41 &after)); 42 EXPECT_EQ(before, after); 58 contents, "window.after = window.chrome.loadTimes()")); 74 contents, "window.after = window.chrome.loadTimes()"));
|
/external/pixman/test/ |
radial-perf-test.c | 24 double before, after; local 52 after = gettime(); 56 printf ("Average time to composite: %f\n", (after - before) / N_COMPOSITE);
|
/external/chromium_org/third_party/freetype/src/base/ |
ftutil.c | 287 FT_ListNode after = list->head; local 290 node->next = after; 293 if ( !after ) 296 after->prev = node; 308 FT_ListNode before, after; local 312 after = node->next; 315 before->next = after; 317 list->head = after; 319 if ( after ) 320 after->prev = before 332 FT_ListNode before, after; local [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/ |
controller.js | 102 var after = !before.accumulator ? values : {}; 104 accumulator: this.getUpdatedValue_(before, after, 'accumulator'), 105 operator: this.getUpdatedValue_(before, after, 'operator'), 106 operand: this.getUpdatedValue_(before, after, 'operand', !before.operator) 112 Controller.prototype.getUpdatedValue_ = function(before, after, key, zero) { 113 var value = (typeof after[key] !== 'undefined') ? after[key] : before[key];
|
/external/chromium_org/v8/src/ |
date.cc | 127 // Check if the date is after February. 334 DST* after = NULL; local 343 if (after == NULL || after->end_sec > dst_[i].end_sec) { 344 after = &dst_[i]; 349 // If before or after segments were not found, 352 before = InvalidSegment(before_) ? before_ : LeastRecentlyUsedDST(after); 354 if (after == NULL) { 355 after = InvalidSegment(after_) && before != after_ 360 ASSERT(after != NULL) [all...] |
/external/v8/src/ |
date.cc | 127 // Check if the date is after February. 334 DST* after = NULL; local 343 if (after == NULL || after->end_sec > dst_[i].end_sec) { 344 after = &dst_[i]; 349 // If before or after segments were not found, 352 before = InvalidSegment(before_) ? before_ : LeastRecentlyUsedDST(after); 354 if (after == NULL) { 355 after = InvalidSegment(after_) && before != after_ 360 ASSERT(after != NULL) [all...] |
/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/ |
PERF.awk | 44 # after - only measure frames after the specified # 56 else if (gsub("^after=", "",arg)) { after = arg } 81 after++; # we always have to after the 1st time stamp to get a time delta 82 skip = after + 1; 126 if (count == after) { 141 if (count < after) { count++; }
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
genlingware.pl | 286 print "offset after svoxheader: $offs\n"; 309 print "offset after length of header: $offs\n"; 313 print "offset after number of fields: $offs\n"; 317 print "offset after fields: $offs\n"; 323 print "offset after fill: $offs\n"; 388 print "totalcont after kbs: $totalcont\n"; 394 print "offset after size of content (to be loaded): $offs\n"; 400 print "offset after reset: $offs\n"; 406 print "offset after number of kbs: $offs\n"; 413 print "offset after descriptive kb names: $offs\n" [all...] |
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
EntityDiff.java | 42 * from "before" to "after". Tries its best to keep operations to 46 public static EntityDiff buildDiff(Entity before, Entity after, Uri targetUri, 54 // Before doesn't exist, so insert "after" values 56 builder.withValues(after.getEntityValues()); 59 for (NamedContentValues child : after.getSubValues()) { 69 } else if (after == null) { 70 // After doesn't exist, so delete "before" values 83 values = after.getEntityValues(); 94 final HashMap<String, NamedContentValues> afterChildren = buildChildrenMap(after); 102 // After child doesn't exist, so delete "before" chil [all...] |
/frameworks/av/media/libmedia/ |
SingleStateQueue.cpp | 80 int32_t after = android_atomic_release_load(&shared->mSequence); local 81 if (after == before) { 90 before = after;
|
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/ |
ValuesDeltaTests.java | 44 final ContentValues after = new ContentValues(); local 45 after.put(Phone.NUMBER, TEST_PHONE_NUMBER_2); 47 final ValuesDelta values = ValuesDelta.fromAfter(after);
|