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

1 2 3 4 5 6 7 8 91011

  /external/lzma/CPP/7zip/UI/Common/
ExitCode.h 10 kSuccess = 0, // Successful operation
  /external/puffin/src/include/puffin/
errors.h 12 kSuccess = 0,
  /art/cmdline/
cmdline_result.h 29 kSuccess,
43 bool IsSuccess() const { return status_ == kSuccess; }
45 bool IsError() const { return status_ != kSuccess; }
58 assert(status != kSuccess);
64 assert(status != kSuccess);
80 case CmdlineResult::kSuccess:
81 stream << "kSuccess";
cmdline_parse_result.h 126 : CmdlineResult(kSuccess), value_(value), has_value_(true) {}
128 : CmdlineResult(kSuccess), value_(std::forward<T>(value)), has_value_(true) {}
130 : CmdlineResult(kSuccess), value_(), has_value_(false) {}
  /external/libbrillo/policy/
policy_util.h 19 kSuccess = 0,
27 // in LoadPolicyResult. In case response is |kSuccess|, |policy_data_str_out|
  /external/skia/tools/
imgblur.cpp 25 static const int kSuccess = 0;
72 return kSuccess;
skpinfo.cpp 26 static const int kSuccess = 0;
72 return kSuccess;
133 return kSuccess; // TODO: need to store size in bytes
155 return kSuccess;
  /external/skqp/tools/
imgblur.cpp 25 static const int kSuccess = 0;
72 return kSuccess;
skpinfo.cpp 26 static const int kSuccess = 0;
72 return kSuccess;
133 return kSuccess; // TODO: need to store size in bytes
155 return kSuccess;
  /system/chre/apps/chqts/src/shared/
send_message.h 52 kSuccess = 0x0401,
161 * Invoke sendMessageToHost with MessageType::kSuccess and no other information.
164 sendMessageToHost(MessageType::kSuccess);
  /system/nvram/core/include/nvram/core/
storage.h 31 kSuccess, // Operation successful.
72 // returning. The return value must be Status::kSuccess if and only if data was
86 // This function must return Status::kSuccess upon deleting the space data
  /system/nvram/hal/
memory_storage.cpp 39 return Status::kSuccess;
47 return Status::kSuccess;
51 return blob_.Resize(0) ? Status::kSuccess : Status::kStorageError;
117 return Status::kSuccess;
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest-test-part.h 52 kSuccess, // Succeeded.
89 bool passed() const { return type_ == kSuccess; }
92 bool failed() const { return type_ != kSuccess; }
  /external/googletest/googletest/include/gtest/
gtest-test-part.h 52 kSuccess, // Succeeded.
91 bool passed() const { return type_ == kSuccess; }
94 bool failed() const { return type_ != kSuccess; }
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest-test-part.h 52 kSuccess, // Succeeded.
91 bool passed() const { return type_ == kSuccess; }
94 bool failed() const { return type_ != kSuccess; }
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-test-part.h 52 kSuccess, // Succeeded.
89 bool passed() const { return type_ == kSuccess; }
92 bool failed() const { return type_ != kSuccess; }
  /external/mesa3d/src/gtest/include/gtest/
gtest-test-part.h 52 kSuccess, // Succeeded.
91 bool passed() const { return type_ == kSuccess; }
94 bool failed() const { return type_ != kSuccess; }
  /external/protobuf/gtest/include/gtest/
gtest-test-part.h 52 kSuccess, // Succeeded.
89 bool passed() const { return type_ == kSuccess; }
92 bool failed() const { return type_ != kSuccess; }
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/
gtest-test-part.h 52 kSuccess, // Succeeded.
89 bool passed() const { return type_ == kSuccess; }
92 bool failed() const { return type_ != kSuccess; }
  /external/v8/testing/gtest/include/gtest/
gtest-test-part.h 52 kSuccess, // Succeeded.
91 bool passed() const { return type_ == kSuccess; }
94 bool failed() const { return type_ != kSuccess; }
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
gtest-test-part.h 52 kSuccess, // Succeeded.
91 bool passed() const { return type_ == kSuccess; }
94 bool failed() const { return type_ != kSuccess; }
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/
gtest-test-part.h 52 kSuccess, // Succeeded.
91 bool passed() const { return type_ == kSuccess; }
94 bool failed() const { return type_ != kSuccess; }
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/
gtest-test-part.h 52 kSuccess, // Succeeded.
91 bool passed() const { return type_ == kSuccess; }
94 bool failed() const { return type_ != kSuccess; }
  /system/nvram/core/
persistence.cpp 55 return storage::Status::kSuccess;
76 return storage::Status::kSuccess;
102 if (status != storage::Status::kSuccess) {
111 if (status != storage::Status::kSuccess) {
120 if (status != storage::Status::kSuccess) {
129 if (status != storage::Status::kSuccess) {
  /external/skia/src/codec/
SkBmpMaskCodec.cpp 41 if (kSuccess != result) {
50 return kSuccess;
72 return SkCodec::kSuccess;

Completed in 786 milliseconds

1 2 3 4 5 6 7 8 91011