Lines Matching refs:row
43 for (let row of results) { variable
45 fileStruct.id = row.id;
46 fileStruct.name = row.name;
47 fileStruct.startTs = row.startTs;
48 fileStruct.endTs = row.endTs;
49 fileStruct.pid = row.pid;
50 fileStruct.size = row.size;
75 for (let row of result) { variable
76 if (row.key.includes('types')) continue;
77 switch (row.key) {
79 file.snapshotStruct.nodeCount = row.intValue;
82 file.snapshotStruct.edgeCount = row.intValue;
85 file.snapshotStruct.functionCount = row.intValue;
95 for (let row of result) { variable
98 row.nodeIndex,
99 row.type,
100 file.snapshotStruct.strings[row.nameIdx],
101 row.id,
102 row.selfSize,
103 row.edgeCount,
104 row.traceNodeId,
105 row.detachedness,
109 file.snapshotStruct.rootNodeId = row.id;
112 firstEdgeIndex += row.edgeCount;
128 for (let row of result) { variable
130 row.id,
131 strings[row.name],
132 strings[row.scriptName],
133 row.scriptId,
134 row.line,
135 row.column,
136 row.count,
137 row.size,
138 row.liveCount,
139 row.liveSize,
142 traceNode.parentsId.push(row.parentId);
143 traceNode.functionIndex = row.functionInfoIndex;