HomeSort by relevance Sort by last modified time
    Searched refs:accept (Results 126 - 150 of 1061) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/smack/src/org/jivesoftware/smack/filter/
MessageTypeFilter.java 45 public boolean accept(Packet packet) { method in class:MessageTypeFilter
PacketExtensionFilter.java 58 public boolean accept(Packet packet) { method in class:PacketExtensionFilter
PacketTypeFilter.java 54 public boolean accept(Packet packet) { method in class:PacketTypeFilter
ThreadFilter.java 47 public boolean accept(Packet packet) { method in class:ThreadFilter
ToContainsFilter.java 47 public boolean accept(Packet packet) { method in class:ToContainsFilter
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
stringquery.cpp 24 connect(edit, SIGNAL(returnPressed()), this, SLOT(accept()));
  /libcore/luni/src/main/java/java/nio/channels/
ServerSocketChannel.java 33 * open()} method. Calling {@code accept} before bound will cause a
93 * accept()} method of the {@link ServerSocket} class.
111 public abstract SocketChannel accept() throws IOException; method in class:ServerSocketChannel
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
CanReadFileFilter.java 88 public boolean accept(File file) { method in class:CanReadFileFilter
EmptyFileFilter.java 75 public boolean accept(File file) { method in class:EmptyFileFilter
OrFileFilter.java 117 public boolean accept(final File file) { method in class:OrFileFilter
120 if (fileFilter.accept(file)) {
131 public boolean accept(final File file, final String name) { method in class:OrFileFilter
134 if (fileFilter.accept(file, name)) {
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
Win32PipeStream.h 27 virtual SocketStream *accept();
  /development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
ClassSourcerTest.java 52 cr.accept(jw, 0);
82 cr.accept(jw, 0);
110 cr.accept(jw, 0);
  /external/bluetooth/bluedroid/bta/dm/
bta_dm_ci.c 74 void bta_dm_ci_rmt_oob(BOOLEAN accept, BD_ADDR bd_addr, BT_OCTET16 c, BT_OCTET16 r)
82 p_msg->accept = accept;
  /external/bluetooth/bluedroid/btif/include/
btif_api.h 242 bt_status_t btif_dm_pin_reply( const bt_bdaddr_t *bd_addr, uint8_t accept,
255 uint8_t accept, uint32_t passkey);
267 bt_ssp_variant_t variant, uint8_t accept,
  /external/icu4c/layout/
MultipleSubstSubtables.cpp 32 if (filter != NULL && filter->accept(glyph)) {
50 if (filter != NULL && ! filter->accept(LE_SET_GLYPH(glyph, substitute))) {
63 if (! filter->accept(substitute)) {
  /external/proguard/src/proguard/classfile/attribute/annotation/
Annotation.java 95 referencedClass.accept(classVisitor);
113 referencedClass.accept(classVisitor);
127 elementValues[index].accept(clazz, this, elementValueVisitor); method
  /external/proguard/src/proguard/io/
ClassReader.java 86 clazz.accept(new LibraryClassReader(dataInputStream, skipNonPublicLibraryClasses, skipNonPublicLibraryClassMembers));
91 clazz.accept(new ProgramClassReader(dataInputStream));
105 clazz.accept(classVisitor);
  /external/webkit/Source/WebKit/android/jni/
CookieManager.cpp 103 static void setAcceptCookie(JNIEnv*, jobject, jboolean accept)
108 WebCookieJar::get(false)->setAllowCookies(accept);
109 WebCookieJar::get(true)->setAllowCookies(accept);
131 static void setAcceptFileSchemeCookies(JNIEnv*, jobject, jboolean accept)
133 WebCookieJar::setAcceptFileSchemeCookies(accept);
  /external/proguard/src/proguard/classfile/
ProgramClass.java 279 public void accept(ClassVisitor classVisitor) method in class:ProgramClass
294 accept(classVisitor);
368 subClasses[index].accept(classVisitor); method
380 constantPool[index].accept(this, constantVisitor); method
388 constantPool[index].accept(this, constantVisitor); method
394 constantPool[u2thisClass].accept(this, constantVisitor); method
402 constantPool[u2superClass].accept(this, constantVisitor); method
411 constantPool[u2interfaces[index]].accept(this, constantVisitor); method
420 fields[index].accept(this, memberVisitor); method
430 field.accept(this, memberVisitor)
439 methods[index].accept(this, memberVisitor); method
470 attributes[index].accept(this, attributeVisitor); method
    [all...]
ProgramMember.java 121 public abstract void accept(ProgramClass programClass, method in class:ProgramMember
151 public void accept(Clazz clazz, MemberVisitor memberVisitor) method in class:ProgramMember
153 accept((ProgramClass)clazz, memberVisitor); method
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DFA.java 46 protected short[] accept; field in class:DFA
92 if ( accept[s] >= 1 ) {
93 if ( debug ) System.err.println("accept; predict "+accept[s]+" from state "+s);
94 return accept[s];
105 if ( eot[s]>=0 ) { // EOT Transition to accept state?
109 // TODO: I had this as return accept[eot[s]]
111 // went to an accept...faster to do this, but
129 if ( c==(char)Token.EOF && eof[s]>=0 ) { // EOF Transition to accept state?
130 if ( debug ) System.err.println("accept via EOF; predict "+accept[eof[s]]+" from "+eof[s])
    [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 272 gboolean accept = TRUE; local
274 g_signal_emit_by_name(m_webView, "should-delete-range", kitRange.get(), &accept);
275 return accept;
280 gboolean accept = TRUE; local
282 g_signal_emit_by_name(m_webView, "should-show-delete-interface-for-element", kitElement.get(), &accept);
283 return accept;
312 gboolean accept = TRUE; local
314 g_signal_emit_by_name(m_webView, "should-begin-editing", kitRange.get(), &accept);
315 return accept;
322 gboolean accept = TRUE local
344 gboolean accept = TRUE; local
364 gboolean accept = TRUE; local
374 gboolean accept = TRUE; local
550 gboolean accept = TRUE; local
    [all...]
  /frameworks/base/core/java/android/bluetooth/
IBluetooth.aidl 70 boolean setPin(in BluetoothDevice device, boolean accept, int len, in byte[] pinCode);
71 boolean setPasskey(in BluetoothDevice device, boolean accept, int len, in byte[]
73 boolean setPairingConfirmation(in BluetoothDevice device, boolean accept);
  /external/proguard/src/proguard/
DescriptorKeepChecker.java 85 programClassPool.accept(classPoolvisitor);
86 libraryClassPool.accept(classPoolvisitor);
128 referencedClasses[index].accept(this); method
  /packages/inputmethods/LatinIME/tools/maketext/src/com/android/inputmethod/latin/maketext/
JarUtils.java 58 public boolean accept(String dirName, String name); method in interface:JarUtils.JarFilter
70 if (filter.accept(dirName, name)) {
80 public boolean accept(final String dirName, final String name) {

Completed in 2752 milliseconds

1 2 3 4 56 7 8 91011>>