Searched defs:accept (Results 276 - 300 of 385) sorted by relevance

<<111213141516

/external/proguard/src/proguard/classfile/
H A DProgramClass.java356 public void accept(ClassVisitor classVisitor) method in class:ProgramClass
371 accept(classVisitor);
445 subClasses[index].accept(classVisitor);
457 constantPool[index].accept(this, constantVisitor);
465 constantPool[index].accept(this, constantVisitor);
471 constantPool[u2thisClass].accept(this, constantVisitor);
479 constantPool[u2superClass].accept(this, constantVisitor);
488 constantPool[u2interfaces[index]].accept(this, constantVisitor);
497 fields[index].accept(this, memberVisitor);
507 field.accept(thi
[all...]
/external/python/cpython2/Lib/
H A Dasyncore.py358 def accept(self): member in class:dispatcher
361 conn, addr = self.socket.accept()
518 self.log_info('unhandled accept event', 'warning')
H A Dssl.py883 def accept(self): member in class:SSLSocket
888 newsock, addr = socket.accept(self)
/external/python/cpython2/Lib/idlelib/
H A Drpc.py521 def accept(self): member in class:RPCClient
522 working_sock, address = self.listening_sock.accept()
/external/python/cpython2/Modules/
H A Dtimemodule.c366 PyObject *accept = PyDict_GetItemString(moddict, local
368 if (accept == NULL || !PyInt_Check(accept) ||
369 PyInt_AsLong(accept) == 0) {
/external/ImageMagick/MagickCore/
H A Dxml-tree.c1548 accept[] = " ";
1550 i=(ssize_t) strspn(xml,accept);
1527 accept[] = " "; local
/external/bison/src/
H A Dsymtab.c44 symbol *accept = NULL; variable
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
H A DLexer.java70 @SuppressWarnings("hiding") int[] accept = Lexer.accept[this.state.id()];
143 if(accept[dfa_state] != -1)
146 accept_token = accept[dfa_state];
1302 private static int[][] accept; field in class:Lexer
1364 // read accept
1366 accept = new int[length][];
1367 for(int i = 0; i < accept.length; i++)
1370 accept[i] = new int[length];
1371 for(int j = 0; j < accept[
[all...]
/external/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_ir.cpp33 bool node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } function in class:r600_sb::node
34 bool container_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } function in class:r600_sb::container_node
35 bool alu_group_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } function in class:r600_sb::alu_group_node
36 bool alu_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } function in class:r600_sb::alu_node
37 bool cf_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } function in class:r600_sb::cf_node
38 bool fetch_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } function in class:r600_sb::fetch_node
39 bool region_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } function in class:r600_sb::region_node
41 bool repeat_node::accept(vpass& p, bool enter) { function in class:r600_sb::repeat_node
45 bool depart_node::accept(vpass& p, bool enter) { function in class:r600_sb::depart_node
48 bool if_node::accept(vpas function in class:r600_sb::if_node
49 bool bb_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } function in class:r600_sb::bb_node
50 bool alu_packed_node::accept(vpass& p, bool enter) { function in class:r600_sb::alu_packed_node
[all...]
/external/syslinux/core/lwip/src/core/
H A Dtcp.c86 * they accept or send data. */
455 * Default accept callback if no accept callback is specified by the user.
470 * is able to accept incoming connections. The protocol control block
527 lpcb->accept = tcp_accept_null;
1327 * @param pcb tcp_pcb to set the accept callback
1328 * @param accept callback function to call for this pcb when LISTENing
1332 tcp_accept(struct tcp_pcb *pcb, tcp_accept_fn accept) argument
1334 pcb->accept = accept;
[all...]
/external/libphonenumber/demo/war/WEB-INF/lib/
H A Dcommons-io-1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/io/ ...
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/ proguard/DuplicateClassPrinter.class DuplicateClassPrinter.java package proguard ...
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DDFA.java115 /** Is this DFA reduced? I.e., can all states lead to an accept state? */
145 /** We only want one accept state per predicted alt; track here */
208 public Vector accept; field in class:DFA
323 public List getJavaCompressedAccept() { return getRunLengthEncoding(accept); }
403 accept = new Vector(this.getNumberOfStates()); // Vector<int>
404 accept.setSize(this.getNumberOfStates());
435 accept.set(s.stateNumber,
458 testEncodeDecode(accept);
464 System.out.println("accept="+accept);
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemLiteralResult.java1441 protected boolean accept(XSLTVisitor visitor) method in class:ElemLiteralResult
H A DElemTemplateElement.java1333 * we accept that price in exchange for avoiding the prev pointer
1358 * we accept that price in exchange for avoiding the prev pointer
1554 * Tell if this element can accept variable declarations.
1555 * @return true if the element can accept and process variable declarations.
1613 protected boolean accept(XSLTVisitor visitor) method in class:ElemTemplateElement
1623 if(accept(visitor))
H A DStylesheet.java1510 protected boolean accept(XSLTVisitor visitor) method in class:Stylesheet
/external/libvncserver/libvncserver/
H A Dwebsockets.c389 char accept[B64LEN(SHA1_HASH_SIZE) + 1]; local
391 webSocketsGenSha1Key(accept, sizeof(accept), sec_ws_key);
393 SERVER_HANDSHAKE_HYBI, accept, protocol);
/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeEditor.java769 preInstruction.accept(clazz, method, codeAttribute, oldOffset, this);
783 replacementInstruction.accept(clazz, method, codeAttribute, oldOffset, this);
793 instruction.accept(clazz, method, codeAttribute, oldOffset, this);
806 postInstruction.accept(clazz, method, codeAttribute, oldOffset, this);
1235 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor) method in class:CodeAttributeEditor.CompositeInstruction
1246 instruction.accept(clazz, method, codeAttribute, offset, CodeAttributeEditor.this);
/external/sfntly/cpp/src/sfntly/table/core/
H A Dcmap_table.cc169 if (filter_->accept(table_->GetCMapId(table_index_))) {
224 bool CMapTable::CMapIdFilter::accept(const CMapId& cmap_id) const { function in class:sfntly::CMapTable::CMapIdFilter
/external/syslinux/core/lwip/src/include/lwip/
H A Dsockets.h344 #define accept(a,b,c) lwip_accept(a,b,c) macro
/external/syslinux/gpxe/src/net/udp/
H A Ddhcp.c259 /** List of PXE Boot Servers to accept */
863 * @ret accept Boot Server is acceptable
867 struct in_addr *accept; local
874 for ( accept = dhcp->pxe_accept ; accept->s_addr ; accept++ ) {
875 if ( accept->s_addr == bs.s_addr )
/external/caliper/lib/
H A Djersey-client-1.11.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/guice/extensions/persist/lib/
H A Djaxen-1.1-beta-7.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jaxen/ org/jaxen/dom/ org/jaxen/dom4j/ org/ ...
/external/emma/core/java12/com/vladium/util/args/
H A DOptsParser.java234 opts.addError (formatMessage ("option \'" + opt.getName () + "\' does not accept values: \'" + value + "\'"));
254 opts.addError (formatMessage ("option \'" + opt.getName () + "\' does not accept fewer than " + cardinality [0] + " value(s)"));
274 // opts.addError (formatMessage ("option \'" + opt.getName () + "\' does not accept fewer than " + cardinality [0] + " value(s)"));
320 opts.addError (formatMessage ("option \'" + opt.getName () + "\' does not accept fewer than " + cardinality [0] + " value(s)"));
1077 accept (Token.COLON_ID);
1079 accept (Token.SEMICOLON_ID);
1095 accept ();
1102 accept ();
1112 accept (Token.COMMA_ID);
1116 accept ();
1206 Token accept () method in class:OptsParser.MetadataParser
1214 Token accept (final int tokenID) method in class:OptsParser.MetadataParser
[all...]
/external/jemalloc/src/
H A Djemalloc.c839 bool accept; local
844 for (accept = false; !accept;) {
865 accept = true;
879 for (accept = false; !accept;) {
895 accept = true;
899 accept = true;

Completed in 1176 milliseconds

<<111213141516