/external/llvm/include/llvm/Transforms/Scalar/ |
LowerExpectIntrinsic.h | 1 //===- LowerExpectIntrinsic.h - LowerExpectIntrinsic pass -------*- C++ -*-===// 11 /// The header file for the LowerExpectIntrinsic pass as used by the new pass 28 /// \brief Run the pass over the function. 32 /// of the probabilities and frequencies of the CFG. After running this pass,
|
/external/llvm/test/LTO/X86/ |
diagnostic-handler-remarks.ll | 2 ; PR21108: Diagnostic handlers get pass remarks, even if they're not enabled. 4 ; Confirm that there are -pass-remarks. 5 ; RUN: llvm-lto -pass-remarks=inline \ 10 ; RUN: llvm-lto -pass-remarks=inline -use-diagnostic-handler \ 15 ; Confirm that -pass-remarks are not printed by default.
|
/external/pdfium/core/src/fxcodec/libjpeg/ |
fpdfapi_jdpostct.c | 32 * For two-pass color quantization, we need a full-image buffer; 33 * for one-pass operation, a strip buffer is sufficient. 35 jvirt_sarray_ptr whole_image; /* virtual array, or NULL if one-pass */ 38 /* for two-pass mode only: */ 70 * Initialize for a processing pass. 81 /* Single-pass processing with color quantization. */ 83 /* We could be doing buffered-image output before starting a 2-pass 93 /* For single-pass processing without color quantization, 101 /* First pass of 2-pass quantization * [all...] |
/external/v8/test/webkit/ |
array-indexing-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS a.length is 0 30 PASS a["-5"] is a[-5] 31 PASS a[4] is undefined 32 PASS successfullyParsed is true
|
array-iterate-backwards-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS verify(32768) is true 30 PASS verify(65536) is true 31 PASS verify(120000) is true 32 PASS successfullyParsed is true
|
array-sort-small-sparse-array-with-large-length-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 30 PASS result is "42" 31 PASS array.length is 10000001 32 PASS array[0] is 42 33 PASS successfullyParsed is true
|
cached-call-uninitialized-arguments-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS arg4 is undefined. 30 PASS arg5 is undefined. 31 PASS arg6 is undefined. 32 PASS successfullyParsed is true
|
date-DST-pre-1970-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS (new Date(1970, 0, 1)).getHours() is 0 30 PASS (new Date(1969, 8, 1)).getHours() is 0 31 PASS (new Date(1969, 9, 28)).getHours() is 0 32 PASS successfullyParsed is true
|
date-daysfrom1970-overflow-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS d.getTime() is NaN 30 PASS Date.UTC(1970, 0, 1, 0, 0, 0, 0) is 0 31 PASS d.getTime() is NaN 32 PASS successfullyParsed is true
|
delete-then-put-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS props(a) is 'a,b,c,d,e' 31 PASS props(a) is 'a,b,d,e' 33 PASS props(a) is 'a,b,d,e,c' 35 PASS successfullyParsed is true
|
for-in-exeception-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS test(throwUndefinedException) is undefined. 30 PASS test(throwNullException) is undefined. 31 PASS test(throwStringException) threw exception PASSED. 32 PASS successfullyParsed is true
|
function-declaration-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS eval('function f(){return true;}') is undefined. 30 PASS eval('function f(){return true;};f')() is true 31 PASS eval('function(){return false;}')() threw exception SyntaxError: Unexpected token (. 32 PASS successfullyParsed is true
|
gmail-re-re-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS cy("Re: Hello") is "Hello" 30 PASS cy("?????: Hello") is "Hello" 31 PASS regex.exec("24#Midnight").toString() is "24#Midnight,24,#,Midnight" 32 PASS successfullyParsed is true
|
interpreter-no-activation-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS f1(false) is true 30 PASS f2(true) is true 31 PASS Didn't crash 32 PASS successfullyParsed is true
|
regexp-extended-characters-more-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS "foo\xa0\xa0\xa0".replace(/\xa0*/, "") is "foo\xa0\xa0\xa0" 30 PASS "foo\xa0\xa0\xa0".replace(/\xa0+/, "") is "foo" 31 PASS "foo\xa0\xa0\xa0".replace(/\xa0*$/, "") is "foo" 32 PASS successfullyParsed is true
|
stack-unwinding-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS Two host functions called in a row. 31 PASS 5,6,7 is 5,6,7 32 PASS Exception thrown and caught 33 PASS successfullyParsed is true
|
string_replace-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS "YY".replace(/Y{1,4}/g,"YYYY") is "YYYY" 30 PASS "MM".replace(/M{1,2}/g,"M") is "M" 31 PASS "YY".replace(/Y{1,4}/g,"MMMM") is "MMMM" 32 PASS successfullyParsed is true
|
toString-recursion-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS var array = []; array[0] = array; array + '' is '' 30 PASS var error = new Error; error.name = error; error.message = error; error + '' is '' 31 PASS var regexp = /a/; regexp.source = regexp; regexp + '' is '/a/' 32 PASS successfullyParsed is true
|
var-declarations-zero-width-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS var x? = 42; x? is 42 30 PASS var x? = 43; x? is 43 31 PASS var x?? = 44; x?? is 44 32 PASS successfullyParsed is true
|
/external/v8/test/webkit/fast/js/ |
exception-properties-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS enumerableProperties(error) is [] 31 PASS Object.getPrototypeOf(nativeError).name is "RangeError" 32 PASS Object.getPrototypeOf(nativeError).message is "" 33 PASS successfullyParsed is true
|
/external/v8/test/webkit/fast/js/kde/ |
delete-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS a = 1; delete a; is true 30 PASS delete nonexistant; is true 31 PASS delete NaN is false 32 PASS successfullyParsed is true
|
/external/v8/test/webkit/fast/regex/ |
early-acid3-86-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS /TA[])]/.exec('TA]') threw exception SyntaxError: Invalid regular expression: /TA[])]/: Unmatched ')'. 30 PASS /[]/.exec('') is null 31 PASS /(\3)(\1)(a)/.exec('cat').toString() is 'a,,,a' 32 PASS successfullyParsed is true
|
overflow-expected.txt | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 29 PASS regexp1.exec('') is null 30 PASS regexp2.exec('') is null 31 PASS regexp3.exec(s3) is null 33 PASS successfullyParsed is true
|
/external/llvm/include/llvm/ |
PassSupport.h | 1 //===- llvm/PassSupport.h - Pass Support code -------------------*- C++ -*-===// 11 // is automatically #included by Pass.h, so: 15 // Instead, #include Pass.h. 17 // This file defines Pass registration code and classes used for it. 24 #include "Pass.h" 63 void llvm::initialize##passName##Pass(PassRegistry &Registry) { \ 71 initialize##depName##Pass(Registry); 81 void llvm::initialize##passName##Pass(PassRegistry &Registry) { \ 95 Pass *callDefaultCtor() { return new PassName(); } 97 template <typename PassName> Pass *callTargetMachineCtor(TargetMachine *TM) [all...] |
/external/libcxxabi/test/ |
testit | 31 PASS=0 39 pass=0 49 pass=$(($pass + 1)) 56 for FILE in $(ls *.pass.cpp); do 62 pass=$(($pass + 1)) 80 if [ $pass -gt 0 ] 82 echo "passed $pass tests in `pwd`" 88 if [ $fail -eq 0 -a $pass -eq 0 [all...] |