Home | History | Annotate | Download | only in xla

Lines Matching refs:CANCELLED

80   StatusOr<NoDefaultConstructor> statusor(tensorflow::errors::Cancelled(""));
82 EXPECT_EQ(statusor.status().code(), tensorflow::error::CANCELLED);
103 StatusOr<std::unique_ptr<int>> thing(tensorflow::errors::Cancelled(""));
224 StatusOr<int> thing(Status(tensorflow::error::CANCELLED, ""));
226 EXPECT_EQ(thing.status().code(), tensorflow::error::CANCELLED);
245 StatusOr<int> original(Status(tensorflow::error::CANCELLED, ""));
268 StatusOr<int> original(Status(tensorflow::error::CANCELLED, ""));
283 StatusOr<int> source(Status(tensorflow::error::CANCELLED, ""));
292 StatusOr<int> bad(Status(tensorflow::error::CANCELLED, ""));
294 EXPECT_EQ(bad.status(), Status(tensorflow::error::CANCELLED, ""));
310 StatusOr<int> thing(Status(tensorflow::error::CANCELLED, "cancelled"));
311 EXPECT_DEATH(thing.ValueOrDie(), "cancelled");
331 StatusOr<int*> thing(Status(tensorflow::error::CANCELLED, ""));
333 EXPECT_EQ(thing.status(), Status(tensorflow::error::CANCELLED, ""));
352 StatusOr<int*> original(Status(tensorflow::error::CANCELLED, ""));
367 StatusOr<Derived*> original(Status(tensorflow::error::CANCELLED, ""));
382 StatusOr<int*> source(Status(tensorflow::error::CANCELLED, ""));
392 StatusOr<const int*> bad(Status(tensorflow::error::CANCELLED, ""));
393 EXPECT_EQ(bad.status(), Status(tensorflow::error::CANCELLED, ""));
418 StatusOr<int*> thing(Status(tensorflow::error::CANCELLED, "cancelled"));
419 EXPECT_DEATH(thing.ValueOrDie(), "cancelled");
423 const StatusOr<int*> thing(Status(tensorflow::error::CANCELLED, "cancelled"));
424 EXPECT_DEATH(thing.ValueOrDie(), "cancelled");
458 return Status(tensorflow::error::CANCELLED, "");
480 return Status(tensorflow::error::CANCELLED, "");