/external/chromium_org/third_party/skia/tests/ |
GrRedBlackTreeTest.cpp | 57 c = tree.countOf(i); 87 while (0 != tree.countOf(i)) { 113 while (0 != tree.countOf(0)) { 124 while (0 != tree.countOf(99)) { 149 REPORTER_ASSERT(reporter, tree.countOf(i) == count[i]);
|
/external/skia/tests/ |
GrRedBlackTreeTest.cpp | 57 c = tree.countOf(i); 87 while (0 != tree.countOf(i)) { 113 while (0 != tree.countOf(0)) { 124 while (0 != tree.countOf(99)) { 149 REPORTER_ASSERT(reporter, tree.countOf(i) == count[i]);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_iter.py | 614 # Test iterators with operator.countOf (PySequence_Count). 616 from operator import countOf 617 self.assertEqual(countOf([1,2,2,3,2,5], 2), 3) 618 self.assertEqual(countOf((1,2,2,3,2,5), 2), 3) 619 self.assertEqual(countOf("122325", "2"), 3) 620 self.assertEqual(countOf("122325", "6"), 0) 622 self.assertRaises(TypeError, countOf, 42, 1) 623 self.assertRaises(TypeError, countOf, countOf, countOf) [all...] |
test_operator.py | 129 self.assertRaises(TypeError, operator.countOf) 130 self.assertRaises(TypeError, operator.countOf, None, None) 131 self.assertTrue(operator.countOf([1, 2, 1, 3, 1, 4], 3) == 1) 132 self.assertTrue(operator.countOf([1, 2, 1, 3, 1, 4], 5) == 0)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_iter.py | 614 # Test iterators with operator.countOf (PySequence_Count). 616 from operator import countOf 617 self.assertEqual(countOf([1,2,2,3,2,5], 2), 3) 618 self.assertEqual(countOf((1,2,2,3,2,5), 2), 3) 619 self.assertEqual(countOf("122325", "2"), 3) 620 self.assertEqual(countOf("122325", "6"), 0) 622 self.assertRaises(TypeError, countOf, 42, 1) 623 self.assertRaises(TypeError, countOf, countOf, countOf) [all...] |
test_operator.py | 129 self.assertRaises(TypeError, operator.countOf) 130 self.assertRaises(TypeError, operator.countOf, None, None) 131 self.assertTrue(operator.countOf([1, 2, 1, 3, 1, 4], 3) == 1) 132 self.assertTrue(operator.countOf([1, 2, 1, 3, 1, 4], 5) == 0)
|
/external/guava/guava-tests/lib/ |
libtruth-gwt.jar | |
libtruth.jar | |
/external/chromium_org/third_party/skia/src/gpu/ |
GrRedBlackTree.h | 123 int countOf(const T& t) const; 309 int GrRedBlackTree<T,C>::countOf(const T& t) const {
|
/external/skia/src/gpu/ |
GrRedBlackTree.h | 123 int countOf(const T& t) const; 309 int GrRedBlackTree<T,C>::countOf(const T& t) const {
|
/external/chromium_org/chrome/third_party/chromevox/ |
chromeVoxChromeBackgroundScript.js | 41 goog.string.contains=function(a,b){return-1!=a.indexOf(b)};goog.string.caseInsensitiveContains=function(a,b){return goog.string.contains(a.toLowerCase(),b.toLowerCase())};goog.string.countOf=function(a,b){return a&&b?a.split(b).length-1:0};goog.string.removeAt=function(a,b,c){var d=a;0<=b&&b<a.length&&0<c&&(d=a.substr(0,b)+a.substr(b+c,a.length-b-c));return d};goog.string.remove=function(a,b){var c=new RegExp(goog.string.regExpEscape(b),"");return a.replace(c,"")}; [all...] |
chromeVoxChromeOptionsScript.js | [all...] |
chromeVoxChromePageScript.js | [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/ |
compiler.jar | |