HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 801 - 825 of 4292) sorted by null

<<31323334353637383940>>

  /external/v8/tools/
detect-builtins.js 5 (function(global) {
7 var GetProperties = function(this_name, object) {
16 if (typeof object === "function") {
38 if (type === "function") {
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
fastcodemb.h 20 /* Description: This file contains structure and function prototypes used
21 in FastCodeMB() function. When it is decided to use FastCodeMB
52 void initCodeMB(approxDCT *function, Int QP);
53 PV_STATUS CodeMB_H263(VideoEncData *video, approxDCT *function, Int QP, Int ncoefblck[], Int offset);
54 PV_STATUS CodeMB_MPEG(VideoEncData *video, approxDCT *function, Int QP, Int ncoefblck[], Int offset);
60 Int AppVCA1_dct(Int block[], Int out[ ], approxDCT *function);
61 Int AppVCA2_dct(Int block[], Int out[ ], approxDCT *function);
62 Int AppVCA3_dct(Int block[], Int out[ ], approxDCT *function);
63 Int AppVCA4_dct(Int block[], Int out[ ], approxDCT *function);
64 Int AppVCA5_dct(Int block[], Int out[ ], approxDCT *function);
    [all...]
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_trace.c 68 * 1 - function name
69 * 2 - function name, line number
113 loc->function);
123 loc->function);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/
swap.pass.cpp 12 // class function<R(ArgTypes...)>
15 // void swap(function<R(ArgTypes...)>&, function<R(ArgTypes...)>&);
76 std::function<int(int)> f1 = A(1);
77 std::function<int(int)> f2 = A(2);
91 std::function<int(int)> f1 = A(1);
92 std::function<int(int)> f2 = g;
106 std::function<int(int)> f1 = g;
107 std::function<int(int)> f2 = A(1);
121 std::function<int(int)> f1 = g
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/
swap.pass.cpp 12 // class function<R(ArgTypes...)>
14 // void swap(function& other);
75 std::function<int(int)> f1 = A(1);
76 std::function<int(int)> f2 = A(2);
90 std::function<int(int)> f1 = A(1);
91 std::function<int(int)> f2 = g;
105 std::function<int(int)> f1 = g;
106 std::function<int(int)> f2 = A(1);
120 std::function<int(int)> f1 = g;
121 std::function<int(int)> f2 = h
    [all...]
  /external/v8/src/
array-iterator.js 18 function ArrayIterator() {}
27 function CreateArrayIterator(array, kind) {
38 function CreateIteratorResultObject(value, done) {
44 function ArrayIteratorIterator() {
50 function ArrayIteratorNext() {
88 function ArrayEntries() {
93 function ArrayValues() {
98 function ArrayKeys() {
103 function SetUpArrayIterator() {
119 function ExtendArrayPrototype()
    [all...]
  /external/v8/test/mjsunit/compiler/
division-by-constant.js 32 function ConstructDiv(divisor) {
37 new Function("dividend", "divisor", ConstructDiv("divisor"));
43 function ConstructMod(divisor) {
48 new Function("dividend", "divisor", ConstructMod("divisor"));
54 function ConstructFlooringDiv(divisor) {
59 new Function("dividend", "divisor", ConstructFlooringDiv("divisor"));
65 function PushSymmetric(values, x) {
69 function PushRangeSymmetric(values, from, to) {
75 function CreateTestValues() {
104 function TestDivisionLike(ref, construct, values, divisor)
    [all...]
literals-optimized.js 32 function TestOptimizedLiteral(create, verify) {
41 function create_arr_shallow(a, b, c) {
44 function verify_arr_shallow(array, a, b, c) {
57 function create_arr_nested(a, b, c) {
60 function verify_arr_nested(array, a, b, c) {
77 function create_obj_shallow(a, b, c) {
80 function verify_obj_shallow(object, a, b, c) {
91 function create_obj_nested(a, b, c) {
94 function verify_obj_nested(object, a, b, c) {
107 function create_mixed_nested(a, b, c)
    [all...]
  /external/v8/test/mjsunit/
dehoisted-array-index.js 33 function aoo(i) {
44 function boo(i) {
61 function coo() {
77 function doo() {
91 function eoo() {
108 function foo() {
127 function goo(i) {
141 // Key is return value of function
142 function index() {
146 function hoo()
    [all...]
global-load-from-eval.js 32 function test() {
33 function g() {
35 function h() {
39 function i(x) {
42 function j() {
44 // Shadow with function name.
45 function x() {
66 function testDeep(source, load, test) {
68 function f() {
70 function g()
    [all...]
value-wrapper-accessor.js 33 function test(object, prototype) {
36 get: function() { result = this; },
37 set: function(v) { result = this; }
40 get: function() { "use strict"; result = this; },
41 set: function(v) { "use strict"; result = this; }
44 (function() {
45 function nonstrict(s) {
48 function strict(s) {
67 (function() {
68 function nonstrict(s)
    [all...]
  /external/v8/test/mjsunit/regress/
regress-crbug-125148.js 30 function ToDictionaryMode(x) {
36 // The initial bug report was about calling a know function...
38 Object.defineProperty(A, "foo", { value: function() { assertUnreachable(); }});
41 Object.defineProperty(B, "foo", { value: function() { return 111; }});
45 function bar(x) { return x.foo(); }
55 Object.defineProperty(A, "baz", { get: function() { assertUnreachable(); }});
58 Object.defineProperty(B, "baz", { get: function() { return 111; }});
62 function boo(x) { return x.baz; }
72 Object.defineProperty(A, "huh", { set: function(x) { assertUnreachable(); }});
76 Object.defineProperty(B, "huh", { set: function(x) { setterValue = x; }})
    [all...]
  /external/v8/test/promises-aplus/lib/
assert.js 30 function compose(message1, message2) {
34 function fail(actual, expected, message, operator) {
41 function ok(value, message) {
47 function equal(actual, expected, message) {
53 function notEqual(actual, expected, message) {
59 function strictEqual(actual, expected, message) {
65 function notStrictEqual(actual, expected, message) {
71 function assert(value, message) {
75 function notImplemented() {
76 throw Error('FAIL: This assertion function is not yet implemented.')
    [all...]
  /external/v8/test/webkit/
array-every.js 29 function isBigEnough(element, index, array) {
39 isBigEnough: function(s) {
51 function isBigEnoughAndPop(element, index, array) {
60 function isBigEnoughAndChange(element, index, array) {
69 function isBigEnoughAndPush(element, index, array) {
78 function isBigEnoughAndException(element, index, array) {
79 if(index==1) throw "exception from function";
82 shouldThrow("[12, 5, 8, 130, 44].every(isBigEnoughAndException)", '"exception from function"');
83 shouldThrow("[12, 54, 18, 130, 44].every(isBigEnoughAndException)", '"exception from function"');
97 function isBigEnoughShortCircuit(element, index, array)
    [all...]
dictionary-no-cache.js 26 var Test = function(){};
31 Test.prototype['myMethod' + i] = function(){};
38 Test.prototype.myAdditionalMethod = function(){};
47 var Test = function(){};
49 Test.prototype['myMethod' + i] = function(){};
64 var Test = function(){};
66 Test.prototype['myMethod' + i] = function(){};
69 function update(test) {
81 Test.prototype.__defineSetter__("newProperty", function(){ calledNewPrototypeSetter = true; });
94 getTestProperty = function(o)
    [all...]
  /ndk/docs/Getting_Started/html/
jquery.js 16 (function(bb,L){var av=bb.document,bu=bb.navigator,bl=bb.location;var b=(function(){var bF=function(b0,b1){return new bF.fn.init(b0,b1,bD)},bU=bb.jQuery,bH=bb.$,bD,bY=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,bM=/\S/,bI=/^\s+/,bE=/\s+$/,bA=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,bN=/^[\],:{}\s]*$/,bW=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,bP=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,bJ=/(?:^|:|,)(?:\s*\[)+/g,by=/(webkit)[ \/]([\w.]+)/,bR=/(opera)(?:.*version)?[ \/]([\w.]+)/,bQ=/(msie) ([\w.]+)/,bS=/(mozilla)(?:.*? rv:([\w.]+))?/,bB=/-([a-z]|[0-9])/ig,bZ=/^-ms-/,bT=function(b0,b1){return(b1+"").toUpperCase()},bX=bu.userAgent,bV,bC,e,bL=Object.prototype.toString,bG=Object.prototype.hasOwnProperty,bz=Array.prototype.push,bK=Array.prototype.slice,bO=String.prototype.trim,bv=Array.prototype.indexOf,bx={};bF.fn=bF.prototype={constructor:bF,init:function(b0,b4,b3){var b2,b5,b1,b6;if(!b0){return this}if(b0.nodeType){this.context=this[0]=b0;this.length=1;return this}if(b0==="body"&&!b4&&av.body){this.context=av;this[0]=av.body;this.selector=b0;this.length=1;return this}if(typeof b0==="string"){if(b0.charAt(0)==="<"&&b0.charAt(b0.length-1)===">"&&b0.length>=3){b2=[null,b0,null]}else{b2=bY.exec(b0)}if(b2&&(b2[1]||!b4)){if(b2[1]){b4=b4 instanceof bF?b4[0]:b4;b6=(b4?b4.ownerDocument||b4:av);b1=bA.exec(b0);if(b1){if(bF.isPlainObject(b4)){b0=[av.createElement(b1[1])];bF.fn.attr.call(b0,b4,true)}else{b0=[b6.createElement(b1[1])]}}else{b1=bF.buildFragment([b2[1]],[b6]);b0=(b1.cacheable?bF.clone(b1.fragment):b1.fragment).childNodes}return bF.merge(this,b0)}else{b5=av.getElementById(b2[2]);if(b5&&b5.parentNode){if(b5.id!==b2[2]){return b3.find(b0)}this.length=1;this[0]=b5}this.context=av;this.selector=b0;return this}}else{if(!b4||b4.jquery){return(b4||b3).find(b0)}else{return this.constructor(b4).find(b0)}}}else{if(bF.isFunction(b0)){return b3.ready(b0)}}if(b0.selector!==L){this.selector=b0.selector;this.context=b0.context}return bF.makeArray(b0,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return bK.call(this,0)},get:function(b0){return b0==null?this.toArray():(b0<0?this[this.length+b0]:this[b0])},pushStack:function(b1,b3,b0){var b2=this.constructor();if(bF.isArray(b1)){bz.apply(b2,b1)}else{bF.merge(b2,b1)}b2.prevObject=this;b2.context=this.context;if(b3==="find"){b2.selector=this.selector+(this.selector?" ":"")+b0}else{if(b3){b2.selector=this.selector+"."+b3+"("+b0+")"}}return b2},each:function(b1,b0){return bF.each(this,b1,b0)},ready:function(b0){bF.bindReady();bC.add(b0);return this},eq:fu (…)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
NoViableAltException.js 1 org.antlr.runtime.NoViableAltException = function(grammarDecisionDescription,
15 toString: function() {
  /external/chromium-libpac/test/js-unittest/
dns_fail.js 5 function FindProxyForURL(url, host) {
23 function expectEq(expected, actual) {
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/simple_api/
simple_api_parser.js 14 function skip() {
19 var SimpleApiParser = module.exports = function (handlers, options) {
30 SimpleApiParser.prototype._wrapHandler = function (handler) {
36 return function () {
47 SimpleApiParser.prototype.parse = function (html) {
78 SimpleApiParser.prototype._handleToken = function (token) {
96 SimpleApiParser.prototype._reset = function (html) {
102 SimpleApiParser.prototype._emitPendingText = function () {
  /external/lldb/source/Target/
StackID.cpp 101 // Items with the same function can only be compared
102 if (lhs_sc.function == rhs_sc.function &&
103 lhs_sc.function != NULL && lhs_sc.block != NULL &&
104 rhs_sc.function != NULL && rhs_sc.block != NULL)
  /external/llvm/test/MC/AArch64/
elf-extern.s 9 .type check_extern,@function
  /external/llvm/test/MC/ARM/
directive-word-diagnostics.s 6 .type double_diagnostics,%function
inst-constant-required.s 9 .type constant_expression_required,%function
inst-directive.s 15 .type arm_inst,%function
34 .type thumb_inst_n,%function
53 .type thumb_inst_w,%function
72 .type thumb_inst_inst,%function
inst-overflow.s 9 .type constant_overflow,%function

Completed in 1969 milliseconds

<<31323334353637383940>>