Searched defs:throw_on_failure (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/skia/ext/
H A DSkMemory_new_handler.cpp21 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/third_party/skia/src/ports/
H A DSkMemory_malloc.cpp21 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/
H A DSkMemory_malloc.cpp12 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/testing/gtest/test/
H A Dgtest_unittest.cc55 || testing::GTEST_FLAG(throw_on_failure);
220 using testing::GTEST_FLAG(throw_on_failure);
1545 GTEST_FLAG(throw_on_failure) = false;
1572 EXPECT_FALSE(GTEST_FLAG(throw_on_failure));
1588 GTEST_FLAG(throw_on_failure) = true;
5403 throw_on_failure(false) {}
5513 static Flags ThrowOnFailure(bool throw_on_failure) { argument
5515 flags.throw_on_failure = throw_on_failure;
5533 bool throw_on_failure; member in struct:testing::Flags
[all...]
/external/gtest/test/
H A Dgtest_unittest.cc55 || testing::GTEST_FLAG(throw_on_failure);
220 using testing::GTEST_FLAG(throw_on_failure);
1552 GTEST_FLAG(throw_on_failure) = false;
1579 EXPECT_FALSE(GTEST_FLAG(throw_on_failure));
1595 GTEST_FLAG(throw_on_failure) = true;
5294 throw_on_failure(false) {}
5404 static Flags ThrowOnFailure(bool throw_on_failure) { argument
5406 flags.throw_on_failure = throw_on_failure;
5424 bool throw_on_failure; member in struct:testing::Flags
[all...]
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc54 || testing::GTEST_FLAG(throw_on_failure);
137 using testing::GTEST_FLAG(throw_on_failure);
2025 GTEST_FLAG(throw_on_failure) = false;
2050 EXPECT_FALSE(GTEST_FLAG(throw_on_failure));
2064 GTEST_FLAG(throw_on_failure) = true;
5218 throw_on_failure(false) {}
5312 static Flags ThrowOnFailure(bool throw_on_failure) { argument
5314 flags.throw_on_failure = throw_on_failure;
5330 bool throw_on_failure; member in struct:testing::Flags
[all...]

Completed in 6972 milliseconds