Home
last modified time | relevance | path

Searched refs:fMarkType (Results 1 – 14 of 14) sorted by relevance

/external/skqp/tools/bookmaker/
DhackParser.cpp61 if (MarkType::kClass == child->fMarkType || MarkType::kStruct == child->fMarkType in replaceWithPop()
62 || MarkType::kSubtopic == child->fMarkType) { in replaceWithPop()
65 if (MarkType::kMethod != child->fMarkType) { in replaceWithPop()
71 return MarkType::kPopulate == def->fMarkType in replaceWithPop()
72 || MarkType::kPhraseRef == def->fMarkType in replaceWithPop()
73 || MarkType::kFormula == def->fMarkType in replaceWithPop()
74 || MarkType::kAnchor == def->fMarkType in replaceWithPop()
75 || MarkType::kList == def->fMarkType in replaceWithPop()
76 || MarkType::kTable == def->fMarkType; in replaceWithPop()
84 if (MarkType::kIn == gran->fMarkType || MarkType::kLine == gran->fMarkType) { in replaceWithPop()
[all …]
DmdOut.cpp77 MarkType markType = fLastDef->fMarkType; in anchorDef()
239 bool isSubtopic = MarkType::kSubtopic == test->fMarkType in checkParentsForMatch()
240 || MarkType::kTopic == test->fMarkType; in checkParentsForMatch()
245 bool localTopic = MarkType::kSubtopic == test->fMarkType in checkParentsForMatch()
246 || MarkType::kTopic == test->fMarkType; in checkParentsForMatch()
535 if (fLastDef && MarkType::kDescription == fLastDef->fMarkType) { in setLink()
537 if (MarkType::kExample == example->fMarkType) { in setLink()
541 if (MarkType::kStdOut == example->fChildren.back()->fMarkType) { in setLink()
785 if (MarkType::kParam != allDefsIter->fMarkType) { in checkAnchors()
846 string errorStr = MarkType::kReturn == def->fMarkType ? "return" : "param"; in checkParamReturnBody()
[all …]
DincludeWriter.cpp17 if (childType != item->fMarkType) { in checkChildCommentLength()
23 if (MarkType::kLine == itemChild->fMarkType) { in checkChildCommentLength()
42 [](Definition* child){return MarkType::kNoJustify == child->fMarkType;})) { in checkEnumLengths()
98 switch (prop->fMarkType) { in descriptionOut()
115 if (MarkType::kLiteral == prop->fChildren[0]->fMarkType) { in descriptionOut()
117 … SkASSERT(1 == childSize || MarkType::kOutdent == prop->fChildren[1]->fMarkType); in descriptionOut()
121 MarkType::kOutdent == prop->fChildren[1]->fMarkType; in descriptionOut()
217 SkASSERT(MarkType::kRow == row->fMarkType); in descriptionOut()
219 SkASSERT(MarkType::kColumn == column->fMarkType); in descriptionOut()
263 if (MarkType::kPhraseParam == child->fMarkType) { in descriptionOut()
[all …]
DbmhParser.cpp178 SkASSERT(MarkType::kSubtopic != fRoot->fMarkType in addDefinition()
179 && MarkType::kTopic != fRoot->fMarkType); in addDefinition()
193 if (MarkType::kExample == child->fMarkType) { in addDefinition()
196 hasExcluder |= MarkType::kNoExample == child->fMarkType; in addDefinition()
249 definition->fMarkType = markType; in addDefinition()
277 … while (MarkType::kTopic != parent->fMarkType && MarkType::kSubtopic != parent->fMarkType) { in addDefinition()
284 if (MarkType::kSubtopic == parent->fMarkType) { in addDefinition()
324 if (!fParent || MarkType::kFormula != fParent->fMarkType) { in addDefinition()
325 SkASSERT(!definition || MarkType::kFormula == definition->fMarkType); in addDefinition()
333 SkASSERT(fParent && MarkType::kFormula == fParent->fMarkType); in addDefinition()
[all …]
DselfCheck.cpp73 if (MarkType::kSubtopic == csChild->fMarkType) { in checkMethod()
78 } else if (MarkType::kMethod != csChild->fMarkType) { in checkMethod()
88 if (MarkType::kIn == child->fMarkType) { in checkMethod()
116 SkASSERT(MarkType::kTopic == topic->fMarkType); in checkRelatedFunctions()
Ddefinition.h96 fMarkType = markType; in Definition()
136 if (MarkType::kStruct == test->fMarkType || MarkType::kClass == test->fMarkType) { in csParent()
210 if (MarkType::kTopic == test->fMarkType || MarkType::kSubtopic == test->fMarkType) { in subtopicParent()
221 if (MarkType::kTopic == test->fMarkType) { in topicParent()
247 MarkType fMarkType = MarkType::kNone; variable
Ddefinition.cpp415 SkASSERT(MarkType::kMethod == fMarkType); in checkMethod()
436 foundPopulate |= MarkType::kPopulate == child->fMarkType; in checkMethod()
437 if (MarkType::kReturn != child->fMarkType) { in checkMethod()
438 if (MarkType::kParam == child->fMarkType) { in checkMethod()
468 if (MarkType::kParam != child->fMarkType) { in checkMethod()
493 if (MarkType::kParam != child->fMarkType) { in checkMethod()
508 if (MarkType::kAnchor == child->fMarkType) { in checkMethod()
511 if (MarkType::kCode == child->fMarkType) { in checkMethod()
515 if (MarkType::kFormula == child->fMarkType) { in checkMethod()
518 if (MarkType::kLine == child->fMarkType) { in checkMethod()
[all …]
DincludeParser.cpp412 if (MarkType::kComment == iDef.fMarkType) { in writeCodeBlock()
420 if (MarkType::kConst == iDef.fMarkType && !i.fEnd) { in writeCodeBlock()
428 if (MarkType::kMember == iDef.fMarkType) { in writeCodeBlock()
445 if (MarkType::kMethod == iDef.fMarkType) { in writeCodeBlock()
467 string result = writeCodeBlock(i, iDef.fMarkType, startIndent); in writeCodeBlock()
470 if (MarkType::kNone != fPreviousMarkType && iDef.fMarkType != fPreviousMarkType in writeCodeBlock()
473 || MarkType::kMember != iDef.fMarkType) in writeCodeBlock()
482 fPreviousMarkType = iDef.fMarkType; in writeCodeBlock()
487 if (MarkType::kEnum == iDef.fMarkType || MarkType::kEnumClass == iDef.fMarkType in writeCodeBlock()
488 || MarkType::kStruct == iDef.fMarkType || MarkType::kClass == iDef.fMarkType) { in writeCodeBlock()
[all …]
DfiddleParser.cpp109 if (MarkType::kStdOut != textOut->fMarkType) { in textOut()
115 if (MarkType::kVolatile == stdOutChild->fMarkType) { in textOut()
DspellCheck.cpp157 switch (def->fMarkType) { in check()
324 switch (def->fMarkType) { // post child work, at least for tables in check()
378 if (this->checkable(def->fMarkType)) { in childCheck()
384 if (this->checkable(def->fMarkType)) { in childCheck()
651 if (MarkType::kParam == child->fMarkType && str == child->fName) { in wordCheck()
DmdOut.h46 MarkType fMarkType; member
259 MarkType markType = definition->fMarkType; in resolvable()
262 if (MarkType::kLiteral == child->fMarkType) { in resolvable()
DbmhParser.h147 MarkType fMarkType; member
155 MarkType fMarkType; member
Dbookmaker.cpp89 if (markType == def.fMarkType) { in count_children()
387 if (MarkType::kComment != param.fMarkType) { in setParams()
DincludeParser.h121 return codeBlock(def.fMarkType, def.fName, inProgress); in codeBlock()
430 MarkType fMarkType; member