Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DUnicodeNameToCodepoint.cpp193 uint32_t ChildOffset = N.ChildrenOffset; in compareNode()
199 compareNode(ChildOffset, Name.substr(Consummed), Strict, in compareNode()
206 ChildOffset += C.Size; in compareNode()
526 auto ChildOffset = N.ChildrenOffset; in nearestMatchesForCodepointName()
528 Node C = readNode(ChildOffset, &N); in nearestMatchesForCodepointName()
529 ChildOffset += C.Size; in nearestMatchesForCodepointName() local
195 uint32_t ChildOffset = N.ChildrenOffset; compareNode() local
/freebsd/contrib/llvm-project/clang/lib/Rewrite/
H A DRewriteRope.cpp482 unsigned ChildOffset = 0; in split() local
484 for (; Offset >= ChildOffset+getChild(i)->size(); ++i) in split()
485 ChildOffset += getChild(i)->size(); in split()
488 if (ChildOffset == Offset) in split()
492 if (RopePieceBTreeNode *RHS = getChild(i)->split(Offset-ChildOffset)) in split()