/packages/providers/CalendarProvider/tests/ |
Android.mk | 4 # We only want this apk build for tests.
|
/packages/providers/DownloadProvider/tests/permission/ |
Android.mk | 4 # We only want this apk build for tests.
|
/packages/providers/DownloadProvider/tests/public_api_access/ |
Android.mk | 4 # We only want this apk build for tests.
|
/prebuilts/tools/common/proguard/proguard4.7/examples/dictionaries/ |
keywords.txt | 2 # This obfuscation dictionary contains reserved Java keywords. They can't 4 # Note that this hardly improves the obfuscation. Decent decompilers can 23 this
|
/system/core/rootdir/etc/ |
dbus.conf | 5 <!-- Our well-known bus type, do not change this --> 13 file; only Linux supports this. Use path=/whatever on other
|
/external/v8/test/mjsunit/bugs/ |
618.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 this.x = 23; 38 C1.prototype = { set x(value) { this.y = 23; } }; 45 this.x = 23; 53 C2.prototype.__proto__ = { set x(value) { this.y = 23; } }; 60 this.x = 23 [all...] |
/external/v8/test/mjsunit/ |
indexed-accessors.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 45 this.x = x; 46 this.y = y; 48 Pair.prototype.__defineGetter__('0', function() { return this.x; }); 49 Pair.prototype.__defineGetter__('1', function() { return this.y; }); 50 Pair.prototype.__defineSetter__('0', function(x) { this.x = x; }) [all...] |
receiver-in-with-calls.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 var x = { get_this: function() { return this; } }; 39 function g() { return this; }; 41 } }.f() == this); 45 function g() { return this; }; 47 } }.f() == this); [all...] |
html-comments.js | 9 // notice, this list of conditions and the following disclaimer. 11 // copyright notice, this list of conditions and the following 16 // from this software without specific prior written permission. 18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31 --> this must be ignored... 32 --> so must this... 33 --> and this.
|
debug-return-value.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 34 this.response_ = eval('(' + json + ')'); 35 this.refs_ = []; 36 if (this.response_.refs) { 37 for (var i = 0; i < this.response_.refs.length; i++) { 38 this.refs_[this.response_.refs[i].handle] = this.response_.refs[i] [all...] |
eval.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 80 function MyObject() { this.self = eval('this'); } 101 function MyOtherObject() { this.self = e('this'); } 103 assertTrue(this === o.self) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/ |
shell.js | 37 this.name = n; 38 this.description = d; 39 this.expect = e; 40 this.actual = a; 41 this.passed = true; 42 this.reason = ""; 43 this.bugnumber = BUGNUMBER; 45 this.passed = getTestCaseResult( this.expect, this.actual ) [all...] |
/external/v8/test/mjsunit/compiler/ |
objectliterals.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 36 get bar() { return this.x }, 38 set bar(t) { this.x = t }, 48 o = {get foo() { return this.x; }, 49 f: function() { return this.foo + 1 }, 50 set bar(t) { this.x = t; } [all...] |
control-flow-1.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 var global = this; 31 assertTrue(this === global); 46 assertTrue(this === o);
|
property-stores.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 f: function() { this.x = 7; }, 34 g: function() { this.x = a | 1; }, 35 h: function() { this.x = a; }};
|
/external/v8/test/mjsunit/regress/ |
regress-675.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 function f() { return this.x; } 40 this.x = 23; 49 this.__proto__ = null; 50 function g() { return this.y; } 57 this.y = 42 [all...] |
regress-1102760.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 assertEquals(0, F.apply(this), "no args"); 34 assertEquals(0, F.apply(this, []), "empty args"); 35 assertEquals(0, F.apply(this, [], 0), "empty args, extra argument");
|
/external/valgrind/main/memcheck/tests/ |
supp_unknown.stderr.exp | 6 If you believe this happened as a result of a stack 10 The main thread stack size used in this run was ....
|
/external/valgrind/main/none/tests/linux/ |
blockfault.stderr.exp | 6 If you believe this happened as a result of a stack 10 The main thread stack size used in this run was ....
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
nodeisequalnode01.js | 6 Rights Reserved. This work is distributed under the W3C® Software License [1] in the 27 // This function is called by the testing framework before 46 if (typeof(this.doc1) != 'undefined') { 47 doc1Ref = this.doc1; 52 if (typeof(this.doc2) != 'undefined') { 53 doc2Ref = this.doc2; 69 // This method is called on the completion of 101 if (typeof(this.doc1) != 'undefined') { 102 doc1Ref = this.doc1; 107 if (typeof(this.doc2) != 'undefined') [all...] |
nodeissamenode01.js | 6 Rights Reserved. This work is distributed under the W3C® Software License [1] in the 27 // This function is called by the testing framework before 46 if (typeof(this.doc1) != 'undefined') { 47 doc1Ref = this.doc1; 52 if (typeof(this.doc2) != 'undefined') { 53 doc2Ref = this.doc2; 69 // This method is called on the completion of 101 if (typeof(this.doc1) != 'undefined') { 102 doc1Ref = this.doc1; 107 if (typeof(this.doc2) != 'undefined') [all...] |
nodeinsertbefore07.js | 6 Rights Reserved. This work is distributed under the W3C® Software License [1] in the 27 // This function is called by the testing framework before 46 if (typeof(this.doc) != 'undefined') { 47 docRef = this.doc; 52 if (typeof(this.docAlt) != 'undefined') { 53 docAltRef = this.docAlt; 69 // This method is called on the completion of 87 Using insertBefore on this Document node attempt to insert a Comment node created by 88 another Document before this DocumentElement node and verify if a WRONG_DOCUMENT_ERR 105 if (typeof(this.doc) != 'undefined') [all...] |
nodeinsertbefore08.js | 6 Rights Reserved. This work is distributed under the W3C® Software License [1] in the 27 // This function is called by the testing framework before 46 if (typeof(this.doc) != 'undefined') { 47 docRef = this.doc; 52 if (typeof(this.docAlt) != 'undefined') { 53 docAltRef = this.docAlt; 69 // This method is called on the completion of 87 Using insertBefore on this Document node attempt to insert a Comment node created by 88 this Document before another Document's DocumentElement node and verify if a 105 if (typeof(this.doc) != 'undefined') [all...] |
/external/v8/src/ |
string.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 // This file relies on the fact that the following declaration has been made 39 %_SetValueOf(this, value); 49 if (!IS_STRING(this) && !IS_STRING_WRAPPER(this)) { 52 return %_ValueOf(this); [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_1/ |
jsref.js | 42 this.name = n; 43 this.description = d; 44 this.expect = e; 45 this.actual = a; 46 this.passed = true; 47 this.reason = ""; 48 this.bugnumber = BUGNUMBER; 50 this.passed = getTestCaseResult( this.expect, this.actual ) [all...] |