Home
last modified time | relevance | path

Searched refs:enclosingNode (Results 1 – 2 of 2) sorted by relevance

/third_party/typescript/src/services/formatting/
Dformatting.ts291 …function getScanStartPosition(enclosingNode: Node, originalRange: TextRange, sourceFile: SourceFil…
292 const start = enclosingNode.getStart(sourceFile);
293 if (start === originalRange.pos && enclosingNode.end === originalRange.end) {
300 return enclosingNode.pos;
306 return enclosingNode.pos;
376 const enclosingNode = findEnclosingNode(originalRange, sourceFile); constant
380 getScanStartPosition(enclosingNode, originalRange, sourceFile),
384 enclosingNode,
385 …SmartIndenter.getIndentationForNode(enclosingNode, originalRange, sourceFile, formatContext.option…
386 getOwnOrInheritedDelta(enclosingNode, formatContext.options, sourceFile),
[all …]
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fProgramInterfaceQueryTests.cpp255 …Node (NodeType type, const SharedPtr& enclosingNode) : m_type(type), m_enclosingNode(enclosingN… in Node() argument
281 Shader (const SharedPtr& enclosingNode, glu::ShaderType type, glu::GLSLVersion version) in Shader() argument
282 : Node (TYPE_SHADER, enclosingNode) in Shader()
286 DE_ASSERT(enclosingNode->getType() == TYPE_PROGRAM); in Shader()