Home | History | Annotate | Download | only in bookmaker

Lines Matching refs:child

416     // if method returns a value, look for a return child
417 // for each parameter, look for a corresponding child
435 for (auto& child : fChildren) {
436 foundPopulate |= MarkType::kPopulate == child->fMarkType;
437 if (MarkType::kReturn != child->fMarkType) {
438 if (MarkType::kParam == child->fMarkType) {
439 child->fVisited = false;
467 for (auto& child : fChildren) {
468 if (MarkType::kParam != child->fMarkType) {
471 if (paramName != child->fName) {
474 if (child->fVisited) {
477 child->fVisited = true;
479 TextParser paramError(child);
492 for (auto& child : fChildren) {
493 if (MarkType::kParam != child->fMarkType) {
496 if (!child->fVisited) {
497 TextParser paramError(child);
501 // check after end of #Line and before next child for description
507 for (auto& child : fChildren) {
508 if (MarkType::kAnchor == child->fMarkType) {
511 if (MarkType::kCode == child->fMarkType) {
512 priorDef = child;
515 if (MarkType::kFormula == child->fMarkType) {
518 if (MarkType::kLine == child->fMarkType) {
519 SkASSERT(child->fChildren.size() > 0);
520 TextParser childDesc(child->fChildren[0]);
523 if (MarkType::kList == child->fMarkType) {
524 priorDef = child;
527 if (MarkType::kMarkChar == child->fMarkType) {
530 if (MarkType::kPhraseRef == child->fMarkType) {
533 TextParser emptyCheck(fFileName, descStart, child->fStart, child->fLineCount);
541 descStart = child->fTerminator;
838 for (auto child : fChildren) {
839 if (!child->fClone) {
842 if (match == child->fName) {
843 return child;
845 auto inner = child->findClone(match);
888 for (auto child : fChildren) {
889 if (name == child->fName) {
892 if (child->hasMatch(name)) {