/third_party/vk-gl-cts/external/vulkan-docs/src/katex/contrib/ |
D | auto-render.js | 269 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);
|
D | auto-render.mjs | 153 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/ |
D | FieldMaskTree.cs | 123 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/ |
D | tcuTestHierarchyIterator.cpp | 222 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/ |
D | Layer.cpp | 134 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/ |
D | plurrule.cpp | 989 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 …]
|
D | plurrule_impl.h | 374 AndConstraint *childNode = nullptr;
|
/third_party/icu/icu4c/source/i18n/ |
D | plurrule.cpp | 985 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 …]
|
D | plurrule_impl.h | 374 AndConstraint *childNode = nullptr;
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | plurrule.cpp | 970 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 …]
|
D | plurrule_impl.h | 370 AndConstraint *childNode = nullptr;
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
D | AstHelpers.cpp | 21 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()
|
D | ToposortStructs.cpp | 220 TIntermNode &childNode = *declNode->getChildNode(0); in GetAsDeclaredStructure() local 222 if (TIntermSymbol *symbolNode = childNode.getAsSymbolNode()) in GetAsDeclaredStructure()
|
D | EmitMetal.cpp | 2139 TIntermNode &childNode = *declNode->getChildNode(0); in NewlinePad() local 2140 if (TIntermSymbol *symbolNode = childNode.getAsSymbolNode()) in NewlinePad()
|
/third_party/skia/modules/svg/src/ |
D | SkSVGDOM.cpp | 378 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/ |
D | interface.ts | 18 childNode: ChildNode; property
|
/third_party/glslang/glslang/HLSL/ |
D | hlslParseHelper.h | 78 …mTyped* handleUnaryMath(const TSourceLoc&, const char* str, TOperator op, TIntermTyped* childNode);
|
D | hlslParseHelper.cpp | 882 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/ |
D | ParseHelper.h | 344 …mTyped* handleUnaryMath(const TSourceLoc&, const char* str, TOperator op, TIntermTyped* childNode);
|
D | Intermediate.cpp | 464 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()
|
D | ParseHelper.cpp | 910 …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/ |
D | catch.hpp | 17014 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/ |
D | checker.ts | 39352 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/ |
D | tsc.js | 72997 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);
|
D | typingsInstaller.js | 86661 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);
|