HomeSort by relevance Sort by last modified time
    Searched refs:Protocols (Results 1 - 20 of 20) sorted by null

  /external/clang/lib/AST/
DeclPrinter.cpp 990 // Protocols?
991 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols();
992 if (!Protocols.empty()) {
993 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
994 E = Protocols.end(); I != E; ++I)
995 Out << (I == Protocols.begin() ? '<' : ',') << **I;
1028 // Protocols?
1029 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols();
1030 if (!Protocols.empty()) {
1032 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin()
    [all...]
ASTContext.cpp     [all...]
ASTImporter.cpp     [all...]
DeclObjC.cpp 97 /// method was found in the class, its protocols, its super classes or categories.
132 // Also look into protocols, for a user declared instance method.
146 for (const auto *PI : PD->protocols())
202 for (const auto *I : PID->protocols())
216 // Look through protocols.
228 // Look through protocols.
230 for (const auto *I : OCD->protocols())
242 /// with name 'PropertyId' in the primary class; including those in protocols
259 // Look through protocols.
314 // This is O(n*m). But it is extremely rare and number of protocols i
    [all...]
Type.cpp 472 ObjCProtocolDecl * const *Protocols,
481 memcpy(getProtocolStorage(), Protocols,
    [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 308 /// All of the protocols that have been declared.
375 /// and ObjC2 protocols. Objective-C 1 protocols can not contain optional
408 /// Generates a list of referenced protocols. Classes, categories, and
409 /// protocols all use this structure.
410 llvm::Constant *GenerateProtocolList(ArrayRef<std::string> Protocols);
411 /// To ensure that all protocols are seen by the runtime, we add a category on
413 /// protocols. This is a horribly ugly hack, but it allows us to collect all
414 /// of the protocols without changing the ABI.
426 llvm::Constant *Protocols,
    [all...]
CGObjCMac.cpp     [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 882 // Protocols are in distinct namespaces from everything else.
    [all...]
SemaDeclObjC.cpp 49 // We ignore protocols here. Should we? What about Class?
595 // Check then save referenced protocols.
608 /// of the protocols.
757 /// Check then save referenced protocols.
773 for (auto *PI : PDecl->protocols())
781 /// FindProtocolDeclaration - This routine looks up protocols and
783 /// protocol declarations in its 'Protocols' argument.
788 SmallVectorImpl<Decl *> &Protocols) {
826 Protocols.push_back(PDecl);
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 788 // Read the directly referenced protocols and their SourceLocations.
790 SmallVector<ObjCProtocolDecl *, 16> Protocols;
791 Protocols.reserve(NumProtocols);
793 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
798 ID->setProtocolList(Protocols.data(), NumProtocols, ProtoLocs.data(),
801 // Read the transitive closure of protocols referenced by this class.
803 Protocols.clear();
804 Protocols.reserve(NumProtocols);
806 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
807 ID->data().AllReferencedProtocols.set(Protocols.data(), NumProtocols
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
scardssp.h     [all...]
  /external/clang/include/clang/AST/
ASTContext.h 738 /// base classes, its protocols, or its categories' protocols, that has
    [all...]
Type.h     [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 564 const ObjCList<ObjCProtocolDecl> &Protocols = IDecl->getReferencedProtocols();
569 if (Protocols.empty()) {
703 // Find all implicit conforming protocols for this class
730 // Further reduce number of conforming protocols. If protocol P1 is in the list
    [all...]
  /external/clang/lib/Parse/
ParseObjc.cpp 494 // This is only valid on protocols.
    [all...]
  /external/chromium_org/ppapi/tests/
test_websocket.cc 209 RUN_TEST_WITH_REFERENCE_CHECK(Protocols, filter);
303 PP_Var protocols[] = { PP_MakeUndefined() }; local
311 protocols[0] = CreateVarString(protocol);
315 ws, url_var, protocols, protocol_count,
319 ReleaseVar(protocols[0]);
388 PP_Var protocols[] = { PP_MakeUndefined() }; local
395 ws, PP_MakeUndefined(), protocols, 1U,
400 ws, PP_MakeUndefined(), protocols, 1U,
572 PP_Var protocols[] = { PP_MakeUndefined() }; local
615 ws, url, protocols, 0U, callback.GetCallback().pp_completion_callback())
1236 const pp::Var protocols[] = { pp::Var() }; local
1299 const pp::Var protocols[] = { pp::Var() }; local
1323 const pp::Var protocols[] = { pp::Var() }; local
1439 const pp::Var protocols[] = { pp::Var(protocol) }; local
1461 const pp::Var protocols[] = { pp::Var() }; local
1495 const pp::Var protocols[] = { pp::Var() }; local
1527 const pp::Var protocols[] = { pp::Var() }; local
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/iproute2/doc/
ip-cref.tex 437 no invariant value and its interpretation depends on the network protocols
    [all...]

Completed in 1180 milliseconds