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

1 2

  /external/chromium_org/third_party/skia/src/ports/
SkMemory_malloc.cpp 21 static inline void* throw_on_failure(size_t size, void* p) { function
44 return throw_on_failure(size, realloc(addr, size));
56 return throw_on_failure(size, p);
67 return throw_on_failure(size, sk_calloc(size));
  /external/skia/src/ports/
SkMemory_malloc.cpp 12 static inline void* throw_on_failure(size_t size, void* p) { function
35 return throw_on_failure(size, realloc(addr, size));
47 return throw_on_failure(size, p);
58 return throw_on_failure(size, sk_calloc(size));
  /external/chromium_org/skia/ext/
SkMemory_new_handler.cpp 21 static inline void* throw_on_failure(size_t size, void* p) { function
40 return throw_on_failure(size, realloc(addr, size));
50 return throw_on_failure(size, malloc(size));
81 return throw_on_failure(size, calloc(size, 1));
  /external/chromium_org/testing/gtest/test/
gtest_throw_on_failure_ex_test.cc 54 testing::GTEST_FLAG(throw_on_failure) = true;
gtest_env_var_test_.cc 104 if (strcmp(flag, "throw_on_failure") == 0) {
105 cout << GTEST_FLAG(throw_on_failure);
gtest_unittest.cc 55 || testing::GTEST_FLAG(throw_on_failure);
220 using testing::GTEST_FLAG(throw_on_failure);
5533 bool throw_on_failure; member in struct:testing::Flags
    [all...]
  /external/gtest/test/
gtest_throw_on_failure_ex_test.cc 54 testing::GTEST_FLAG(throw_on_failure) = true;
gtest_env_var_test_.cc 104 if (strcmp(flag, "throw_on_failure") == 0) {
105 cout << GTEST_FLAG(throw_on_failure);
gtest_unittest.cc 55 || testing::GTEST_FLAG(throw_on_failure);
220 using testing::GTEST_FLAG(throw_on_failure);
5424 bool throw_on_failure; member in struct:testing::Flags
    [all...]
  /external/protobuf/gtest/test/
gtest_throw_on_failure_ex_test.cc 54 testing::GTEST_FLAG(throw_on_failure) = true;
gtest_env_var_test_.cc 104 if (strcmp(flag, "throw_on_failure") == 0) {
105 cout << GTEST_FLAG(throw_on_failure);
gtest_unittest.cc 54 || testing::GTEST_FLAG(throw_on_failure);
137 using testing::GTEST_FLAG(throw_on_failure);
5330 bool throw_on_failure; member in struct:testing::Flags
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest_throw_on_failure_ex_test.cc 54 testing::GTEST_FLAG(throw_on_failure) = true;
gtest_env_var_test_.cc 104 if (strcmp(flag, "throw_on_failure") == 0) {
105 cout << GTEST_FLAG(throw_on_failure);
gtest_unittest.cc 55 || testing::GTEST_FLAG(throw_on_failure);
220 using testing::GTEST_FLAG(throw_on_failure);
5433 bool throw_on_failure; member in struct:testing::Flags
    [all...]
  /art/runtime/mirror/
class-inl.h 247 template <bool throw_on_failure, bool use_referrers_cache>
261 if (throw_on_failure) {
272 if (throw_on_failure) {
278 template <bool throw_on_failure, bool use_referrers_cache, InvokeType throw_invoke_type>
281 COMPILE_ASSERT(throw_on_failure || throw_invoke_type == kStatic, non_default_throw_invoke_type);
293 if (throw_on_failure) {
305 if (throw_on_failure) {
class.h     [all...]
  /external/chromium_org/testing/gtest/src/
gtest-internal-inl.h 102 const char kThrowOnFailureFlag[] = "throw_on_failure";
181 throw_on_failure_ = GTEST_FLAG(throw_on_failure);
202 GTEST_FLAG(throw_on_failure) = throw_on_failure_;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-internal-inl.h 97 const char kThrowOnFailureFlag[] = "throw_on_failure";
170 throw_on_failure_ = GTEST_FLAG(throw_on_failure);
191 GTEST_FLAG(throw_on_failure) = throw_on_failure_;
    [all...]
  /external/gtest/src/
gtest-internal-inl.h 102 const char kThrowOnFailureFlag[] = "throw_on_failure";
181 throw_on_failure_ = GTEST_FLAG(throw_on_failure);
202 GTEST_FLAG(throw_on_failure) = throw_on_failure_;
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-internal-inl.h 97 const char kThrowOnFailureFlag[] = "throw_on_failure";
170 throw_on_failure_ = GTEST_FLAG(throw_on_failure);
191 GTEST_FLAG(throw_on_failure) = throw_on_failure_;
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-internal-inl.h 97 const char kThrowOnFailureFlag[] = "throw_on_failure";
170 throw_on_failure_ = GTEST_FLAG(throw_on_failure);
191 GTEST_FLAG(throw_on_failure) = throw_on_failure_;
    [all...]
  /external/protobuf/gtest/src/
gtest-internal-inl.h 93 const char kThrowOnFailureFlag[] = "throw_on_failure";
147 throw_on_failure_ = GTEST_FLAG(throw_on_failure);
166 GTEST_FLAG(throw_on_failure) = throw_on_failure_;
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-internal-inl.h 102 const char kThrowOnFailureFlag[] = "throw_on_failure";
181 throw_on_failure_ = GTEST_FLAG(throw_on_failure);
202 GTEST_FLAG(throw_on_failure) = throw_on_failure_;
    [all...]
  /external/chromium_org/testing/gtest/include/gtest/
gtest.h 139 GTEST_DECLARE_bool_(throw_on_failure);
    [all...]

Completed in 688 milliseconds

1 2