HomeSort by relevance Sort by last modified time
    Searched refs:Proto (Results 26 - 50 of 64) sorted by null

12 3

  /external/clang/lib/AST/
DeclObjC.cpp 72 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(this)) {
73 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
134 for (const auto *Proto : ID->all_referenced_protocols())
135 if (Proto->HasUserDeclaredSetterMethod(Property))
158 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(DC)) {
159 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
197 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(this)) {
198 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
402 for (auto *Proto : all_referenced_protocols()) {
403 if (C.ProtocolCompatibleWithProtocol(ProtoInExtension, Proto)) {
    [all...]
MicrosoftMangle.cpp     [all...]
ItaniumMangle.cpp     [all...]
Expr.cpp 540 std::string Proto;
541 llvm::raw_string_ostream POut(Proto);
651 Proto = "auto " + Proto;
656 .getAsStringInternal(Proto, Policy);
658 AFT->getReturnType().getAsStringInternal(Proto, Policy);
660 Out << Proto;
    [all...]
StmtPrinter.cpp     [all...]
ASTContext.cpp 7462 const FunctionProtoType *proto = lproto ? lproto : rproto; local
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 437 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
438 if (!Proto)
441 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
443 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) {
452 unsigned NumExceptions = Proto->getNumExceptions();
456 QualType Ty = Proto->getExceptionType(I);
516 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
517 if (!Proto)
520 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
522 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow)
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 111 ObjCProtocolDecl *Proto,
114 if (!Known.insert(Proto).second)
118 DeclContext::lookup_result R = Proto->lookup(Prop->getDeclName());
121 S.DiagnosePropertyMismatch(Prop, ProtoProp, Proto->getIdentifier(), true);
127 for (auto *P : Proto->protocols())
270 ObjCProtocolDecl *Proto = cast<ObjCProtocolDecl>(ClassDecl);
271 for (auto *P : Proto->protocols())
    [all...]
SemaExceptionSpec.cpp 164 const FunctionProtoType *Proto =
166 if (Proto->getExceptionSpecType() == clang::EST_Unparsed) {
168 Proto = nullptr;
170 return Proto;
    [all...]
SemaChecking.cpp     [all...]
SemaOverload.cpp     [all...]
SemaCodeComplete.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
SemaLambda.cpp     [all...]
SemaExpr.cpp 429 if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fn)) {
430 numFormalParams = proto->getNumParams();
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
SemaDeclCXX.cpp 157 const FunctionProtoType *Proto
159 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
160 if (!Proto)
163 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
191 Proto->getNoexceptSpec(Self->Context);
213 for (const auto &E : Proto->exceptions())
    [all...]
SemaTemplateInstantiate.cpp     [all...]
  /external/clang/tools/libclang/
CXCursor.h 72 CXCursor MakeCursorObjCProtocolRef(const ObjCProtocolDecl *Proto,
CXCursor.cpp 643 CXCursor cxcursor::MakeCursorObjCProtocolRef(const ObjCProtocolDecl *Proto,
646 assert(Proto && TU && "Invalid arguments!");
648 CXCursor C = { CXCursor_ObjCProtocolRef, 0, { Proto, RawLoc, TU } };
    [all...]
  /external/dnsmasq/contrib/dynamic-dnsmasq/
dynamic-dnsmasq.pl 96 Proto => 'tcp', ReuseAddr => 1,
  /external/clang/include/clang/AST/
RecursiveASTVisitor.h     [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 571 Record *Proto = Lists[0][n];
589 // Copy Proto super-classes.
590 ArrayRef<Record *> Supers = Proto->getSuperClasses();
591 ArrayRef<SMRange> Ranges = Proto->getSuperClassRanges();
595 // Copy Proto fields.
596 for (unsigned i = 0, e = Proto->getValues().size(); i != e; ++i) {
597 RecordVal RV = Proto->getValues()[i];
637 // Everything else is copied from Proto.
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 335 milliseconds

12 3