Searched refs:functionCode (Results 1 – 4 of 4) sorted by relevance
/third_party/jsframework/runtime/main/page/entry/ |
D | init.ts | 112 let functionCode: string; 114 functionCode = `(function(global){\n\n"use strict";\n\n ${code} \n\n})(this.__appProto__)`; 121 compileBundle(functionCode, page.doc.url, options, services); 132 export function compileBundle(functionCode: string, file: string, ...args: object[]): any { 143 if (!compileBundleNative(funcKeys, funcValues, functionCode, file)) { 144 const resolveFunction: Function = new Function(funcKeys.toString(), functionCode); 156 function compileBundleNative(funcKeys: string[], funcValues: Function[], functionCode: string, file… 162 const bundle: string = `(function (${funcKeys.toString()}) {${functionCode}})`;
|
/third_party/jsframework/runtime/main/app/ |
D | index.ts | 132 …const functionCode: string = `(function(global){\n\n"use strict";\n\n ${code} \n\n})(this.__appPro… constant 133 compileBundle(functionCode, 'app.js', parseOptions, timerAPIs, services);
|
/third_party/skia/src/pdf/ |
D | SkPDFGradientShader.cpp | 702 SkDynamicMemoryWStream functionCode; in make_function_shader() local 717 linearCode(infoCopy, perspectiveInverseOnly, &functionCode); in make_function_shader() 720 radialCode(infoCopy, perspectiveInverseOnly, &functionCode); in make_function_shader() 723 twoPointConicalCode(infoCopy, perspectiveInverseOnly, &functionCode); in make_function_shader() 726 sweepCode(infoCopy, perspectiveInverseOnly, &functionCode); in make_function_shader() 737 make_ps_function(functionCode.detachAsStream(), std::move(domain), in make_function_shader()
|
/third_party/flutter/skia/src/pdf/ |
D | SkPDFGradientShader.cpp | 702 SkDynamicMemoryWStream functionCode; in make_function_shader() local 717 linearCode(infoCopy, perspectiveInverseOnly, &functionCode); in make_function_shader() 720 radialCode(infoCopy, perspectiveInverseOnly, &functionCode); in make_function_shader() 723 twoPointConicalCode(infoCopy, perspectiveInverseOnly, &functionCode); in make_function_shader() 726 sweepCode(infoCopy, perspectiveInverseOnly, &functionCode); in make_function_shader() 737 make_ps_function(functionCode.detachAsStream(), std::move(domain), in make_function_shader()
|