/external/llvm/test/Other/ |
optimize-options.ll | 1 ;RUN: opt -S -O1 -debug-pass=Arguments %s 2>&1 | FileCheck %s 2 ;RUN: opt -S -O2 -debug-pass=Arguments %s 2>&1 | FileCheck %s 3 ;RUN: opt -S -Os -debug-pass=Arguments %s 2>&1 | FileCheck %s 4 ;RUN: opt -S -Oz -debug-pass=Arguments %s 2>&1 | FileCheck %s 5 ;RUN: opt -S -O3 -debug-pass=Arguments %s 2>&1 | FileCheck %s 8 ;CHECK: Pass Arguments: {{.*}} -print-module
|
/external/mesa3d/src/glsl/tests/ |
optimization-test | 4 pass=0 12 echo "PASS" 13 pass=$((pass+1)) 21 echo "$pass/$total tests returned correct results" 24 if [[ $pass == $total ]]; then
|
/external/v8/test/webkit/ |
property-getters-and-setters-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 30 PASS o1.b is 8 31 PASS o1.b is 11 33 PASS o2.b is 8 34 PASS o2.b is 11 36 PASS o3.x = 10; o3.x is 42 38 PASS o4.x is undefined. 40 PASS o4.__lookupGetter__('b') is getB 41 PASS o4.__lookupSetter__('b') is setB 43 PASS o5.__defineSetter__('a', null) threw exception TypeError: Object.prototype.__defineSetter__: Expec (…) [all...] |
array-defineOwnProperty-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS Object.defineProperty([], 'x', { get:function(){return true;} }).x is true 30 PASS Object.defineProperty([], 'length', { value: 1 }).length is 1 31 PASS var a = Object.defineProperty([], 'length', { writable: false }); a[1] = 1; a.length is 0 32 PASS var a = Object.defineProperty([], 'length', { writable: false }); a.length = 1; a.length is 0 33 PASS var a = Object.defineProperty([], 'length', {}); a.length = 1; a.length is 1 34 PASS Object.defineProperty([], 'length', { get:function(){return true;} }) threw exception TypeError: Cannot redefine property: length. 35 PASS Object.defineProperty([], 'length', { enumerable: true }) threw exception TypeError: Cannot redefine property: length. 36 PASS Object.defineProperty([], 'length', { configurable: true }) threw exception TypeError: Cannot redefine property: length. 37 PASS Object.defineProperty(Object.defineProperty([], 'length', { writable: false }), 'length', { writab (…) [all...] |
function-prototype-descriptor-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS descriptor['writable'] is true 30 PASS descriptor['enumerable'] is false 31 PASS descriptor['configurable'] is false 32 PASS descriptor['writable'] is true 33 PASS descriptor['enumerable'] is false 34 PASS descriptor['configurable'] is false 35 PASS Object.defineProperty(c, 'prototype', { get: function(){} }) threw exception TypeError: Cannot redefine property: prototype. 36 PASS descriptor['writable'] is true 37 PASS descriptor['enumerable'] is fals [all...] |
Array-isArray-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS Array.isArray([]) is true 30 PASS Array.isArray(new Array) is true 31 PASS Array.isArray(Array()) is true 32 PASS Array.isArray('abc'.match(/(a)*/g)) is true 33 PASS (function(){ return Array.isArray(arguments); })() is false 34 PASS Array.isArray() is false 35 PASS Array.isArray(null) is false 36 PASS Array.isArray(undefined) is false 37 PASS Array.isArray(true) is fals [all...] |
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/ |
dl5.cc | 5 int pass = 0; variable 11 pass++; 20 pass++; 28 pass++; 51 if (pass == 4) 53 printf ("PASS\n");
|
/external/llvm/include/llvm/ |
PassAnalysisSupport.h | 1 //===- llvm/PassAnalysisSupport.h - Analysis Pass Support code --*- C++ -*-===// 11 // This file is automatically #included by Pass.h, so: 15 // Instead, #include Pass.h 24 #include "llvm/Pass.h" 30 /// Represent the analysis usage information of a pass. This tracks analyses 31 /// that the pass REQUIRES (must be available when the pass runs), REQUIRES 32 /// TRANSITIVE (must be available throughout the lifetime of the pass), and 33 /// analyses that the pass PRESERVES (the pass does not invalidate the result [all...] |
/build/kati/testcase/ |
multiline_define.mk | 34 echo $(if $(call or1),FAIL,PASS)_or1 35 echo $(if $(call or2),FAIL,PASS)_or2 36 echo $(if $(call or3),FAIL,PASS)_or3
|
define_verbatim.mk | 2 for i in 1 2 3 PASS; do\
|
err_ifdef_with_leading_space.mk | 5 $(info PASS)
|
multiline_and_leading_space.mk | 12 echo PASS $(X) $(Y)
|
or.mk | 11 $(info $(or ${FALSE}, PASS, PASS)) 15 $(info $(or ${FALSE} , PASS, PASS))
|
target_specific_var_with_pattern.mk | 6 foo.x: X:=PASS 9 %.x: Y:=PASS 10 %.x: Z:=PASS 16 %.z: X:=PASS
|
unmatched_paren.mk | 2 $(PAREN):=PASS
|
/external/curl/tests/data/ |
test114 | 11 REPLY PASS 314 bluah you f00l! 21 FTP download, failed login: PASS not valid 35 PASS ftp@example.com
|
test195 | 11 REPLY PASS 530 temporarily not available 21 FTP response 530 after PASS, temporarily not allowed access 35 PASS ftp@example.com
|
/external/libxml2/test/automata/ |
abaa | 14 # Pass 20 # Pass 31 # Pass
|
/external/v8/test/webkit/fast/js/ |
Object-defineProperty-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1}), 'foo')) is JSON.stringify({value: 1, writable: false, enumerable: false, configurable: false}) 30 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {}), 'foo')) is JSON.stringify({writable: false, enumerable: false, configurable: false}) 31 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {get:undefined}), 'foo')) is JSON.stringify({enumerable: false, configurable: false}) 32 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1, writable: false}), 'foo')) is JSON.stringify({value: 1, writable: false, enumerable: false, configurable: false}) 33 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1, writable: true}), 'foo')) is JSON.stringify({value: 1, writable: true, enumerable: false, configurable: false}) 34 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1, enumerable: false}), 'foo')) is JSON.stringify({value: 1, writable: false, enumerable: false, configurable: false}) 35 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1, enumerable: true}), 'foo')) is JSON.stringify({value: 1, writable: false, enumerable: true, configurable: false}) 36 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1, configurable: false}), 'foo')) is JSON.stringify({value: 1, writable: false, enumerable: false, configurable: false}) 37 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1, configur (…) [all...] |
/art/test/471-deopt-environment/ |
info.txt | 1 Regression test for the bounds check elimination pass, which
|
/device/google/dragon/sepolicy/ |
app.te | 1 # Allow apps to read /dev/dri. Needed to pass CTS
|
/external/autotest/frontend/migrations/ |
027_fix_innodb.py | 11 pass
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-compatmodule/pkg/ |
api2.py | 11 pass
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/logs/ |
exceptions.py | 27 pass 31 pass 35 pass 39 pass 43 pass 47 pass 51 pass 55 pass 59 pass
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/support/ |
exceptions.py | 26 pass 30 pass 34 pass 38 pass 42 pass 46 pass 50 pass 54 pass 58 pass
|