Searched defs:accept (Results 251 - 275 of 385) sorted by relevance

<<111213141516

/external/spirv-llvm/lib/SPIRV/Mangler/
H A DParameterType.cpp28 MangleError PrimitiveType::accept(TypeVisitor* visitor) const { function in class:SPIR::PrimitiveType
61 MangleError PointerType::accept(TypeVisitor* visitor) const { function in class:SPIR::PointerType
128 MangleError VectorType::accept(TypeVisitor* visitor) const { function in class:SPIR::VectorType
153 MangleError AtomicType::accept(TypeVisitor* visitor) const { function in class:SPIR::AtomicType
179 MangleError BlockType::accept(TypeVisitor* visitor) const { function in class:SPIR::BlockType
217 MangleError UserDefinedType::accept(TypeVisitor* visitor) const { function in class:SPIR::UserDefinedType
/external/syslinux/gpxe/src/core/
H A Dstringextra.c106 * contain letters in @accept
108 * @accept: The string to search for
110 size_t strspn(const char *s, const char *accept) argument
117 for (a = accept; *a != '\0'; ++a) {
135 * @accept: The string to search for
/external/testng/src/main/java/org/testng/junit/
H A DJUnitMethodFinder.java53 public boolean accept(Method method) {
71 // We do not want to walk up the class hierarchy and accept the
89 if(filter.accept(method) && !acceptedMethodNames.contains(methodName)) {
134 public boolean accept(Method method) {
146 public boolean accept(Method method) {
198 public boolean accept(Method method); method in interface:INameFilter
/external/guice/extensions/persist/lib/
H A Djboss-archive-browsing.jar ... Filter extends java.lang.Object { public abstract boolean accept (java.lang.String) } org/jboss/util/file/ArchiveBrowser ...
H A Dcommons-io.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemVariable.java475 protected boolean accept(XSLTVisitor visitor) method in class:ElemVariable
/external/guava/guava-tests/test/com/google/common/cache/
H A DCacheTesting.java371 void accept(@Nullable T object); method in interface:CacheTesting.Receiver
396 operation.accept(entry);
/external/parameter-framework/asio/include/asio/
H A Dbasic_socket_acceptor.hpp29 /// Provides the ability to accept new connections.
73 * accept new socket connections.
406 * This function puts the socket acceptor into the state where it may accept
423 * This function puts the socket acceptor into the state where it may accept
449 * This function is used to close the acceptor. Any asynchronous accept
453 * used to again perform socket accept operations.
466 * This function is used to close the acceptor. Any asynchronous accept
470 * used to again perform socket accept operations.
903 * This function is used to accept a new connection from a peer into the
916 * acceptor.accept(socke
920 void accept(basic_socket<Protocol1, SocketService>& peer, function in class:asio::basic_socket_acceptor
953 asio::error_code accept( function in class:asio::basic_socket_acceptor
1040 void accept(basic_socket<protocol_type, SocketService>& peer, function in class:asio::basic_socket_acceptor
1078 asio::error_code accept( function in class:asio::basic_socket_acceptor
[all...]
H A Dsocket_acceptor_service.hpp223 asio::error_code accept(implementation_type& impl, function in class:asio::socket_acceptor_service
228 return service_impl_.accept(impl, peer, peer_endpoint, ec);
231 /// Start an asynchronous accept.
/external/parameter-framework/asio/include/asio/detail/
H A Dreactive_socket_service.hpp364 asio::error_code accept(implementation_type& impl, function in class:asio::detail::reactive_socket_service
367 // We cannot accept a socket that is already open.
391 // Start an asynchronous accept. The peer and peer_endpoint objects
392 // must be valid until the accept's handler is invoked.
/external/parameter-framework/asio-1.10.6/include/asio/
H A Dbasic_socket_acceptor.hpp29 /// Provides the ability to accept new connections.
73 * accept new socket connections.
406 * This function puts the socket acceptor into the state where it may accept
423 * This function puts the socket acceptor into the state where it may accept
449 * This function is used to close the acceptor. Any asynchronous accept
453 * used to again perform socket accept operations.
466 * This function is used to close the acceptor. Any asynchronous accept
470 * used to again perform socket accept operations.
903 * This function is used to accept a new connection from a peer into the
916 * acceptor.accept(socke
920 void accept(basic_socket<Protocol1, SocketService>& peer, function in class:asio::basic_socket_acceptor
953 asio::error_code accept( function in class:asio::basic_socket_acceptor
1040 void accept(basic_socket<protocol_type, SocketService>& peer, function in class:asio::basic_socket_acceptor
1078 asio::error_code accept( function in class:asio::basic_socket_acceptor
[all...]
H A Dsocket_acceptor_service.hpp223 asio::error_code accept(implementation_type& impl, function in class:asio::socket_acceptor_service
228 return service_impl_.accept(impl, peer, peer_endpoint, ec);
231 /// Start an asynchronous accept.
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dreactive_socket_service.hpp364 asio::error_code accept(implementation_type& impl, function in class:asio::detail::reactive_socket_service
367 // We cannot accept a socket that is already open.
391 // Start an asynchronous accept. The peer and peer_endpoint objects
392 // must be valid until the accept's handler is invoked.
/external/proguard/src/proguard/classfile/
H A DClazz.java173 public void accept(ClassVisitor classVisitor); method in interface:Clazz
H A DLibraryClass.java304 public void accept(ClassVisitor classVisitor) method in class:LibraryClass
319 accept(classVisitor);
396 superClass.accept(classVisitor);
415 interfaceClass.accept(classVisitor);
428 subClasses[index].accept(classVisitor);
471 field.accept(this, memberVisitor);
482 field.accept(this, memberVisitor);
494 method.accept(this, memberVisitor);
505 method.accept(this, memberVisitor);
/external/proguard/src/proguard/classfile/instruction/
H A DConstantInstruction.java155 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor) method in class:ConstantInstruction
H A DInstruction.java948 public abstract void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor); method in class:Instruction
/external/python/cpython2/Lib/multiprocessing/
H A Dconnection.py139 def accept(self): member in class:Listener
145 c = self._listener.accept()
272 def accept(self): member in class:SocketListener
275 s, self._last_accepted = self._socket.accept()
354 def accept(self): member in class:.PipeListener
468 def accept(self): member in class:XmlListener
471 obj = Listener.accept(self)
/external/python/cpython2/Lib/
H A Dsocket.py205 def accept(self): member in class:_socketobject
206 sock, addr = self._sock.accept()
208 accept.__doc__ = _realsocket.accept.__doc__
/external/webrtc/webrtc/base/
H A Dscoped_ptr.h262 T** accept() { function in class:rtc::internal::scoped_ptr_impl
440 element_type** accept() WARN_UNUSED_RESULT {
441 return impl_.accept();
566 element_type** accept() WARN_UNUSED_RESULT {
567 return impl_.accept();
/external/xmlrpcpp/src/
H A DXmlRpcSocket.cpp131 XmlRpcSocket::accept(int fd) function in class:XmlRpcSocket
141 return (int) ::accept(fd, (struct sockaddr*)&addr, &addrlen);
/external/guice/extensions/struts2/lib/
H A Dcommons-io-1.3.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/io/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dbcel.jar ... apache.bcel.classfile.ConstantPool constant_pool public void accept (org.apache.bcel.classfile.Visitor) org ...
/external/emma/core/java12/com/vladium/jcd/cls/
H A DClassDef.java63 public void accept (final IClassDefVisitor visitor, final Object ctx) method in class:ClassDef
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
H A DMethodAnalyzer.java122 * {@link MethodNode#accept(MethodVisitor)}
125 public void accept(final MethodNode methodNode, method in class:MethodAnalyzer
133 n.accept(methodVisitor);
137 currentNode.accept(methodVisitor);

Completed in 553 milliseconds

<<111213141516