HomeSort by relevance Sort by last modified time
    Searched full:accept (Results 1101 - 1125 of 11438) sorted by null

<<41424344454647484950>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
string2.h     [all...]
  /external/libmojo/mojo/public/tools/bindings/generators/cpp_templates/
interface_definition.tmpl 88 bool Accept(mojo::Message* message) override;
97 bool {{class_name}}_{{method.name}}_HandleSyncResponse::Accept(
124 bool Accept(mojo::Message* message) override;
130 bool {{class_name}}_{{method.name}}_ForwardToCallback::Accept(
204 bool ok = receiver_->Accept(builder.message());
291 bool ok = responder_->Accept(builder.message());
311 bool {{class_name}}Stub::Accept(mojo::Message* message) {
313 return control_message_handler_.Accept(message);
385 bool {{class_name}}RequestValidator::Accept(mojo::Message* message) {
395 return sink_->Accept(message)
    [all...]
  /external/curl/tests/data/
test2026 187 Accept: */*
192 Accept: */*
197 Accept: */*
201 Accept: */*
206 Accept: */*
211 Accept: */*
216 Accept: */*
test2029 206 Accept: */*
211 Accept: */*
216 Accept: */*
221 Accept: */*
226 Accept: */*
231 Accept: */*
236 Accept: */*
test2023 138 Accept: */*
143 Accept: */*
148 Accept: */*
153 Accept: */*
158 Accept: */*
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
Binding.java 183 typeMirror.accept(new SimpleTypeVisitor6<Void, ImmutableSet.Builder<String>>() {
186 return t.getComponentType().accept(this, p);
192 typeArgument.accept(this, p);
204 typeElement.getEnclosingElement().asType().accept(this, p);
211 t.getExtendsBound().accept(this, p);
214 t.getSuperBound().accept(this, p);
248 type.accept(
  /external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/ws/
WebSocketCallTest.java 108 .setHeader("Sec-WebSocket-Accept", "ujmZX4KXZqjwy6vi1aQFH5p4Ygk="));
119 .setHeader("Sec-WebSocket-Accept", "ujmZX4KXZqjwy6vi1aQFH5p4Ygk="));
129 .setHeader("Sec-WebSocket-Accept", "ujmZX4KXZqjwy6vi1aQFH5p4Ygk="));
140 .setHeader("Sec-WebSocket-Accept", "ujmZX4KXZqjwy6vi1aQFH5p4Ygk="));
153 "Expected 'Sec-WebSocket-Accept' header value 'ujmZX4KXZqjwy6vi1aQFH5p4Ygk=' but was 'null'");
161 .setHeader("Sec-WebSocket-Accept", "magic"));
164 "Expected 'Sec-WebSocket-Accept' header value 'ujmZX4KXZqjwy6vi1aQFH5p4Ygk=' but was 'magic'");
  /external/vulkan-validation-layers/libs/glm/detail/
func_exponential.inl 90 "'pow' only accept floating-point inputs");
106 "'exp' only accept floating-point inputs");
122 "'log' only accept floating-point inputs");
135 "'exp2' only accept floating-point inputs");
147 "GLM core 'log2' only accept floating-point inputs. Include <glm/gtx/integer.hpp> for additional integer support.");
221 GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'sqrt' only accept floating-point inputs");
242 GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'inversesqrt' only accept floating-point inputs");
  /frameworks/base/core/java/android/text/method/
NumberKeyListener.java 48 * You can say which characters you can accept.
59 char[] accept = getAcceptedChars(); local
64 if (!ok(accept, source.charAt(i))) {
87 if (!ok(accept, source.charAt(j))) {
95 protected static boolean ok(char[] accept, char c) {
96 for (int i = accept.length - 1; i >= 0; i--) {
97 if (accept[i] == c) {
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
DoubleStreamTestScenario.java 62 b.accept(t);
71 b.accept(seqIter.nextDouble());
137 b.accept(t);
151 b.accept(t);
163 b.accept(t);
173 b.accept(e);
187 b.accept(e);
IntStreamTestScenario.java 62 b.accept(t);
71 b.accept(seqIter.nextInt());
137 b.accept(t);
152 b.accept(t);
164 b.accept(t);
174 b.accept(e);
188 b.accept(e);
LongStreamTestScenario.java 62 b.accept(t);
71 b.accept(seqIter.nextLong());
137 b.accept(t);
151 b.accept(t);
163 b.accept(t);
173 b.accept(e);
187 b.accept(e);
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
DoubleStreamTestScenario.java 66 b.accept(t);
75 b.accept(seqIter.nextDouble());
141 b.accept(t);
155 b.accept(t);
167 b.accept(t);
177 b.accept(e);
191 b.accept(e);
IntStreamTestScenario.java 65 b.accept(t);
74 b.accept(seqIter.nextInt());
140 b.accept(t);
155 b.accept(t);
167 b.accept(t);
177 b.accept(e);
191 b.accept(e);
LongStreamTestScenario.java 65 b.accept(t);
74 b.accept(seqIter.nextLong());
140 b.accept(t);
154 b.accept(t);
166 b.accept(t);
176 b.accept(e);
190 b.accept(e);
  /external/mesa3d/src/glsl/
ir.h 105 virtual void accept(ir_visitor *) = 0;
106 virtual ir_visitor_status accept(ir_hierarchical_visitor *) = 0;
152 virtual void accept(ir_visitor *v) function in class:ir_rvalue
157 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
317 virtual void accept(ir_visitor *v) function in class:ir_variable
322 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
535 virtual void accept(ir_visitor *v) function in class:ir_function_signature
540 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
651 virtual void accept(ir_visitor *v) function in class:ir_function
656 virtual ir_visitor_status accept(ir_hierarchical_visitor *)
730 virtual void accept(ir_visitor *v) function in class:ir_if
754 virtual void accept(ir_visitor *v) function in class:ir_loop
825 virtual void accept(ir_visitor *v) function in class:ir_assignment
1111 virtual void accept(ir_visitor *v) function in class:ir_expression
1149 virtual void accept(ir_visitor *v) function in class:ir_call
1237 virtual void accept(ir_visitor *v) function in class:ir_return
1271 virtual void accept(ir_visitor *v) function in class:ir_loop_jump
1311 virtual void accept(ir_visitor *v) function in class:ir_discard
1373 virtual void accept(ir_visitor *v) function in class:ir_texture
1475 virtual void accept(ir_visitor *v) function in class:ir_swizzle
1574 virtual void accept(ir_visitor *v) function in class:ir_dereference_variable
1621 virtual void accept(ir_visitor *v) function in class:ir_dereference_array
1664 virtual void accept(ir_visitor *v) function in class:ir_dereference_record
1726 virtual void accept(ir_visitor *v) function in class:ir_constant
    [all...]
  /libcore/ojluni/src/main/java/java/util/stream/
ReferencePipeline.java 174 public void accept(P_OUT u) {
176 downstream.accept(u);
193 public void accept(P_OUT u) {
194 downstream.accept(mapper.apply(u));
210 public void accept(P_OUT u) {
211 downstream.accept(mapper.applyAsInt(u));
227 public void accept(P_OUT u) {
228 downstream.accept(mapper.applyAsLong(u));
244 public void accept(P_OUT u) {
245 downstream.accept(mapper.applyAsDouble(u))
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_socket_acceptor.hpp 29 /// 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.
901 /// Accept a new connection.
903 * This function is used to accept a new connection from a peer into th
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...]
  /external/libmojo/mojo/public/cpp/bindings/lib/
router.cc 60 bool Accept(Message* message) override {
68 result = router_->Accept(message);
112 bool Router::HandleIncomingMessageThunk::Accept(Message* message) {
143 bool Router::Accept(Message* message) {
146 return connector_.Accept(message);
160 if (!connector_.Accept(message))
185 ignore_result(sync_responder->Accept(response.get()));
286 return responder->Accept(message);
291 return incoming_receiver_->Accept(message);
  /external/proguard/src/proguard/classfile/
LibraryClass.java 304 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); method
471 field.accept(this, memberVisitor);
482 field.accept(this, memberVisitor);
494 method.accept(this, memberVisitor);
505 method.accept(this, memberVisitor);
  /tools/test/connectivity/acts/tests/google/bt/pts/instructions/
GAP_PTS_INSTRUCTIONS 198 Note: Do not accept pairing on phone until after you accept it on PTS
228 Note: Do not accept pairing on phone until after you accept it on PTS
275 Do not accept pairing on phone until after you accept it on PTS
302 Note: Do not accept pairing on phone until after you accept it on PTS
344 Accept Pairing on Phone (check contacts box)
  /art/test/943-private-recursive-jit/src/
Main.java 39 // reporter.accept("goodbye" + recur + " - transformed");
96 public void accept(String s) { method in class:Main.TestWatcher
146 reporter.accept("transforming calling function");
156 t.sayHi(2, reporter, () -> { reporter.accept("Not doing anything here"); });
158 t.sayHi(2, reporter, () -> { reporter.accept("Not doing anything here"); });
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/
InputContentInfoTest.java 105 // Test that we accept null link Uri
111 // Test that we accept http link Uri
117 // Test that we accept https link Uri
126 // InputContentInfo must accept http and https link Uri only
135 // InputContentInfo must accept http and https link Uri only
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3cyclicdfa.c 119 /* Accept state?
121 if (cdfa->accept[s] >= 1)
124 return cdfa->accept[s];
173 /* EOF transition to accept state?
178 return cdfa->accept[cdfa->eof[s]];
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/direct/
NelderMead.java 112 // accept the reflected point
125 // accept the expansion point
128 // accept the reflected point
144 // accept the contraction point
159 // accept the contraction point

Completed in 713 milliseconds

<<41424344454647484950>>