/external/clang/test/Analysis/inlining/ |
stl.cpp | 8 void testVector(std::vector<int> &nums) { 9 if (nums.begin()) return; 10 if (nums.end()) return; 12 clang_analyzer_eval(nums.size() == 0);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
summary.py | 57 nums = analysis.numbers 58 args = (cu.name, nums.n_statements, nums.n_missing) 60 args += (nums.n_branches, nums.n_missing_branches) 61 args += (nums.pc_covered_str,) 65 total += nums
|
results.py | 233 nums = Numbers() 234 nums.n_files = self.n_files + other.n_files 235 nums.n_statements = self.n_statements + other.n_statements 236 nums.n_excluded = self.n_excluded + other.n_excluded 237 nums.n_missing = self.n_missing + other.n_missing 238 nums.n_branches = self.n_branches + other.n_branches 239 nums.n_missing_branches = (self.n_missing_branches + 241 return nums
|
html.py | 131 nums = analysis.numbers 202 'nums': nums, 219 totals = sum([f['nums'] for f in files])
|
/external/clang/test/Analysis/ |
cxx-crashes.cpp | 63 int nums[n]; local 64 nums[0] = 1; 65 clang_analyzer_eval(nums[0] == 1); // expected-warning{{TRUE}}
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/ |
index.html | 78 <td>{{file.nums.n_statements}}</td> 79 <td>{{file.nums.n_missing}}</td> 80 <td>{{file.nums.n_excluded}}</td> 82 <td>{{file.nums.n_branches}}</td> 83 <td>{{file.nums.n_missing_branches}}</td> 85 <td class='right'>{{file.nums.pc_covered_str}}%</td>
|
pyfile.html | 8 <title>Coverage for {{cu.name|escape}}: {{nums.pc_covered_str}}%</title> 23 <span class='pc_cov'>{{nums.pc_covered_str}}%</span> 27 {{nums.n_statements}} statements 28 <span class='{{c_run}} shortkey_r' onclick='coverage.toggle_lines(this, "run")'>{{nums.n_executed}} run</span> 29 <span class='{{c_mis}} shortkey_m' onclick='coverage.toggle_lines(this, "mis")'>{{nums.n_missing}} missing</span> 30 <span class='{{c_exc}} shortkey_x' onclick='coverage.toggle_lines(this, "exc")'>{{nums.n_excluded}} excluded</span>
|
/frameworks/base/services/tests/servicestests/src/com/android/server/content/ |
ObserverNodeTest.java | 52 int[] nums = new int[] {4, 7, 1, 4, 2, 2, 3, 3}; local 64 for (int i = nums.length - 1; i >=0; --i) { 66 assertEquals(nums[i], calls.size()); 85 int[] nums = new int[] {7, 1, 3, 3, 1, 1, 1, 1}; local 96 assertEquals(nums[i], calls.size());
|
/external/chromium_org/third_party/sqlite/src/test/ |
tkt-2d1a5c67d.test | 54 CREATE VIRTUAL TABLE nums USING wholenumber; 55 INSERT INTO t2 SELECT value, randomblob(1000) FROM nums
|
analyze7.test | 35 CREATE VIRTUAL TABLE nums USING wholenumber; 36 INSERT INTO t1 SELECT value, value, value/100, value FROM nums
|
/external/chromium_org/v8/test/webkit/ |
dfg-put-scoped-var-backward-flow.js | 28 function sum(nums) { 30 nums.forEach(function (num) {
|
/external/guava/guava/src/com/google/common/math/ |
BigIntegerMath.java | 339 static BigInteger listProduct(List<BigInteger> nums) { 340 return listProduct(nums, 0, nums.size()); 343 static BigInteger listProduct(List<BigInteger> nums, int start, int end) { 348 return nums.get(start); 350 return nums.get(start).multiply(nums.get(start + 1)); 352 return nums.get(start).multiply(nums.get(start + 1)).multiply(nums.get(start + 2)) [all...] |
/external/llvm/test/DebugInfo/X86/ |
dbg-value-inlined-parameter.ll | 21 define i32 @foo(%struct.S1* nocapture %sp, i32 %nums) nounwind optsize ssp { 24 tail call void @llvm.dbg.value(metadata !{i32 %nums}, i64 0, metadata !18), !dbg !21 26 store i32 %nums, i32* %tmp2, align 4, !dbg !22 27 %call = tail call float* @bar(i32 %nums) nounwind optsize, !dbg !27 68 !17 = metadata !{i32 786445, metadata !42, metadata !1, metadata !"nums", i32 3, i64 32, i64 32, i64 64, i32 0, metadata !5} ; [ DW_TAG_member ] 69 !18 = metadata !{i32 786689, metadata !0, metadata !"nums", metadata !1, i32 7, metadata !5, i32 0, metadata !32} ; [ DW_TAG_arg_variable ]
|
/external/chromium_org/tools/json_schema_compiler/test/ |
choices.json | 49 "name": "nums", 68 "name": "nums",
|
arrays_unittest.cc | 140 ASSERT_EQ(3u, params->nums.size()); 141 EXPECT_EQ(2, params->nums[0]); 142 EXPECT_EQ(4, params->nums[1]); 143 EXPECT_EQ(8, params->nums[2]);
|
choices_unittest.cc | 29 EXPECT_FALSE(params->nums.as_integers); 30 EXPECT_EQ(6, *params->nums.as_integer); 38 ASSERT_TRUE(params->nums.as_integers); 39 EXPECT_EQ(Vector(2, 6, 8), *params->nums.as_integers);
|
arrays.json | 82 "name": "nums",
|
/external/guava/guava-tests/test/com/google/common/base/ |
PredicatesTest.java | 697 Collection<Integer> nums = Arrays.asList(1, 5); local 698 Predicate<Integer> isOneOrFive = Predicates.in(nums); 707 Collection<Integer> nums = ImmutableSet.of(1, 5); local 713 .addEqualityGroup(Predicates.in(nums), Predicates.in(nums), 733 Collection<Integer> nums = new CollectionThatThrowsNPE<Integer>(); local 734 Predicate<Integer> isFalse = Predicates.in(nums); 746 Collection<Integer> nums = new CollectionThatThrowsCCE<Integer>(); local 747 nums.add(3); 748 Predicate<Integer> isThree = Predicates.in(nums); 757 Collection<Number> nums = ImmutableSet.of(); local [all...] |
/external/linux-tools-perf/util/include/linux/added/ |
poison.h | 37 * Magic nums for obj red zoning.
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
actions.rb | 211 nums returns [ds]: digs+=DIGIT+ 221 parser.nums.should == [ 10, 20, 30, 40, 50 ]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py3_test_grammar.py | 751 nums = [1, 2, 3] 752 self.assertEqual({i:i+1 for i in nums}, {1: 2, 2: 3, 3: 4}) 756 nums = [1, 2, 3, 4, 5] 761 self.assertEqual([3 * x for x in nums], [3, 6, 9, 12, 15]) 762 self.assertEqual([x for x in nums if x > 2], [3, 4, 5]) 763 self.assertEqual([(i, s) for i in nums for s in strs], 769 self.assertEqual([(i, s) for i in nums for s in [f for f in strs if "n" in f]], 779 self.assertEqual(test_in_func(nums), [False, False, False]) 787 check_syntax_error(self, "[i, s for i in nums for s in strs]")
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_grammar.py | 836 nums = [1, 2, 3] 837 self.assertEqual({i:i+1 for i in nums}, {1: 2, 2: 3, 3: 4}) 841 nums = [1, 2, 3, 4, 5] 846 self.assertEqual([3 * x for x in nums], [3, 6, 9, 12, 15]) 847 self.assertEqual([x for x in nums if x > 2], [3, 4, 5]) 848 self.assertEqual([(i, s) for i in nums for s in strs], 854 self.assertEqual([(i, s) for i in nums for s in [f for f in strs if "n" in f]], 864 self.assertEqual(test_in_func(nums), [False, False, False]) 872 check_syntax_error(self, "[i, s for i in nums for s in strs]")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py3_test_grammar.py | 751 nums = [1, 2, 3] 752 self.assertEqual({i:i+1 for i in nums}, {1: 2, 2: 3, 3: 4}) 756 nums = [1, 2, 3, 4, 5] 761 self.assertEqual([3 * x for x in nums], [3, 6, 9, 12, 15]) 762 self.assertEqual([x for x in nums if x > 2], [3, 4, 5]) 763 self.assertEqual([(i, s) for i in nums for s in strs], 769 self.assertEqual([(i, s) for i in nums for s in [f for f in strs if "n" in f]], 779 self.assertEqual(test_in_func(nums), [False, False, False]) 787 check_syntax_error(self, "[i, s for i in nums for s in strs]")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_grammar.py | 836 nums = [1, 2, 3] 837 self.assertEqual({i:i+1 for i in nums}, {1: 2, 2: 3, 3: 4}) 841 nums = [1, 2, 3, 4, 5] 846 self.assertEqual([3 * x for x in nums], [3, 6, 9, 12, 15]) 847 self.assertEqual([x for x in nums if x > 2], [3, 4, 5]) 848 self.assertEqual([(i, s) for i in nums for s in strs], 854 self.assertEqual([(i, s) for i in nums for s in [f for f in strs if "n" in f]], 864 self.assertEqual(test_in_func(nums), [False, False, False]) 872 check_syntax_error(self, "[i, s for i in nums for s in strs]")
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
util.py | 175 nums = [] 178 nums.insert(0, int(parts.pop())) 181 return nums or [ sys.maxint ]
|