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

1 2

  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/wsgi/
service_test.py 40 self.protocols = None
41 remote.Protocols.set_default(remote.Protocols.new_default())
55 protocols=self.protocols)
60 self.protocols = remote.Protocols()
61 self.protocols.add_protocol(protojson, 'altproto', 'image/png')
63 global_protocols = remote.Protocols()
65 remote.Protocols.set_default(global_protocols
    [all...]
service.py 57 def service_mapping(service_factory, service_path=r'.*', protocols=None):
66 protocols: remote.Protocols instance that configures supported protocols
107 local_protocols = protocols or remote.Protocols.get_default()
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/experimental/wsgi/
services.py 10 protocols = wsgi_util.Protocols() variable
11 protocols.add_protocol(protobuf, 'protobuf')
12 protocols.add_protocol(protojson, 'json')
18 protocols=protocols) variable
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
remote_test.py 825 self.protocols = remote.Protocols()
828 self.assertEquals((), self.protocols.names)
829 self.assertEquals((), self.protocols.content_types)
832 self.protocols.add_protocol(protojson, 'json')
833 self.assertEquals(('json',), self.protocols.names)
840 self.protocols.content_types)
846 self.protocols.add_protocol(Protocol, 'text')
847 self.assertEquals(('text',), self.protocols.names)
848 self.assertEquals(('text/plain',), self.protocols.content_types
    [all...]
transport_test.py 159 remote.Protocols.set_default(remote.Protocols.new_default())
205 remote.Protocols.get_default().add_protocol(
remote.py 57 RPC protocols and checking messages for correctness, it does attach information
133 'Protocols',
    [all...]
transport.py 158 protocol: If string, will look up a protocol from the default Protocols
165 protocols = remote.Protocols.get_default()
167 protocol = protocols.lookup_by_name(protocol)
169 protocol = protocols.lookup_by_content_type(protocol)
  /external/clang/lib/AST/
DeclPrinter.cpp     [all...]
ASTContext.cpp     [all...]
ASTImporter.cpp     [all...]
DeclObjC.cpp 97 /// found in the class, its protocols, its super classes or categories.
133 // Also look into protocols, for a user declared instance method.
147 for (const auto *PI : PD->protocols())
221 for (const auto *I : PID->protocols())
235 // Look through protocols.
247 // Look through protocols.
249 for (const auto *I : OCD->protocols())
317 /// with name 'PropertyId' in the primary class; including those in protocols
334 // Look through protocols.
396 // This is O(n*m). But it is extremely rare and number of protocols i
    [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 315 /// All of the protocols that have been declared.
382 /// and ObjC2 protocols. Objective-C 1 protocols can not contain optional
415 /// Generates a list of referenced protocols. Classes, categories, and
416 /// protocols all use this structure.
417 llvm::Constant *GenerateProtocolList(ArrayRef<std::string> Protocols);
418 /// To ensure that all protocols are seen by the runtime, we add a category on
420 /// protocols. This is a horribly ugly hack, but it allows us to collect all
421 /// of the protocols without changing the ABI.
433 llvm::Constant *Protocols,
    [all...]
CGObjCMac.cpp     [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 881 // Protocols are in distinct namespaces from everything else.
    [all...]
SemaType.cpp     [all...]
SemaDeclObjC.cpp 51 // We ignore protocols here. Should we? What about Class?
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp     [all...]
RewriteModernObjC.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.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 827 /// base classes, its protocols, or its categories' protocols, that has
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 664 const ObjCList<ObjCProtocolDecl> &Protocols = IDecl->getReferencedProtocols();
669 if (Protocols.empty()) {
845 // Find all implicit conforming protocols for this class
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/clang/lib/Parse/
ParseObjc.cpp 283 assert(LAngleLoc.isInvalid() && "Cannot have already parsed protocols");
315 SmallVector<Decl *, 4> protocols; local
342 protocols, local
353 // We already parsed the protocols named when we thought we had a
360 ProtocolIdents, protocols);
362 } else if (protocols.empty() && Tok.is(tok::less) &&
363 ParseObjCProtocolReferences(protocols, protocolLocs, true, true,
370 Actions.ActOnTypedefedProtocols(protocols, superClassId, superClassLoc);
379 protocols.data(), protocols.size()
1605 SmallVector<Decl *, 8> protocols; local
1703 protocols, local
1830 SmallVector<Decl *, 4> protocols; local
2163 SmallVector<Decl *, 4> protocols; local
2199 SmallVector<Decl *, 4> protocols; local
    [all...]
  /external/curl/tests/
runtests.pl 257 my @protocols; # array of lowercase supported protocol servers
347 # Clear all possible '*_proxy' environment variables for various protocols
    [all...]

Completed in 187 milliseconds

1 2