/third_party/flutter/skia/src/gpu/glsl/ |
D | GrGLSLFragmentProcessor.cpp | 19 void GrGLSLFragmentProcessor::invokeChild(int childIndex, const char* inputColor, EmitArgs& args) { in invokeChild() argument 20 while (childIndex >= (int) fFunctionNames.size()) { in invokeChild() 23 this->internalInvokeChild(childIndex, inputColor, args.fOutputColor, args); in invokeChild() 26 void GrGLSLFragmentProcessor::invokeChild(int childIndex, const char* inputColor, in invokeChild() argument 32 while (childIndex >= (int) fFunctionNames.size()) { in invokeChild() 35 if (fFunctionNames[childIndex].size() == 0) { in invokeChild() 36 this->internalInvokeChild(childIndex, inputColor, outputColor->c_str(), args); in invokeChild() 39 fFunctionNames[childIndex].c_str(), in invokeChild() 44 void GrGLSLFragmentProcessor::internalInvokeChild(int childIndex, const char* inputColor, in internalInvokeChild() argument 61 const GrFragmentProcessor& childProc = args.fFp.childProcessor(childIndex); in internalInvokeChild() [all …]
|
D | GrGLSLFragmentProcessor.h | 140 inline void invokeChild(int childIndex, SkString* outputColor, EmitArgs& parentArgs) { in invokeChild() argument 141 this->invokeChild(childIndex, nullptr, outputColor, parentArgs); in invokeChild() 152 void invokeChild(int childIndex, const char* inputColor, SkString* outputColor, 157 inline void invokeChild(int childIndex, EmitArgs& args) { in invokeChild() argument 159 this->invokeChild(childIndex, (const char*) nullptr, args); in invokeChild() 163 void invokeChild(int childIndex, const char* inputColor, EmitArgs& parentArgs);
|
/third_party/typescript/src/server/ |
D | scriptVersionCache.ts | 587 …alk(rangeStart: number, rangeLength: number, walkFns: LineIndexWalker, childIndex: number, nodeTyp… 589 walkFns.pre(rangeStart, rangeLength, this.children[childIndex], this, nodeType); 592 this.children[childIndex].walk(rangeStart, rangeLength, walkFns); 594 … walkFns.post(rangeStart, rangeLength, this.children[childIndex], this, nodeType); 603 …private skipChild(relativeStart: number, relativeLength: number, childIndex: number, walkFns: Line… 605 … walkFns.pre(relativeStart, relativeLength, this.children[childIndex], this, nodeType); 612 let childIndex = 0; 613 let childCharCount = this.children[childIndex].charCount(); 617 … this.skipChild(adjustedStart, rangeLength, childIndex, walkFns, CharRangeSection.PreStart); 619 childIndex++; [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | moduleMemberWithoutTypeAnnotation1.js | 15 public childIndex(child: ISyntaxElement) { 16 return Syntax.childIndex(); 39 export function childIndex() { } function 70 PositionedElement.prototype.childIndex = function (child) { method in PositionedElement 71 return TypeScript.Syntax.childIndex(); 102 function childIndex() { } function 103 Syntax.childIndex = childIndex;
|
D | moduleMemberWithoutTypeAnnotation1.symbols | 30 public childIndex(child: ISyntaxElement) { 31 >childIndex : Symbol(PositionedElement.childIndex, Decl(moduleMemberWithoutTypeAnnotation1.ts, 12, … 35 return Syntax.childIndex(); 36 >Syntax.childIndex : Symbol(Syntax.childIndex, Decl(moduleMemberWithoutTypeAnnotation1.ts, 36, 26)) 38 >childIndex : Symbol(Syntax.childIndex, Decl(moduleMemberWithoutTypeAnnotation1.ts, 36, 26)) 91 export function childIndex() { } 92 >childIndex : Symbol(childIndex, Decl(moduleMemberWithoutTypeAnnotation1.ts, 36, 26))
|
D | moduleMemberWithoutTypeAnnotation1.types | 27 public childIndex(child: ISyntaxElement) { 28 >childIndex : (child: ISyntaxElement) => void 31 return Syntax.childIndex(); 32 >Syntax.childIndex() : void 33 >Syntax.childIndex : () => void 35 >childIndex : () => void 91 export function childIndex() { } 92 >childIndex : () => void
|
/third_party/node/lib/internal/ |
D | priority_queue.js | 57 let childIndex = pos * 2 + 1; 58 if (childIndex > size || compare(heap[pos * 2], heap[childIndex]) < 0) 59 childIndex = pos * 2; 60 const child = heap[childIndex]; 66 pos = childIndex;
|
/third_party/skia/src/gpu/ |
D | GrFragmentProcessor.h | 540 inline SkString invokeChild(int childIndex, 543 return this->invokeChild(childIndex, 550 inline SkString invokeChildWithMatrix(int childIndex, EmitArgs& parentArgs) { in invokeChildWithMatrix() argument 551 return this->invokeChildWithMatrix(childIndex, in invokeChildWithMatrix() 558 inline SkString invokeChild(int childIndex, 562 return this->invokeChild(childIndex, 569 inline SkString invokeChildWithMatrix(int childIndex, in invokeChildWithMatrix() argument 572 return this->invokeChildWithMatrix(childIndex, in invokeChildWithMatrix() 589 SkString invokeChild(int childIndex, 600 SkString invokeChildWithMatrix(int childIndex,
|
D | GrFragmentProcessor.cpp | 850 SkString ProgramImpl::invokeChild(int childIndex, in invokeChild() argument 855 SkASSERT(childIndex >= 0); in invokeChild() 861 const GrFragmentProcessor* childProc = args.fFp.childProcessor(childIndex); in invokeChild() 867 auto invocation = SkStringPrintf("%s(%s", this->childProcessor(childIndex)->functionName(), in invokeChild() 891 SkString ProgramImpl::invokeChildWithMatrix(int childIndex, in invokeChildWithMatrix() argument 895 SkASSERT(childIndex >= 0); in invokeChildWithMatrix() 901 const GrFragmentProcessor* childProc = args.fFp.childProcessor(childIndex); in invokeChildWithMatrix() 915 auto invocation = SkStringPrintf("%s(%s", this->childProcessor(childIndex)->functionName(), in invokeChildWithMatrix()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
D | IntermTraverse.cpp | 37 size_t childIndex = 0; in traverse() local 40 while (childIndex < childCount && visit) in traverse() 42 mCurrentChildIndex = childIndex; in traverse() 43 node->getChildNode(childIndex)->traverse(this); in traverse() 44 mCurrentChildIndex = childIndex; in traverse() 46 if (inVisit && childIndex != childCount - 1) in traverse() 50 ++childIndex; in traverse() 471 for (size_t childIndex = 0; childIndex < sequence->size(); ++childIndex) in traverseBlock() local 473 TIntermNode *child = (*sequence)[childIndex]; in traverseBlock() 476 mCurrentChildIndex = childIndex; in traverseBlock() [all …]
|
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/ |
D | paragraph.dart | 356 int childIndex = 0; 360 placeholderDimensions[childIndex] = PlaceholderDimensions( 362 alignment: _placeholderSpans[childIndex].alignment, 363 baseline: _placeholderSpans[childIndex].baseline, 366 childIndex += 1; 374 int childIndex = 0; 378 placeholderDimensions[childIndex] = PlaceholderDimensions( 380 alignment: _placeholderSpans[childIndex].alignment, 381 baseline: _placeholderSpans[childIndex].baseline, 384 childIndex += 1; [all …]
|
D | flow.dart | 375 final int childIndex = _lastPaintOrder[i]; 376 if (childIndex >= children.length) 378 final RenderBox child = children[childIndex];
|
/third_party/typescript/tests/cases/compiler/ |
D | moduleMemberWithoutTypeAnnotation1.ts | 14 public childIndex(child: ISyntaxElement) { method in PositionedElement 15 return Syntax.childIndex(); 38 export function childIndex() { } function
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
D | IntermTraverse.cpp | 35 size_t childIndex = 0; in traverse() local 38 while (childIndex < childCount && visit) in traverse() 40 node->getChildNode(childIndex)->traverse(this); in traverse() 41 if (inVisit && childIndex != childCount - 1) in traverse() 45 ++childIndex; in traverse()
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/test/ |
D | watcher.dart | 32 ProcessEvent(this.childIndex, this.process, [this.observatoryUri]); 39 final int childIndex;
|
D | coverage_collector.dart | 30 printTrace('test ${event.childIndex}: collecting coverage');
|
/third_party/flutter/flutter/packages/flutter/lib/src/material/ |
D | expansion_panel.dart | 413 for (int childIndex = 0; childIndex < widget.children.length; childIndex += 1) { 414 final ExpansionPanelRadio child = widget.children[childIndex]; 416 childIndex != index && 418 widget.expansionCallback(childIndex, false);
|
/third_party/libjpeg-turbo/doc/html/search/ |
D | search.js | 688 this.NavChild = function(evt,itemIndex,childIndex) argument 696 if (childIndex>0) 698 var newIndex = childIndex-1; 708 var newIndex = childIndex+1;
|
/third_party/libevdev/doc/html/search/ |
D | search.js | 690 this.NavChild = function(evt,itemIndex,childIndex) argument 698 if (childIndex>0) 700 var newIndex = childIndex-1; 710 var newIndex = childIndex+1;
|
/third_party/skia/third_party/externals/oboe/docs/reference/search/ |
D | search.js | 688 this.NavChild = function(evt,itemIndex,childIndex) argument 696 if (childIndex>0) 698 var newIndex = childIndex-1; 708 var newIndex = childIndex+1;
|
/third_party/skia/src/gpu/effects/ |
D | GrSkSLFP.cpp | 325 int childIndex = this->numChildProcessors(); in addChild() local 326 SkASSERT((size_t)childIndex < fEffect->fSampleUsages.size()); in addChild() 330 this->registerChild(std::move(child), fEffect->fSampleUsages[childIndex]); in addChild()
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | IntermNode.cpp | 236 unsigned int childIndex = 0; in getChildNode() local 239 children[childIndex] = mInit; in getChildNode() 240 ++childIndex; in getChildNode() 244 children[childIndex] = mCond; in getChildNode() 245 ++childIndex; in getChildNode() 249 children[childIndex] = mExpr; in getChildNode() 250 ++childIndex; in getChildNode() 254 children[childIndex] = mBody; in getChildNode() 255 ++childIndex; in getChildNode() 257 ASSERT(index < childIndex); in getChildNode()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | IntermNode.cpp | 246 unsigned int childIndex = 0; in getChildNode() local 249 children[childIndex] = mInit; in getChildNode() 250 ++childIndex; in getChildNode() 254 children[childIndex] = mCond; in getChildNode() 255 ++childIndex; in getChildNode() 259 children[childIndex] = mExpr; in getChildNode() 260 ++childIndex; in getChildNode() 264 children[childIndex] = mBody; in getChildNode() 265 ++childIndex; in getChildNode() 267 ASSERT(index < childIndex); in getChildNode()
|
D | OutputSPIRV.cpp | 4442 for (size_t childIndex = 0; childIndex < childCount; ++childIndex) in extendScalarParamsToVector() local 4444 const TType &childType = node->getChildNode(childIndex)->getAsTyped()->getType(); in extendScalarParamsToVector() 4454 (*parameters)[childIndex] = createConstructorVectorFromScalar( in extendScalarParamsToVector() 4455 childType, vectorType, resultTypeId, {{(*parameters)[childIndex]}}); in extendScalarParamsToVector() 4838 const size_t childIndex = getParentChildIndex(PreVisit); in visitConstantUnion() local 4858 expectedBasicType = structure->fields()[childIndex]->type()->getBasicType(); in visitConstantUnion() 5459 const size_t childIndex = getParentChildIndex(PreVisit); in visitCase() local 5473 if (childIndex > 0 && parentStatements[childIndex - 1]->getAsCaseNode() == nullptr) in visitCase() 5512 const size_t childIndex = getLastTraversedChildIndex(visit); in visitBlock() local 5515 if (statements[childIndex]->getAsBlock() == nullptr) in visitBlock()
|
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/ |
D | segmented_control.dart | 689 void _paintChild(PaintingContext context, Offset offset, RenderBox child, int childIndex) { 697 ..color = backgroundColors[childIndex]
|