/external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/ |
proxy_error_handler.js | 7 * flag proxy errors in a visual way for the extension's user. 15 * changes the extensions badge to reflect the error state (yellow for 16 * non-fatal errors, red for fatal). 66 * Handles the error event, storing the error details for later use, and 84 // Store the error for display in the popup.
|
/external/fdlibm/ |
Android.mk | 12 # See the License for the specific language governing permissions and 18 # Common definitions for host and device. 56 # Build for the target (device). 65 # When __LITTLE_ENDIAN is set, the source will compile for 76 # Build for the host.
|
/external/libnfc-nxp/ |
Android.mk | 109 # Uncomment for Chipset command/responses 113 # Uncomment for DAL traces 116 # Uncomment for LLC traces 119 # Uncomment for LLCP traces 122 # Uncomment for HCI traces
|
/external/v8/test/mjsunit/regress/ |
regress-675.js | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 28 // Regression test for http://code.google.com/p/v8/issues/detail?id=675. 30 // Test that load ICs for nonexistent properties check global 35 // Initialize IC for nonexistent x property on global object. 39 // Assign to global property cell for x. 47 // if the global object is the last object in the prototype chain for
|
regress-1229.js | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 44 // Check that %NewObjectFromBound looks at correct frame for inlined function. 49 // Check that %NewObjectFromBound looks at correct frame for inlined function. 59 for (var i = 0; i < 5; i++) f(2, 3); 63 for (var i = 0; i < 5; i++) g(3, 2); 67 for (var i = 0; i < 5; i++) h(6, 4); 85 for (var i = 0; i < 5; i++) new bar(1, 2, 3);
|
/external/webkit/LayoutTests/storage/ |
hash-change-with-xhr.js | 7 var db = openDatabaseWithSuffix('bug25710', '1.0', 'LayoutTest for bug 25710', 102400); 74 // Allow a little time for all the database transactions to complete now we've stopped making them. 77 setTimeout(function() { stopTest('Timed out waiting for transactions to complete. FAILED'); }, 20000); 98 for (var i = 0; i < backIterations; i++) { 106 // Give a little for the database to 'warm up' before making xhr requests
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/ |
shell.js | 14 for ( tc=0; tc < testcases.length; tc++ ) { 26 /* wrapper for test cas constructor that doesn't require the SECTION 59 // for ecma version 2.0, we will leave the javascript version to 60 // the default ( for now ). 90 // if both objects are numbers, give a little leeway for rounding.
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
3d-cube.js | 57 for (; i < NumPix; i++) { 80 for (var i = 0; i < 3; i++) { 86 for (var i = 0; i < 3; i++) A[i] = A[i] / Length; 100 for (; i < 4; i++) { 102 for (; j < 4; j++) M[i][j] = M1[i][0] * M2[0][j] + M1[i][1] * M2[1][j] + M1[i][2] * M2[2][j] + M1[i][3] * M2[3][j]; 111 for (;i < 4; i++) Vect[i] = M[i][0] * V[0] + M[i][1] * V[1] + M[i][2] * V[2] + M[i][3] * V[3]; 118 for (;i < 3; i++) Vect[i] = M[i][0] * V[0] + M[i][1] * V[1] + M[i][2] * V[2]; 127 for (; i < 4; i++) { 129 for (; j < 4; j++) M[i][j] = M1[i][j] + M2[i][j]; 191 for (; i > -1; i--) CurN[i] = VMulti2(MQube, Q.Normal[i]) [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
3d-cube.js | 57 for (; i < NumPix; i++) { 80 for (var i = 0; i < 3; i++) { 86 for (var i = 0; i < 3; i++) A[i] = A[i] / Length; 100 for (; i < 4; i++) { 102 for (; j < 4; j++) M[i][j] = M1[i][0] * M2[0][j] + M1[i][1] * M2[1][j] + M1[i][2] * M2[2][j] + M1[i][3] * M2[3][j]; 111 for (;i < 4; i++) Vect[i] = M[i][0] * V[0] + M[i][1] * V[1] + M[i][2] * V[2] + M[i][3] * V[3]; 118 for (;i < 3; i++) Vect[i] = M[i][0] * V[0] + M[i][1] * V[1] + M[i][2] * V[2]; 127 for (; i < 4; i++) { 129 for (; j < 4; j++) M[i][j] = M1[i][j] + M2[i][j]; 191 for (; i > -1; i--) CurN[i] = VMulti2(MQube, Q.Normal[i]) [all...] |
/external/chromium/chrome/common/extensions/docs/examples/api/webNavigation/basic/ |
navigation_collector.js | 15 * and to a `getMostRequestedUrls` extension message for internal 62 // Bind handler to extension messages for communication from popup. 120 * Returns a somewhat unique ID for a given WebNavigation request. 123 * about the navigation event we'd like an ID for. 136 * errored and completed arrays for ease of insertion later. 155 * Handler for the 'onBeforeRetarget' event. Updates the pending request 159 * 'pending_' object, and stores it for later use. 161 * @param {!Object} data The event data generated for this request. 174 * Handler for the 'onBeforeNavigate' event. Pushes the request onto the 175 * 'pending_' object, and stores it for later use [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
parser.ml | 5 (* binop_precedence - This holds the precedence for each binary operator that is 56 ::= 'for' identifier '=' expr ',' expr (',' expr)? 'in' expression *) 57 | [< 'Token.For; 58 'Token.Ident id ?? "expected identifier after for"; 59 'Token.Kwd '=' ?? "expected '=' after for"; 64 'Token.Kwd ',' ?? "expected ',' after for"; 75 Ast.For (id, start, end_, step, body) 77 raise (Stream.Error "expected 'in' after for") 80 raise (Stream.Error "expected '=' after for") 171 (* Verify right number of arguments for operator. * [all...] |
/external/v8/test/mjsunit/compiler/ |
assignment-deopt.js | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 51 for(var i = 0; i < 20; i++) { 69 for(var i = 0; i < 20; i++) { 83 for(var i = 0; i < 5; i++) { 92 for (var i = 0; i < 5; ++i) assertEquals(4, assign5(2, 1)); 101 for (var i = 0; i < 5; ++i) { 116 for (var i = 0; i < 5; ++i) { 133 for (var i = 0; i < 5; ++i) { 152 for (var i = 0; i < 5; i++) [all...] |
expression-trees.js | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 42 // ways. For each split recursively compute all possible subtrees. 43 for (var i = 1; i < len; ++i) { 47 for (var j = 0; j < leftTrees.length; ++j) { 48 for (var k = 0; k < rightTrees.length; ++k) { 73 for (var i = 0; i < or_trees.length; ++i) { 74 for (var j = 0; j < 8; ++j) { 81 // Set it back to a number for the next iteration. 96 for (i = 0; i < and_trees.length; ++i) [all...] |
/external/v8/test/mjsunit/ |
mirror-regexp.js | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 29 // Test the mirror object for regular expression values 45 for (var i = 0; i < tmp.length; i++) { 72 for (var p in expected_attributes) { 85 for (var p in expected_attributes) { 86 for (var i = 0; i < fromJSON.properties.length; i++) { 90 'Unexpected value for ' + p + ' attributes'); 93 'Unexpected value for ' + p + ' propertyType'); 96 'Unexpected handle for ' + p) [all...] |
string-indexof-1.js | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 45 for (var i = 0; i < s.length+10; i++) { 80 // Test complex string indexOf algorithms. Only trigger for long strings. 84 for(var i = 66; i < 76; i++) { // from 'B' to 'K' 90 for(var i = 0; i < long.length - pattern.length; i+= 7) { 102 // Search for a non-ASCII string in a pure ASCII string. 109 for (var i = 0; i < 65536; i++) allCodePoints[i] = i; 111 // Search for string long enough to trigger complex search with ASCII pattern 118 for (var lengthIndex = 0; lengthIndex < lengths.length; lengthIndex++) [all...] |
array-sort.js | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 74 for (var xb = 1; xb <= 1000 * 1000 * 1000; xb *= 10) { 75 for (var xf = 0; xf <= 9; xf++) { 76 for (var xo = -1; xo <= 1; xo++) { 77 for (var yb = 1; yb <= 1000 * 1000 * 1000; yb *= 10) { 78 for (var yf = 0; yf <= 9; yf++) { 79 for (var yo = -1; yo <= 1; yo++) { 218 // Regression test for issue 346, more info at URL 245 for (var i = 0; i < depth; i++) [all...] |
keyed-call-generic.js | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 28 // A test for keyed call ICs with a mix of smi and string keys. 31 for(var i = 0; i != 10; i++ ) { 37 for (var i = 0; i != 10; i++) { 38 for (var k = 0; k != keys.length; k++) { 100 for (var i = 0; i != 10; i++) { 101 for (var k = 0; k != keys.length; k++) {
|
string-externalize.js | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 36 for (var i = 0; i < size; i++) { 60 for (var i = 0; i < old_length; i++) { 63 for (var i = old_length; i < str1.length; i++) { 81 for (var i = 0; i < old_length; i++) { 84 for (var i = old_length; i < str.length; i++) { 93 for (var i = 0; i < 10; i++) {
|
/ndk/build/core/ |
setup-toolchain.mk | 12 # See the License for the specific language governing permissions and 17 # to setup the target toolchain for a given platform/abi combination. 35 # For now, this is enough to select armeabi-4.4.0 by default for ARM 37 $(call ndk_log,Using target toolchain '$(TARGET_TOOLCHAIN)' for '$(TARGET_ARCH_ABI)' ABI) 53 # that contains all public header files for a given platform, plus 54 # some libraries and object files used for linking the generated 63 # crtbegin_so.o and crtend_so.o are not available for all platforms, so 71 # Define default values for TOOLCHAIN_NAME, this can be overriden in 81 # Do the same for TOOLCHAIN_PREFIX. Note that we must chop the versio [all...] |
/external/chromium/chrome/browser/resources/net_internals/ |
dataview.js | 6 * This view displays options for importing/exporting the captured data. Its 8 * to read format for bug reports. 140 * If not already waiting for results from all updates, triggers all 141 * updates and starts waiting for them to complete. 155 // It's possible for a log file to be loaded while a dump is being generated. 214 for (var i = 0; i < badProxiesList.length; ++i) { 232 text.push('Time to live for successful resolves (ms): ' + 234 text.push('Time to live for failed resolves (ms): ' + 238 for (var i = 0; i < hostResolverCache.entries.length; ++i) { 250 for (var j = 0; j < e.addresses.length; ++j) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/ |
shell.js | 15 for ( tc=0; tc < testcases.length; tc++ ) { 28 /* wrapper for test cas constructor that doesn't require the SECTION 64 // for ecma version 2.0, we will leave the javascript version to 65 // the default ( for now ). 95 // need to replace w/ IEEE standard for rounding 120 for ( k = 0;
|
/external/chromium/chrome/browser/resources/keyboard/ |
main.js | 38 * @param {string} id The key identifier for this Character. 48 * @param {string} display Both the display and id for the created Character. 55 * An abstract base-class for all keys on the keyboard. 86 for (var i in this.modeElements_) { 92 * Returns the amount of padding for the top of the key. 93 * @param {string} mode The mode for the key. 129 for (var i in this.modeElements_) { 135 * Create the DOM elements for the given keyboard mode. Must be overridden. 136 * @param {string} mode The keyboard mode to create elements for. 138 * @return {Element} The top-level DOM Element for the key [all...] |
/external/v8/src/ |
mirror-debugger.js | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 46 * Returns the mirror for a specified value or object. 48 * @param {value or Object} value the value or object to retreive the mirror for 56 // Look for non transient mirrors in the mirror cache. 58 for (id in mirror_cache_) { 63 // Special check for NaN as NaN == NaN is false. 103 * Returns the mirror for a specified mirror handle. 105 * @param {number} handle the handle to find the mirror for 115 * Returns the mirror for the undefined value [all...] |
/external/chromium/chrome/browser/resources/picasaweb_uploader/js/ |
upload_page.js | 40 * UploadPage object is responsible for manipulating upload page. 60 for (var i = 0; i < buttons.length; i++) { 108 for (var i = 0; i < files.length; i++) { 178 * Event handler for files list changed. 206 * Event handler for login button clicked. 228 for (var album, i = 0; album = albums[i]; i++) { 237 * Event handler for logout button clicked. 246 * Event handler for album selection changed. 262 * Event handler for upload button clicked. 287 for (var i = 0; i < this.files_.length; i++) [all...] |
/libcore/ |
JavaLibrary.mk | 13 # See the License for the specific language governing permissions and 17 # Definitions for building the Java library and associated tests. 21 # Common definitions for host and target. 30 # java/ # Java source for library code. 31 # native/ # C++ source for library code. 33 # test/ # Built only on demand, for testing. 34 # java/ # Java source for tests. 35 # native/ # C++ source for tests (rare). 67 # Build for the target (device). 131 # Build for the host [all...] |