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

1 2 3 4 5 6 7 8 91011>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
CookiePolicyTest.java 36 boolean accept;
39 accept = CookiePolicy.ACCEPT_ALL.shouldAccept(null, cookie);
40 assertTrue(accept);
42 accept = CookiePolicy.ACCEPT_ALL.shouldAccept(null, null);
43 assertTrue(accept);
45 accept = CookiePolicy.ACCEPT_ALL.shouldAccept(uri, null);
46 assertTrue(accept);
49 accept = CookiePolicy.ACCEPT_NONE.shouldAccept(null, cookie);
50 assertFalse(accept);
52 accept = CookiePolicy.ACCEPT_NONE.shouldAccept(null, null)
    [all...]
  /art/test/916-obsolete-jit/src/
Transform.java 21 reporter.accept("hello - private");
25 reporter.accept("goodbye - private");
29 reporter.accept("Pre Start private method call");
31 reporter.accept("Post Start private method call");
33 reporter.accept("Pre Finish private method call");
35 reporter.accept("Post Finish private method call");
  /external/caliper/caliper/src/main/java/com/google/caliper/bridge/
LogMessage.java 23 public abstract void accept(LogMessageVisitor visitor); method in class:LogMessage
  /frameworks/support/compat/src/main/java/androidx/core/util/
Consumer.java 30 void accept(T t); method in interface:Consumer
  /libcore/ojluni/src/main/java/java/io/
FileFilter.java 49 boolean accept(File pathname); method in interface:FileFilter
FilenameFilter.java 52 boolean accept(File dir, String name); method in interface:FilenameFilter
  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
BooleanConsumer.java 21 void accept(boolean value); method in interface:BooleanConsumer
EventListener.java 24 void accept(T event); method in interface:EventListener
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionFilter.java 28 boolean accept(Suggestion s); method in interface:SuggestionFilter
  /frameworks/rs/rsov/compiler/spirit/
visitor.cpp 25 void DoNothingVisitor::visit(Entity *e) { e->accept(this); }
27 void DoNothingVisitor::visit(Module *m) { m->accept(this); }
30 entry->accept(this);
33 void DoNothingVisitor::visit(DebugInfoSection *dinfo) { dinfo->accept(this); }
35 void DoNothingVisitor::visit(AnnotationSection *a) { a->accept(this); }
37 void DoNothingVisitor::visit(GlobalSection *g) { g->accept(this); }
39 fdecl->accept(this);
41 void DoNothingVisitor::visit(Block *b) { b->accept(this); }
42 void DoNothingVisitor::visit(FunctionDefinition *fdef) { fdef->accept(this); }
43 void DoNothingVisitor::visit(Instruction *inst) { inst->accept(this);
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/
Filter.java 22 * A "filter" holds the various patterns that MkStubs should accept (include)
29 * The {@link #accept(String)} method examines a given string against the known
73 * @param s The string to accept or reject.
76 public boolean accept(String s) { method in class:Filter
79 boolean accept = mIncludeFull.contains(s);
80 if (!accept) {
84 accept = true;
90 if (accept) {
92 accept = !mExcludeFull.contains(s);
94 if (accept) {
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
HashCodeVisitor.java 47 return node.accept(SINGLETON, null);
52 return (n.getMembers().accept(this, arg)) * 31 + (n.getModifiers().hashCode()) * 31 + (n.getName().accept(this, arg)) * 31 + (n.getAnnotations().accept(this, arg)) * 31 + (n.getComment().isPresent() ? n.getComment().get().accept(this, arg) : 0);
57 return (n.getDefaultValue().isPresent() ? n.getDefaultValue().get().accept(this, arg) : 0) * 31 + (n.getModifiers().hashCode()) * 31 + (n.getName().accept(this, arg)) * 31 + (n.getType().accept(this, arg)) * 31 + (n.getAnnotations().accept(this, arg)) * 31 + (n.getComment().isPresent() ? n.getComment().get().accept(this, arg) : 0)
    [all...]
VoidVisitorAdapter.java 45 n.getMembers().forEach(p -> p.accept(this, arg));
46 n.getName().accept(this, arg);
47 n.getAnnotations().forEach(p -> p.accept(this, arg));
48 n.getComment().ifPresent(l -> l.accept(this, arg));
54 n.getDefaultValue().ifPresent(l -> l.accept(this, arg));
55 n.getName().accept(this, arg);
56 n.getType().accept(this, arg);
57 n.getAnnotations().forEach(p -> p.accept(this, arg));
58 n.getComment().ifPresent(l -> l.accept(this, arg));
64 n.getIndex().accept(this, arg)
697 ((Node) node).accept(this, arg); method
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptParser.java 33 * Parser for Accept header.
45 * Creates a new instance of Accept Parser
46 * @param accept the header to parse
48 public AcceptParser(String accept) {
49 super(accept);
61 * parse the Accept String header
72 headerName(TokenTypes.ACCEPT);
74 Accept accept = new Accept(); local
    [all...]
  /dalvik/dx/tests/139-lambda-metafactory/
Consumer.class 
  /external/strace/tests/
sun_path.test 7 run_prog ../net-accept-connect 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678
  /external/strace/tests-m32/
sun_path.test 7 run_prog ../net-accept-connect 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678
  /external/strace/tests-mx32/
sun_path.test 7 run_prog ../net-accept-connect 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678
  /external/testng/src/main/java/org/testng/xml/
ISuiteParser.java 5 boolean accept(String fileName); method in interface:ISuiteParser
  /libcore/ojluni/src/main/java/java/util/function/
ObjDoubleConsumer.java 35 * whose functional method is {@link #accept(Object, double)}.
51 void accept(T t, double value); method in interface:ObjDoubleConsumer
ObjIntConsumer.java 35 * whose functional method is {@link #accept(Object, int)}.
51 void accept(T t, int value); method in interface:ObjIntConsumer
ObjLongConsumer.java 35 * whose functional method is {@link #accept(Object, long)}.
51 void accept(T t, long value); method in interface:ObjLongConsumer
  /packages/apps/Dialer/java/com/android/dialer/function/
Consumer.java 23 void accept(T value); method in interface:Consumer
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
AbstractFileFilter.java 25 * Note that a subclass <b>must</b> override one of the accept methods,
41 public boolean accept(File file) { method in class:AbstractFileFilter
42 return accept(file.getParentFile(), file.getName());
52 public boolean accept(File dir, String name) { method in class:AbstractFileFilter
53 return accept(new File(dir, name));
  /external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
Consumer.java 21 void accept(T t); method in interface:Consumer
37 accept(t);
38 after.accept(t);

Completed in 512 milliseconds

1 2 3 4 5 6 7 8 91011>>