/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/tests/ |
A D | test262.patch | 43 + return String.fromCodePoint.apply(null, codePoints); 49 - let result = Reflect.apply(String.fromCodePoint, null, loneCodePoints); 58 - result += Reflect.apply(String.fromCodePoint, null, codePoints); 61 + let result = String.fromCodePoint.apply(null, loneCodePoints); 65 - result += Reflect.apply(String.fromCodePoint, null, codePoints);
|
A D | test_qjscalc.js | 144 assert(a.apply(0.1) == 1.23); 153 b = abs(a.apply(r[i])); 177 assert(a.apply(1/3) == -7/5); 193 b = a.apply(0.1);
|
/AliOS-Things-master/components/freetype/src/truetype/ |
A D | ttgxvar.c | 506 FT_Fixed apply = 0x10000L; in ft_var_apply_tuple() local 522 apply = 0; in ft_var_apply_tuple() 528 apply = FT_MulFix( apply, in ft_var_apply_tuple() 536 apply = 0; in ft_var_apply_tuple() 541 apply = FT_MulDiv( apply, in ft_var_apply_tuple() 546 apply = FT_MulDiv( apply, in ft_var_apply_tuple() 551 return apply; in ft_var_apply_tuple() 1177 FT_Fixed apply; in tt_face_vary_cvt() local 1212 apply = ft_var_apply_tuple( blend, in tt_face_vary_cvt() 1374 FT_Fixed apply; in TT_Vary_Get_Glyph_Deltas() local [all …]
|
/AliOS-Things-master/components/drivers/peripheral/pwm/src/ |
A D | pwm.c | 60 if (pwm->ops->apply == NULL) in aos_pwm_set_attr() 64 ret = pwm->ops->apply(pwm, &l_attr); in aos_pwm_set_attr() 135 (pwm->ops->apply == NULL) || (pwm->ops->shutdown == NULL) || in aos_pwm_register()
|
A D | pwm_csi.c | 47 .apply = pwm_csi_apply,
|
/AliOS-Things-master/components/freetype/include/internal/ |
A D | pshints.h | 350 T1_Hints_ApplyFunc apply; member 664 T2_Hints_ApplyFunc apply; member
|
/AliOS-Things-master/components/amp/jslib/src/ |
A D | events.js | 125 Function.prototype.apply.call(handler, this, args); 130 Function.prototype.apply.call(listeners[i], this, args); 190 Function.prototype.apply.call(this.listener, this.target, arguments); 380 return this._eventsCount > 0 ? Function.prototype.apply.call(this._events) : []; method in _eventsCount
|
/AliOS-Things-master/components/amp/libjs/lib/ |
A D | events.js | 125 Function.prototype.apply.call(handler, this, args); 130 Function.prototype.apply.call(listeners[i], this, args); 190 Function.prototype.apply.call(this.listener, this.target, arguments); 380 return this._eventsCount > 0 ? Function.prototype.apply.call(this._events) : []; method in _eventsCount
|
/AliOS-Things-master/solutions/javascript_demo/board/haas600/ |
A D | uart.js | 23 return String.fromCharCode.apply(null, new Uint8Array(buf));
|
/AliOS-Things-master/solutions/javascript_demo/board/haas-edu-k1/ |
A D | uart.js | 23 return String.fromCharCode.apply(null, new Uint8Array(buf));
|
/AliOS-Things-master/solutions/javascript_demo/board/haas100/ |
A D | uart.js | 23 return String.fromCharCode.apply(null, new Uint8Array(buf));
|
/AliOS-Things-master/components/drivers/peripheral/pwm/include/aos/ |
A D | pwm_core.h | 49 aos_status_t (*apply)(aos_pwm_t *pwm, aos_pwm_attr_t const *attr); member
|
/AliOS-Things-master/components/SDL2/test/nacl/ |
A D | background.js | 31 createWindow(makeURL.apply(null, toolchain_config));
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | codestats.sh | 110 echo apply patch 111 git apply - << EOF
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/swig/ |
A D | libwebp.swig | 43 %apply (char* STRING, size_t LENGTH) { (const uint8_t* data, size_t data_size) } 62 %apply uint8_t[] { uint8_t* } 66 %apply (char* STRING, size_t LENGTH) { (const uint8_t* data, size_t data_size) } 109 %apply int* OUTPUT { int* width, int* height } 261 %apply int* INPUT { int* unused1, int* unused2 } 262 %apply int* OUTPUT { int* output_size }
|
/AliOS-Things-master/components/SDL2/src/gfx/Docs/html/ |
A D | jquery.js | 12 …apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.… 13 var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStac… 20 …apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai… 21 …apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I… 22 …typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G=… 42 …apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDoc… 53 …apply(this,[d,q,n]),j=c.browser.msie&&c.browser.version<7,e=this.sizeDiff;if(this._aspectRatio||d.…
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/doc/ |
A D | README | 19 following will apply inline CSS styling; an external stylesheet is not
|
/AliOS-Things-master/hardware/chip/haas1000/aos_driver/pwm/ |
A D | pwm.c | 118 .apply = haas1000_pwm_apply,
|
/AliOS-Things-master/components/SDL2/src/video/winrt/ |
A D | SDL_winrtvideo.cpp | 525 Uint32 apply = WINRT_DetectWindowFlags(window); in WINRT_UpdateWindowFlags() local 526 if ((apply & mask) & SDL_WINDOW_FULLSCREEN) { in WINRT_UpdateWindowFlags() 529 window->flags = (window->flags & ~mask) | (apply & mask); in WINRT_UpdateWindowFlags()
|
/AliOS-Things-master/components/SDL2/src/hidapi/ |
A D | LICENSE-gpl3.txt | 19 any other work released this way by its authors. You can apply it to 77 "Copyright" also means copyright-like laws that apply to other kinds of 201 non-permissive terms added in accord with section 7 apply to the code; 224 License will therefore apply, along with any applicable section 7 242 in an aggregate does not cause this License to apply to the other 324 by the Installation Information. But this requirement does not apply 350 apply only to part of the Program, that part may be used separately 400 additional terms that apply to those files, or a notice indicating 405 the above requirements apply either way. 558 License will continue to apply to the part which is the covered work, [all …]
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | qjscalc.js | 1026 z0 = p.apply(z); 1045 z1 = p1.apply(z); 1046 z2 = p2.apply(z); 1136 apply(b) { 1481 apply(b) { 1482 return this.num.apply(b) / this.den.apply(b); 1792 apply(b) { 1851 return r.apply(a);
|
A D | quickjs-atom.h | 122 DEF(apply, "apply")
|
/AliOS-Things-master/components/SDL2/acinclude/ |
A D | ax_check_compiler_flags.m4 | 47 # exception to the GPL to apply to your modified version as well.
|
/AliOS-Things-master/hardware/chip/rtl872xd/aos_driver/pwm/ |
A D | pwm.c | 203 .apply = rtl872xd_pwm_apply,
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/gregbook/ |
A D | COPYING | 18 the GNU Library General Public License instead.) You can apply it to 114 These requirements apply to the modified work as a whole. If 117 themselves, then this License, and its terms, do not apply to those 212 apply and the section as a whole is intended to apply in other
|