| /external/tensorflow/tensorflow/core/kernels/ |
| mkl_lrn_op.cc | 33 #include "tensorflow/core/lib/core/errors.h" 83 errors::InvalidArgument("depth_radius = ", depth_radius64, 106 errors::InvalidArgument("input must be 4-dimensional")); 110 errors::InvalidArgument("argument to LRN too large")); 353 errors::InvalidArgument("depth_radius = ", depth_radius64, 386 errors::InvalidArgument("input images must be 4-dimensional")); 419 errors::InvalidArgument("input gradient must be 4-dimensional")); 423 errors::InvalidArgument("input gradient must be 4-dimensional")); 429 errors::InvalidArgument("Output image must be 4-dimensional")); 433 errors::InvalidArgument("Output image must be 4-dimensional")) [all...] |
| dilation_ops.cc | 34 #include "tensorflow/core/lib/core/errors.h" 47 errors::InvalidArgument("Sliding window stride field must " 50 errors::Unimplemented( 55 errors::InvalidArgument("Input stride (atrous rate) field " 58 errors::Unimplemented( 73 errors::InvalidArgument("input must be 4-dimensional", 90 errors::InvalidArgument("filter must be 3-dimensional: ", 95 errors::InvalidArgument( 242 errors::InvalidArgument("out_backprop has incompatible size.")); 362 errors::InvalidArgument("out_backprop has incompatible size.")) [all...] |
| fft_ops.cc | 47 errors::InvalidArgument("Input must have rank of at least ", fft_rank, 61 errors::InvalidArgument("fft_length must have shape [", 79 errors::InvalidArgument( 370 OP_REQUIRES(ctx, stream, errors::Internal("No GPU stream available.")); 414 errors::Internal("fft failed : type=", static_cast<int>(kFftType), 421 errors::Internal("fft failed : type=", static_cast<int>(kFftType), 428 errors::Internal("BlasScal failed : in.shape=", 436 errors::Internal("fft failed : type=", static_cast<int>(kFftType), 444 errors::Internal("BlasScal failed : in.shape=",
|
| matmul_op.cc | 180 errors::Internal("Blas GEMV launch failed: m=", m, ", n=", n)); 190 ctx->SetStatus(errors::Internal( 206 ctx->SetStatus(errors::Internal( 280 OP_REQUIRES(ctx, stream, errors::Internal("No GPU stream available.")); 381 ctx->SetStatus(errors::Internal( 421 ctx->SetStatus(errors::Internal( 462 errors::InvalidArgument("In[0] is not a matrix")); 464 errors::InvalidArgument("In[1] is not a matrix")); 471 errors::InvalidArgument(
|
| quantized_conv_ops.cc | 32 #include "tensorflow/core/lib/core/errors.h" 456 errors::InvalidArgument("Sliding window strides field must " 459 errors::InvalidArgument( 464 errors::InvalidArgument("Current implementation does not yet support " 469 errors::InvalidArgument("Dilations field must " 472 errors::InvalidArgument( 476 errors::InvalidArgument( 493 errors::InvalidArgument("input must be 4-dimensional", 496 errors::InvalidArgument("filter must be 4-dimensional: ", 515 errors::InvalidArgument [all...] |
| tile_ops.cc | 34 #include "tensorflow/core/lib/core/errors.h" 94 errors::InvalidArgument("Expected multiples to be 1-D, but got shape ", 97 errors::InvalidArgument( 114 errors::InvalidArgument("Expected multiples[", i, "] >= 0, but got ", 153 errors::Unimplemented( 262 errors::InvalidArgument("Expected multiples to be 1-D, but got shape ", 265 errors::InvalidArgument( 284 errors::InvalidArgument("Expected multiples[", i, "] > 0, but got ", 287 errors::InvalidArgument("Expected input_dim[", i, 333 errors::Unimplemented [all...] |
| resource_variable_ops.cc | 65 #include "tensorflow/core/lib/core/errors.h" 86 errors::FailedPrecondition( 100 errors::InvalidArgument( 193 if (ignore_lookup_error_ && errors::IsNotFound(status)) { 218 errors::InvalidArgument( 241 errors::InvalidArgument( 305 return errors::InvalidArgument( \ 344 errors::Internal("Variant kernel called with dtype: ", 360 errors::InvalidArgument( 494 errors::InvalidArgument("params must be at least 1 dimensional")) [all...] |
| set_kernels.cc | 49 errors::InvalidArgument("Invalid rank ", rank, ".")); 56 return errors::InvalidArgument("Shape [", str_util::Join(input_shape, ","), 97 OP_REQUIRES(ctx, indices.size() > 0, errors::Internal("Empty group.")); 100 errors::Internal("shape[0] of group indices ", indices.dimension(0), 107 errors::Internal("Rank expected ", expected_rank, ", got ", 113 errors::Internal("Invalid dim_size[", j, "] = ", dim_size, ".")); 117 errors::Internal("indices[", i, ", ", j, "] expected < ", 168 errors::Internal("Invalid number of indices ", group_indices.size(), 213 errors::Internal("group_indices.size ", group_indices.size(), 311 ctx->CtxFailure(errors::InvalidArgument("Missing set_operation.")) [all...] |
| /development/testrunner/ |
| runtest.py | 45 import errors 206 raise errors.AbortError 250 except errors.ParseError: 251 raise errors.AbortError 327 except errors.AbortError: 447 raise errors.AbortError 537 except errors.WaitForResponseTimedOutError: 542 except errors.AbortError, error: 545 except errors.WaitForResponseTimedOutError:
|
| /external/tensorflow/tensorflow/core/distributed_runtime/ |
| master_test.cc | 30 #include "tensorflow/core/lib/core/errors.h" 144 EXPECT_TRUE(errors::IsAborted(CloseSession("randombits"))); 165 EXPECT_TRUE(errors::IsAborted(CloseSession(s1))); 166 EXPECT_TRUE(errors::IsAborted(CloseSession(s2))); 197 EXPECT_TRUE(errors::IsAborted( 224 EXPECT_TRUE(errors::IsInvalidArgument( 243 EXPECT_TRUE(errors::IsAborted( 268 EXPECT_TRUE(s.ok() || errors::IsAborted(s)); 330 errors::IsNotFound(RunStep(handle, {}, {{"A:0", &A}, {"B:0", &B}}))); 337 EXPECT_TRUE(errors::IsNotFound(s) || s.ok()) [all...] |
| message_wrappers.cc | 153 return errors::InvalidArgument("Invalid TensorProto for feed value ", i); 240 return errors::InvalidArgument("Invalid TensorProto for feed value ", i); 427 return errors::InvalidArgument("Invalid TensorProto for feed value ", i); 509 return errors::InvalidArgument("Invalid TensorProto for feed value ", i); 565 errors::Code InMemoryRunGraphResponse::status_code() const { 611 return errors::InvalidArgument("Invalid TensorProto for recv value ", i); 633 errors::Code OwnedProtoRunGraphResponse::status_code() const { 682 return errors::InvalidArgument("Invalid TensorProto for recv value ", i); 704 errors::Code NonOwnedProtoRunGraphResponse::status_code() const { 763 errors::Code InMemoryRunStepResponse::status_code() const [all...] |
| /external/tensorflow/tensorflow/tools/graph_transforms/ |
| sparsify_gather.cc | 44 return tensorflow::errors::FailedPrecondition( 140 return errors::Internal("Unable to find RestoreV2 entry for variable: ", 153 return errors::Internal("Unable to find slice for variable: ", target_name); 180 return errors::Internal("Checkpoint reader was not initialized. "); 311 return tensorflow::errors::FailedPrecondition( 316 return tensorflow::errors::FailedPrecondition( 328 return tensorflow::errors::FailedPrecondition( 526 return errors::Internal( 536 return errors::Internal(
|
| /system/extras/libfec/ |
| fec_read.cpp | 106 of bytes corrected in `errors' */ 108 bool use_erasures, uint8_t *ecc_data, size_t *errors) 132 /* to improve our chances of correcting IO errors, initialize the 141 /* treat errors as corruption */ 200 warn("RS block %" PRIu64 ": corrected %zu errors", rsb, nerrs); 201 *errors += nerrs; 232 /* reads `count' bytes from `offset' and corrects possible errors without 233 erasure detection, returning the number of corrected bytes in `errors' */ 235 uint64_t offset, size_t *errors) 241 check(errors); [all...] |
| /tools/acloud/public/ |
| device_driver.py | 38 from acloud.public import errors 134 raise errors.DriverError( 191 errors.DriverError: If no source is specified for image creation. 204 raise errors.DriverError( 248 the value is an errors.DeviceBootTimeoutError object. 254 except errors.DeviceBootTimeoutError as e: 279 This function will append error_msgs to report.errors. 351 raise errors.DriverError( 430 except errors.DriverError as e: 459 except errors.DriverError as e [all...] |
| /build/kati/ |
| rule_parser.go | 19 "errors" 189 return nil, errors.New("*** missing separator.") 201 return nil, errors.New("*** mixed implicit and normal rules: deprecated syntax") 245 return nil, errors.New("*** mixed implicit and normal rules: deprecated syntax") 254 return nil, errors.New("*** missing target pattern.") 258 return nil, errors.New("*** target pattern contains no '%'.") 262 return nil, errors.New("*** multiple target patterns.")
|
| /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/ |
| AbstractRestrictBackgroundNetworkTestCase.java | 469 final StringBuilder errors = new StringBuilder(); local 481 errors.append(String.format("External site connection failed: expected %s, got %s\n", 485 errors.append(String.format("Connection state mismatch: expected %s/%s, got %s/%s\n", 489 if (errors.length() > 0) { 490 errors.append("\tnetworkInfo: " + networkInfo + "\n"); 491 errors.append("\tconnectionCheckDetails: " + connectionCheckDetails + "\n"); 493 return errors.toString(); 1001 final String[] errors = new String[]{null}; local [all...] |
| /external/python/cpython3/Python/ |
| pylifecycle.c | 133 Py_SetStandardStreamEncoding(const char *encoding, const char *errors) 139 /* Can't call PyErr_NoMemory() on errors, as Python hasn't been 152 if (errors) { 153 _Py_StandardStreamErrors = _PyMem_RawStrdup(errors); 628 * XXX triggers a comedy of errors as subsystem after subsystem 1065 const char* encoding, const char* errors) 1095 Py_None, Py_None, /* encoding, errors */ 1189 char *pythonioencoding = NULL, *encoding, *errors; local [all...] |
| /hardware/qcom/gps/msm8909w_3100/location/ |
| LocationAPIClientBase.cpp | 61 [this](size_t count, LocationError* errors, uint32_t* ids) { 62 onCtrlCollectiveResponseCb(count, errors, ids); 186 size_t count, LocationError* errors, uint32_t* ids) 189 if (errors[i] != LOCATION_ERROR_SUCCESS) { 190 LOC_LOGE("%s:%d] ERROR: %d ID: %d", __FUNCTION__, __LINE__, errors[i], ids[i]); 192 LOC_LOGV("%s:%d] SUCCESS: %d id: %d", __FUNCTION__, __LINE__, errors[i], ids[i]); 202 request->onCollectiveResponse(count, errors, ids); 262 [this](size_t count, LocationError* errors, uint32_t* ids) { 263 onCollectiveResponseCb(count, errors, ids); [all...] |
| /hardware/qcom/gps/msm8998/location/ |
| LocationAPIClientBase.cpp | 83 [this](size_t count, LocationError* errors, uint32_t* ids) { 84 onCollectiveResponseCb(count, errors, ids); 102 [this](size_t count, LocationError* errors, uint32_t* ids) { 103 onCtrlCollectiveResponseCb(count, errors, ids); 760 size_t count, LocationError* errors, uint32_t* ids) 763 if (errors[i] != LOCATION_ERROR_SUCCESS) { 764 LOC_LOGE("%s:%d] ERROR: %d ID: %d", __FUNCTION__, __LINE__, errors[i], ids[i]); 766 LOC_LOGV("%s:%d] error: %d id: %d", __FUNCTION__, __LINE__, errors[i], ids[i]); 776 request->onCollectiveResponse(count, errors, ids); 796 size_t count, LocationError* errors, uint32_t* ids [all...] |
| /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/profile/ |
| proto.go | 36 import "errors" 190 return 0, nil, errors.New("bad varint") 216 return nil, errors.New("not enough data") 227 return nil, errors.New("too much data") 233 return nil, errors.New("not enough data") 238 return nil, errors.New("unknown wire type: " + string(b.typ)) 246 return errors.New("type mismatch")
|
| /prebuilts/go/darwin-x86/src/runtime/pprof/internal/profile/ |
| proto.go | 24 import "errors" 187 return 0, nil, errors.New("bad varint") 213 return nil, errors.New("not enough data") 224 return nil, errors.New("too much data") 230 return nil, errors.New("not enough data") 235 return nil, errors.New("unknown type: " + string(b.typ)) 243 return errors.New("type mismatch")
|
| /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/ |
| proto.go | 36 import "errors" 190 return 0, nil, errors.New("bad varint") 216 return nil, errors.New("not enough data") 227 return nil, errors.New("too much data") 233 return nil, errors.New("not enough data") 238 return nil, errors.New("unknown wire type: " + string(b.typ)) 246 return errors.New("type mismatch")
|
| /prebuilts/go/linux-x86/src/runtime/pprof/internal/profile/ |
| proto.go | 24 import "errors" 187 return 0, nil, errors.New("bad varint") 213 return nil, errors.New("not enough data") 224 return nil, errors.New("too much data") 230 return nil, errors.New("not enough data") 235 return nil, errors.New("unknown type: " + string(b.typ)) 243 return errors.New("type mismatch")
|
| /external/v8/tools/ |
| run_perf.py | 154 def __init__(self, traces=None, errors=None): 156 self.errors = errors or [] 159 return {"traces": self.traces, "errors": self.errors} 167 self.errors += other.errors 187 self.errors = [] 195 self.errors.append("Regexp \"%s\" returned a non-numeric for test %s." 198 self.errors.append("Regexp \"%s\" didn't match for test %s. [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| UserString.py | 67 def decode(self, encoding=None, errors=None): # XXX improve this?
69 if errors:
70 return self.__class__(self.data.decode(encoding, errors))
75 def encode(self, encoding=None, errors=None): # XXX improve this?
77 if errors:
78 return self.__class__(self.data.encode(encoding, errors))
145 errors that would be very hard to track down.
|