Home
last modified time | relevance | path

Searched refs:is_bound (Results 1 – 23 of 23) sorted by relevance

/external/libchrome/mojo/public/cpp/bindings/
Dbinding.h108 DCHECK(is_bound()); in AddFilter()
178 DCHECK(is_bound()); in set_connection_error_handler()
184 DCHECK(is_bound()); in set_connection_error_with_reason_handler()
195 bool is_bound() const { return internal_state_.is_bound(); } in is_bound() function
197 explicit operator bool() const { return internal_state_.is_bound(); }
Dinterface_ptr.h93 bool is_bound() const { return internal_state_.is_bound(); } in is_bound() function
138 if (internal_state_.is_bound()) in ResetWithReason()
208 explicit operator bool() const { return internal_state_.is_bound(); }
Dassociated_interface_ptr.h83 bool is_bound() const { return internal_state_.is_bound(); } in is_bound() function
127 if (internal_state_.is_bound()) in ResetWithReason()
171 explicit operator bool() const { return internal_state_.is_bound(); }
Dstrong_binding.h63 DCHECK(binding_.is_bound()); in set_connection_error_handler()
70 DCHECK(binding_.is_bound()); in set_connection_error_with_reason_handler()
Dstrong_associated_binding.h65 DCHECK(binding_.is_bound()); in set_connection_error_handler()
72 DCHECK(binding_.is_bound()); in set_connection_error_with_reason_handler()
Dassociated_binding.h61 bool is_bound() const { return !!endpoint_client_; } in is_bound() function
/external/llvm-project/polly/lib/External/isl/
Disl_box.c254 isl_bool is_bound, any_divs; in is_suitable_bound() local
256 is_bound = isl_constraint_is_lower_bound(c, isl_dim_set, pos); in is_suitable_bound()
257 if (is_bound < 0 || !is_bound) in is_suitable_bound()
258 return is_bound; in is_suitable_bound()
281 isl_bool is_bound, better; in compute_size_in_direction() local
283 is_bound = is_suitable_bound(c, info->pos); in compute_size_in_direction()
284 if (is_bound < 0 || !is_bound) { in compute_size_in_direction()
286 return is_bound < 0 ? isl_stat_error : isl_stat_ok; in compute_size_in_direction()
Disl_convex_hull.c395 isl_bool is_bound; in initial_facet_constraint() local
407 is_bound = uset_is_bound(set, bounds->row[0], 1 + dim); in initial_facet_constraint()
408 if (is_bound < 0) in initial_facet_constraint()
410 isl_assert(set->ctx, is_bound, goto error); in initial_facet_constraint()
2124 static int is_bound(struct sh_data *data, __isl_keep isl_set *set, int j, in is_bound() function
2265 bound = is_bound(data, set, j, hull->ineq[k], shift); in add_bound()
2282 bound = is_bound(data, set, j, hull->ineq[k], shift); in add_bound()
2735 bound = is_bound(data, set, i, ineq, 0); in add_bound_from_constraint()
/external/libchrome/mojo/public/cpp/bindings/lib/
Dbinding_state.h57 DCHECK(is_bound()); in set_connection_error_handler()
63 DCHECK(is_bound()); in set_connection_error_with_reason_handler()
68 bool is_bound() const { return !!router_; } in is_bound() function
71 DCHECK(is_bound()); in handle()
Dassociated_binding.cc34 DCHECK(is_bound()); in set_connection_error_handler()
40 DCHECK(is_bound()); in set_connection_error_with_reason_handler()
Dbinding_state.cc73 DCHECK(is_bound()); in EnableTestingMode()
90 DCHECK(!is_bound()) << "Attempting to bind interface that is already bound: " in BindInternal()
Dassociated_interface_ptr_state.h45 bool is_bound() const { return !!endpoint_client_; } in is_bound() function
Dinterface_ptr_state.h47 bool is_bound() const { return handle_.is_valid() || endpoint_client_; } in is_bound() function
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/
Degl_environment.cc65 bool is_bound; in Init() local
67 TFLITE_GPU_CALL_EGL(eglBindAPI, &is_bound, EGL_OPENGL_ES_API)); in Init()
68 if (!is_bound) { in Init()
/external/libchrome/ipc/
Dipc_message_pipe_reader.cc48 if (binding_.is_bound()) in Close()
74 if (!sender_.is_bound()) in GetRemoteInterface()
Dipc_message_pipe_reader.h78 bool IsValid() { return sender_.is_bound(); } in COMPONENT_EXPORT()
Dipc_channel_mojo.cc130 if (!message_reader_ || !message_reader_->sender().is_bound()) in ForwardMessageFromThreadSafePtr()
140 if (!message_reader_ || !message_reader_->sender().is_bound()) in ForwardMessageWithResponderFromThreadSafePtr()
Dipc_channel_mojo_unittest.cc703 DCHECK(!binding_.is_bound()); in BindRequest()
898 DCHECK(!binding_.is_bound()); in BindRequest()
999 DCHECK(!driver_binding_.is_bound()); in OnAssociatedInterfaceRequest()
1128 DCHECK(!binding_.is_bound()); in OnAssociatedInterfaceRequest()
1135 DCHECK(!binding_.is_bound()); in BindRequest()
1261 DCHECK(!binding_.is_bound()); in OnAssociatedInterfaceRequest()
/external/rust/crates/tokio/src/runtime/task/
Dcore.rs141 debug_assert!(!self.is_bound()); in bind_scheduler()
153 pub(super) fn is_bound(&self) -> bool { in is_bound() method
Dharness.rs220 let ref_dec = if self.scheduler.is_bound() { in transition_to_terminal()
244 let is_not_bound = !self.scheduler.is_bound(); in transition_to_running()
/external/openscreen/platform/impl/
Dudp_socket_posix.cc191 bool is_bound = false; in Bind() local
201 is_bound = true; in Bind()
213 is_bound = true; in Bind()
218 if (is_bound) { in Bind()
/external/libchrome/mojo/public/cpp/bindings/tests/
Dinterface_ptr_unittest.cc229 EXPECT_FALSE(calc.is_bound()); in TEST_P()
231 EXPECT_TRUE(calc.is_bound()); in TEST_P()
314 EXPECT_FALSE(a.internal_state()->is_bound()); in TEST_P()
Dbinding_unittest.cc218 EXPECT_FALSE(binding.is_bound()); in TEST_P()
228 EXPECT_TRUE(binding.is_bound()); in TEST_P()