Home
last modified time | relevance | path

Searched refs:functionArray (Results 1 – 5 of 5) sorted by relevance

/third_party/jsframework/mock-generate/src/generate/
DgenerateCommonFunction.ts27 export function generateCommonFunction(rootName: string, functionArray: Array<FunctionEntity>, sour…
29 const functionEntity = functionArray[0];
33 if (functionArray.length === 1) {
52 functionArray.forEach(value => {
/third_party/jsframework/mock-generate/src/declaration-node/
DmoduleDeclaration.ts70 const functionArray: Array<FunctionEntity> = []; constant
71 functionArray.push(FunctionEntity);
72 functionDeclarations.set(FunctionEntity.functionName, functionArray);
DsourceFileElementsAssemply.ts145 const functionArray: Array<FunctionEntity> = []; constant
146 functionArray.push(functionEntity);
147 functionDeclarations.set(functionEntity.functionName, functionArray);
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
DOutputASM.cpp515 functionArray.push_back(Function(0, "main(", nullptr, nullptr)); in OutputASM()
530 if(functionArray.size() > 1) // Only call main() when there are other functions in output()
1290 if(functionArray.size() > 1) // No need for a label when there's only main() in visitAggregate()
1306 functionArray.push_back(Function(functionArray.size(), name, &arguments, node)); in visitAggregate()
1317 if(functionArray.size() > 1) // No need to return when there's only main() in visitAggregate()
1980 copy(functionArray[currentFunction].ret, value); in visitBranch()
3091 for(unsigned int f = 0; f < functionArray.size(); f++) in findFunction()
3093 if(functionArray[f].name == name) in findFunction()
3095 return &functionArray[f]; in findFunction()
DOutputASM.h375 std::vector<Function> functionArray; variable