Searched defs:PCC (Results 1 - 6 of 6) sorted by relevance

/external/clang/tools/libclang/
H A DCXComment.cpp262 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC); local
263 if (!PCC || !PCC->hasParamName())
266 return cxstring::createRef(PCC->getParamNameAsWritten());
270 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC); local
271 if (!PCC)
274 return PCC->isParamIndexValid();
278 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC); local
279 if (!PCC || !PCC
286 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC); local
295 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC); local
[all...]
/external/clang/unittests/AST/
H A DCommentParser.cpp185 ParamCommandComment *&PCC,
191 ::testing::AssertionResult AR = GetChildAt(C, Idx, PCC);
195 StringRef ActualCommandName = PCC->getCommandName(Traits);
201 if (PCC->getDirection() != Direction)
203 << "ParamCommandComment has direction " << PCC->getDirection() << ", "
206 if (PCC->isDirectionExplicit() != IsDirectionExplicit)
209 << (PCC->isDirectionExplicit() ? "explicit" : "implicit")
213 if (!ParamName.empty() && !PCC->hasParamName())
217 StringRef ActualParamName = PCC->hasParamName() ? PCC
181 HasParamCommandAt( const Comment *C, const CommandTraits &Traits, size_t Idx, ParamCommandComment *&PCC, StringRef CommandName, ParamCommandComment::PassDirection Direction, bool IsDirectionExplicit, StringRef ParamName, ParagraphComment *&Paragraph) argument
759 ParamCommandComment *PCC; local
778 ParamCommandComment *PCC; local
812 ParamCommandComment *PCC; local
842 ParamCommandComment *PCC; local
872 ParamCommandComment *PCC; local
903 ParamCommandComment *PCC; local
924 ParamCommandComment *PCC; local
[all...]
/external/clang/lib/Index/
H A DCommentToXML.cpp145 const ParamCommandComment *PCC = cast<ParamCommandComment>(Child); local
146 if (!PCC->hasParamName())
149 if (!PCC->isDirectionExplicit() && !PCC->hasNonWhitespaceParagraph())
152 Params.push_back(PCC);
/external/clang/lib/AST/
H A DCommentSema.cpp732 ParamCommandComment *PCC = dyn_cast<ParamCommandComment>(*I); local
733 if (!PCC || !PCC->hasParamName())
735 StringRef ParamName = PCC->getParamNameAsWritten();
741 PCC->setIsVarArgParam();
745 UnresolvedParamCommands.push_back(PCC);
748 PCC->setParamIndex(ResolvedParamIndex);
750 SourceRange ArgRange = PCC->getParamNameRange();
757 ParamVarDocs[ResolvedParamIndex] = PCC;
771 const ParamCommandComment *PCC local
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp1410 unsigned PCC = getPredicateForSetCC(CC); local
1415 switch (PCC) {
1433 SDValue Ops[] = { getI32Imm(PCC), CondCode,
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp3031 Sema::ParserCompletionContext PCC) {
3032 switch (PCC) {
3030 mapCodeCompletionContext(Sema &S, Sema::ParserCompletionContext PCC) argument

Completed in 944 milliseconds