HomeSort by relevance Sort by last modified time
    Searched refs:return (Results 351 - 375 of 3313) sorted by null

<<11121314151617181920>>

  /external/v8/tools/gcmole/
gcmole.lua 53 return CLANG_BIN .. "/clang -cc1 -load " .. DIR .. "/libgcmole.so"
104 return sources
108 if cond == 'all' then return true end
115 return props[p] == v
125 return list
131 return BuildFileList(sources, { os = 'linux',
141 local function config (t) return setmetatable(t, mtConfig) end
147 return config(e)
175 return f
253 return errors_foun
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-cube.js 75 return Cross;
88 return A;
104 return M;
112 return Vect;
119 return Vect;
131 return M;
141 return MMulti(T, M);
155 return MMulti(R, M);
169 return MMulti(R, M);
183 return MMulti(R, M)
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
3d-cube.js 75 return Cross;
88 return A;
104 return M;
112 return Vect;
119 return Vect;
131 return M;
141 return MMulti(T, M);
155 return MMulti(R, M);
169 return MMulti(R, M);
183 return MMulti(R, M)
    [all...]
  /external/chromium/chrome/browser/resources/
bug_report.js 27 return;
82 return false;
85 return false;
114 return true;
119 return true;
136 return true;
155 return true;
  /external/v8/test/mjsunit/
object-literal.js 67 return {
81 function makeNonConstantArray() { return [ [ n ] ]; }
87 function makeNonConstantObject() { return { a: { b: n } }; }
94 function makeRegexpInArray() { return [ [ /a*/, {} ] ]; }
101 function makeRegexpInObject() { return { a: { b: /b*/, c: {} } }; }
130 "return",
159 var y = eval("({value : 42, get " + keyword + "(){return this.value}," +
smi-ops.js 34 this.valueOf = function() { return 42; };
41 return x + 1;
45 return x + 100;
49 return 1 + x;
53 return 100 + x;
74 return x - 1;
78 return x - 100;
82 return 1 - x;
86 return 100 - x;
106 return x >>> 1
    [all...]
strict-mode.js 150 CheckStrictMode("function octal() { return 012; }");
151 CheckStrictMode("function octal() { return '\\032'; }");
396 return;
507 return this;
511 return this;
514 var global_object = (function() { return this; })();
550 return typeof(this);
553 return typeof(this);
572 { get: function() { return strict; },
575 { get: function() { return nonstrict; }
    [all...]
debug-backtrace-text.js 38 return Math.sqrt(Math.pow(Math.abs(this.x - p.x), 2) + Math.pow(Math.abs(this.y - p.y), 2))
45 return p.distanceTo(this);
49 return p.distanceTo(q);
53 return new Point(x, y);
67 return eval('(' + code + ')');
69 return undefined;
bitops-info.js 29 return 2600822924; // It's not a signed Int32.
33 return 46512102; // It's a Smi
37 return 1600822924; // It's a signed Int32.
call-stub.js 37 return 1;
45 return 2;
60 return 2;
global-ic.js 29 return 87;
32 function LoadFromGlobal(global) { return global.x; }
34 function CallOnGlobal(global) { return global.f(); }
greedy.js 36 return f0;
40 if (n <= 1) return n;
41 return RecursiveFib(n - 1) + RecursiveFib(n - 2);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jquery/
jquery.flot.min.js 1 (function(){jQuery.color={};jQuery.color.make=function(G,H,J,I){var A={};A.r=G||0;A.g=H||0;A.b=J||0;A.a=I!=null?I:1;A.add=function(C,D){for(var E=0;E<C.length;++E){A[C.charAt(E)]+=D}return A.normalize()};A.scale=function(C,D){for(var E=0;E<C.length;++E){A[C.charAt(E)]*=D}return A.normalize()};A.toString=function(){if(A.a>=1){return"rgb("+[A.r,A.g,A.b].join(",")+")"}else{return"rgba("+[A.r,A.g,A.b,A.a].join(",")+")"}};A.normalize=function(){function C(E,D,F){return D<E?E:(D>F?F:D)}A.r=C(0,parseInt(A.r),255);A.g=C(0,parseInt(A.g),255);A.b=C(0,parseInt(A.b),255);A.a=C(0,A.a,1);return A};A.clone=function(){return jQuery.color.make(A.r,A.b,A.g,A.a)};return A.normalize()};jQuery.color.extract=function(E,F){var A;do{A=E.css(F).toLowerCase();if(A!=""&&A!="transparent"){break}E=E.parent()}while(!jQuery.nodeName(E.get(0),"body"));if(A=="rgba(0, 0, 0, 0)"){A="transparent"}return jQuery.color.parse(A)};jQuery.color.parse=function(A){var F,H=jQuery.color.make;if(F=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(A)){return H(parseInt(F[1],10),parseInt(F[2],10),parseInt(F[3],10))}if(F=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{ (…)
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jstemplate_test.js 20 return jstProcess(new JsEvalContext(data), template);
121 return str.indexOf(sub) != -1;
262 assertTrue("Asserted jstGetTemplate('t1') to return a dom element",
266 assertFalse("Asserted jstGetTemplate('asdf') to return null",
278 return html;
283 assertTrue("Expected jstGetTemplate('template') to return a dom element",
289 assertFalse("Expected jstGetTemplate('zxcv') to return null",
308 // Preprocessing a node with a jst attribute should return a valid struct
323 // Preprocessing a node with no jst attributes should return null
327 assertEquals('prepareNode with no jst attributes should return default',
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js 142 * Return a translated string.
147 * @param {string} id The id of the string to return.
148 * @return {string} The translated string.
151 return localStrings.getString(id);
155 * Return a translated string with arguments replaced.
160 * @param {string} id The id of the string to return.
162 * @return {string} The translated string with replaced values.
165 return localStrings.getStringF.apply(localStrings, arguments);
177 return false;
185 return child_path.indexOf(parent_path) == 0
    [all...]
harness.js 40 return;
61 return console.log('Filesystem reset.');
90 return document.getElementById('dialog').contentWindow.fileManager;
126 return;
161 return onDirFound(this.filesystem.root);
175 return successCallback(dir);
  /external/chromium/chrome/browser/resources/net_internals/
eventsview.js 117 return this.filterInput_.value;
144 return -1;
146 return 1;
152 return -deltaEndTime;
157 return -EventsView.compareSourceId_(source1, source2);
159 return EventsView.compareSourceId_(source1, source2);
167 return compareResult;
168 return EventsView.compareSourceId_(source1, source2);
174 return durationDifference;
175 return EventsView.compareSourceId_(source1, source2)
    [all...]
tabswitcherview.js 94 return tab;
96 return null;
107 return tab;
109 return null;
136 return ids;
166 return document.getElementById(this.id);
  /external/chromium/chrome/browser/resources/touch_ntp/standalone/
standalone_hack.js 168 return new F();
187 return newApps;
196 * @return {number} First index at which predicate returned true, or -1.
201 return i;
203 return -1;
211 * @return {number} The index in apps for an object with the specified ID.
214 var i = indexOfPred(apps, function(e) { return e.id === id;});
217 return i;
224 * @return {Object} The corresponding application object.
227 return apps[getAppIndex(id)]
    [all...]
  /external/v8/test/mjsunit/compiler/
simple-inlining.js 45 o1.f = function() { return 42; };
67 o2.g = function() { return this; };
89 o3.h = function() { return this.x; };
111 o4.h = function() { return this.x.length; };
134 o5.h = function() { return this.e.y; };
156 o7.foo = function() { return this.x[0]; };
recursive-deopt.js 34 if (n == 0) return 1 << one;
35 return f(n - 1) << one;
44 var one = { valueOf: function() { return 1; } };
regress-intoverflow.js 33 return a * b;
44 return a + b;
57 return a - b;
regress-serialized-slots.js 44 return func.apply(
48 return bound;
52 return x + y;
  /external/webkit/LayoutTests/fast/dom/DOMImplementation/script-tests/
createDocument-namespace-err.js 28 return exceptionName; // + "(" + c + ")";
29 return c;
97 return v;
99 return '"' + v.replace('"', '\\"') + '"';
101 return String(v);
111 return copy.join(", ");
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-reference.js 169 return node.children_ul;
172 return node;
210 return full.substr(toroot.length);
213 return null;
227 return file.substr(1);
238 return new Array(i);
243 return (new Array(i).concat(result));
247 return null;
275 me.node.get_children_ul = function() { return me.node.children_ul; };
324 return false
    [all...]

Completed in 470 milliseconds

<<11121314151617181920>>