Home
last modified time | relevance | path

Searched refs:childNode (Results 1 – 25 of 25) sorted by relevance

/third_party/vk-gl-cts/external/vulkan-docs/src/katex/contrib/
Dauto-render.js269 var childNode = elem.childNodes[i];
271 if (childNode.nodeType === 3) {
273 var frag = auto_render_renderMathInText(childNode.textContent, optionsCopy);
275 elem.replaceChild(frag, childNode);
276 } else if (childNode.nodeType === 1) {
279 var className = ' ' + childNode.className + ' ';
280 …var shouldRender = optionsCopy.ignoredTags.indexOf(childNode.nodeName.toLowerCase()) === -1 && opt…
285 renderElem(childNode, optionsCopy);
Dauto-render.mjs153 const childNode = elem.childNodes[i];
155 if (childNode.nodeType === 3) {
157 const frag = renderMathInText(childNode.textContent, optionsCopy);
159 elem.replaceChild(frag, childNode);
160 } else if (childNode.nodeType === 1) {
162 const className = ' ' + childNode.className + ' ';
163 …const shouldRender = optionsCopy.ignoredTags.indexOf(childNode.nodeName.toLowerCase()) === -1 && o…
166 renderElem(childNode, optionsCopy);
/third_party/protobuf/csharp/src/Google.Protobuf/
DFieldMaskTree.cs123 Node childNode; in AddFieldPath()
124 if (!node.Children.TryGetValue(part, out childNode)) in AddFieldPath()
127 childNode = new Node(); in AddFieldPath()
128 node.Children.Add(part, childNode); in AddFieldPath()
130 node = childNode; in AddFieldPath()
/third_party/vk-gl-cts/framework/common/
DtcuTestHierarchyIterator.cpp222 TestNode* childNode = iter.children[iter.curChildNdx]; in next() local
226 if ( isTestNodeTypeExecutable(childNode->getNodeType()) ) in next()
228 const std::string testName = m_nodePath + "." + childNode->getName(); in next()
232 m_sessionStack.push_back(NodeIter(childNode)); in next()
/third_party/skia/modules/skottie/src/
DLayer.cpp134 sk_sp<sksg::RenderNode> childNode) { in AttachMask() argument
135 if (!jmask) return childNode; in AttachMask()
201 return childNode; in AttachMask()
221 return sksg::ClipEffect::Make(std::move(childNode), std::move(clip_node), true); in AttachMask()
240 return sksg::MaskEffect::Make(std::move(childNode), std::move(maskNode)); in AttachMask()
/third_party/node/deps/icu-small/source/i18n/
Dplurrule.cpp989 if ( other.childNode != nullptr ) { in OrConstraint()
990 this->childNode = new AndConstraint(*(other.childNode)); in OrConstraint()
991 if (this->childNode == nullptr) { in OrConstraint()
1009 delete childNode; in ~OrConstraint()
1010 childNode = nullptr; in ~OrConstraint()
1026 U_ASSERT(curOrConstraint->childNode == nullptr); in add()
1027 curOrConstraint->childNode = new AndConstraint(); in add()
1028 if (curOrConstraint->childNode == nullptr) { in add()
1032 return curOrConstraint->childNode; in add()
1042 AndConstraint* andRule = orRule->childNode; in isFulfilled()
[all …]
Dplurrule_impl.h374 AndConstraint *childNode = nullptr;
/third_party/icu/icu4c/source/i18n/
Dplurrule.cpp985 if ( other.childNode != nullptr ) { in OrConstraint()
986 this->childNode = new AndConstraint(*(other.childNode)); in OrConstraint()
987 if (this->childNode == nullptr) { in OrConstraint()
1005 delete childNode; in ~OrConstraint()
1006 childNode = nullptr; in ~OrConstraint()
1022 U_ASSERT(curOrConstraint->childNode == nullptr); in add()
1023 curOrConstraint->childNode = new AndConstraint(); in add()
1024 if (curOrConstraint->childNode == nullptr) { in add()
1028 return curOrConstraint->childNode; in add()
1038 AndConstraint* andRule = orRule->childNode; in isFulfilled()
[all …]
Dplurrule_impl.h374 AndConstraint *childNode = nullptr;
/third_party/skia/third_party/externals/icu/source/i18n/
Dplurrule.cpp970 if ( other.childNode != nullptr ) { in OrConstraint()
971 this->childNode = new AndConstraint(*(other.childNode)); in OrConstraint()
972 if (this->childNode == nullptr) { in OrConstraint()
990 delete childNode; in ~OrConstraint()
991 childNode = nullptr; in ~OrConstraint()
1007 U_ASSERT(curOrConstraint->childNode == nullptr); in add()
1008 curOrConstraint->childNode = new AndConstraint(); in add()
1009 if (curOrConstraint->childNode == nullptr) { in add()
1013 return curOrConstraint->childNode; in add()
1023 AndConstraint* andRule = orRule->childNode; in isFulfilled()
[all …]
Dplurrule_impl.h370 AndConstraint *childNode = nullptr;
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
DAstHelpers.cpp21 TIntermNode *childNode = declNode.getChildNode(0); in ViewDeclaration() local
22 ASSERT(childNode); in ViewDeclaration()
24 if ((symbolNode = childNode->getAsSymbolNode())) in ViewDeclaration()
30 TIntermBinary *initNode = childNode->getAsBinaryNode(); in ViewDeclaration()
DToposortStructs.cpp220 TIntermNode &childNode = *declNode->getChildNode(0); in GetAsDeclaredStructure() local
222 if (TIntermSymbol *symbolNode = childNode.getAsSymbolNode()) in GetAsDeclaredStructure()
DEmitMetal.cpp2139 TIntermNode &childNode = *declNode->getChildNode(0); in NewlinePad() local
2140 if (TIntermSymbol *symbolNode = childNode.getAsSymbolNode()) in NewlinePad()
/third_party/skia/modules/svg/src/
DSkSVGDOM.cpp378 sk_sp<SkSVGNode> childNode = construct_svg_node(dom, localCtx, child); in construct_svg_node() local
379 if (childNode) { in construct_svg_node()
380 node->appendChild(std::move(childNode)); in construct_svg_node()
/third_party/parse5/packages/parse5/lib/tree-adapters/
Dinterface.ts18 childNode: ChildNode; property
/third_party/glslang/glslang/HLSL/
DhlslParseHelper.h78 …mTyped* handleUnaryMath(const TSourceLoc&, const char* str, TOperator op, TIntermTyped* childNode);
DhlslParseHelper.cpp882 TIntermTyped* childNode) in handleUnaryMath() argument
884 TIntermTyped* result = intermediate.addUnaryMath(op, childNode, loc); in handleUnaryMath()
889 unaryOpError(loc, str, childNode->getCompleteString()); in handleUnaryMath()
891 return childNode; in handleUnaryMath()
/third_party/glslang/glslang/MachineIndependent/
DParseHelper.h344 …mTyped* handleUnaryMath(const TSourceLoc&, const char* str, TOperator op, TIntermTyped* childNode);
DIntermediate.cpp464 TIntermNode* childNode, const TType& returnType) in addBuiltInFunctionCall() argument
472 TIntermTyped* child = childNode->getAsTyped(); in addBuiltInFunctionCall()
485 TIntermTyped* node = setAggregateOperator(childNode, op, returnType, loc); in addBuiltInFunctionCall()
DParseHelper.cpp910 …ext::handleUnaryMath(const TSourceLoc& loc, const char* str, TOperator op, TIntermTyped* childNode) in handleUnaryMath() argument
912 rValueErrorCheck(loc, str, childNode); in handleUnaryMath()
915 if ((childNode->getType().contains16BitFloat() && !float16Arithmetic()) || in handleUnaryMath()
916 (childNode->getType().contains16BitInt() && !int16Arithmetic()) || in handleUnaryMath()
917 (childNode->getType().contains8BitInt() && !int8Arithmetic())) { in handleUnaryMath()
923 result = intermediate.addUnaryMath(op, childNode, loc); in handleUnaryMath()
929 unaryOpError(loc, str, childNode->getCompleteString(enhanced)); in handleUnaryMath()
932 return childNode; in handleUnaryMath()
/third_party/libabigail/tests/lib/
Dcatch.hpp17014 for( auto const& childNode : sectionNode.childSections ) in writeSection() local
17016 writeSection( name, "", *childNode, testOkToFail ); in writeSection()
17018 writeSection( className, name, *childNode, testOkToFail ); in writeSection()
/third_party/typescript/src/compiler/
Dchecker.ts39352 return !!forEachChild(body, function check(childNode): boolean | undefined {
39353 if (isIdentifier(childNode)) {
39354 const childSymbol = getSymbolAtLocation(childNode);
39362 let childExpression = childNode.parent;
39385 return forEachChild(childNode, check);
/third_party/typescript/lib/
Dtsc.js72997 return !!ts.forEachChild(body, function check(childNode) { argument
72998 if (ts.isIdentifier(childNode)) {
72999 var childSymbol = getSymbolAtLocation(childNode);
73005 var childExpression = childNode.parent;
73028 return ts.forEachChild(childNode, check);
DtypingsInstaller.js86661 return !!ts.forEachChild(body, function check(childNode) { argument
86662 if (ts.isIdentifier(childNode)) {
86663 var childSymbol = getSymbolAtLocation(childNode);
86671 var childExpression = childNode.parent;
86694 return ts.forEachChild(childNode, check);