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

1 2 3 4 5 6

  /external/skia/src/core/
SkBitmapScaler.h 34 * specified resize-method and write the results into the pixels pointed to by dst.
36 static bool Resize(const SkPixmap& dst, const SkPixmap& src, ResizeMethod method);
40 * the pixmap version of Resize.
42 static bool Resize(SkBitmap* result, const SkPixmap& src, ResizeMethod method,
  /frameworks/base/media/mca/filterfw/native/core/
native_frame.h 52 // Resize the frame. You can only resize to a size that fits within the frame's capacity.
53 // Returns true if the resize was successful.
54 bool Resize(int newSize);
native_frame.cpp 52 bool NativeFrame::Resize(int newSize) {
  /prebuilts/ndk/r11/sources/android/support/tests/minitest/
minitest.cc 27 Resize(len);
34 Resize(old_size + other.size_);
42 Resize(old_size + len);
48 Resize(size_ + 1);
105 void String::Resize(size_t new_size) {
130 // Note: Resize(n) allocates at least n+1 bytes.
131 result.Resize(100);
141 result.Resize(result.size() * 2);
  /prebuilts/ndk/r13/sources/android/support/tests/minitest/
minitest.cc 27 Resize(len);
34 Resize(old_size + other.size_);
42 Resize(old_size + len);
48 Resize(size_ + 1);
105 void String::Resize(size_t new_size) {
130 // Note: Resize(n) allocates at least n+1 bytes.
131 result.Resize(100);
141 result.Resize(result.size() * 2);
  /external/webrtc/webrtc/test/linux/
glx_renderer.h 36 void Resize(size_t width, size_t height);
glx_renderer.cc 89 Resize(width_, height_);
119 void GlxRenderer::Resize(size_t width, size_t height) {
150 Resize(static_cast<size_t>(frame.width()),
  /system/nvram/messages/include/nvram/messages/
blob.h 57 // Resize the blob to |size|. Existing data within the new |size| limit is
63 // backing this |Blob|. You must call |data()| after |Resize()| returns to
65 bool Resize(size_t size) NVRAM_WARN_UNUSED_RESULT;
vector.h 90 bool Resize(size_t size) NVRAM_WARN_UNUSED_RESULT {
145 if (!Resize(size_ + 1)) {
154 if (!Resize(size_ + 1)) {
  /system/vold/fs/
Ext4.h 35 status_t Resize(const std::string& source, unsigned long numSectors);
  /system/nvram/core/tests/
nvram_manager_test.cpp 42 ASSERT_TRUE(header.allocated_indices.Resize(1));
84 ASSERT_TRUE(space.contents.Resize(10));
88 ASSERT_TRUE(space_blob.Resize(space_blob.size() + 10));
94 ASSERT_TRUE(header.allocated_indices.Resize(1));
99 ASSERT_TRUE(header_blob.Resize(header_blob.size() + 10));
124 ASSERT_TRUE(space.contents.Resize(10));
126 ASSERT_TRUE(space.contents.Resize(20));
133 ASSERT_TRUE(header.allocated_indices.Resize(3));
169 ASSERT_TRUE(space.contents.Resize(10));
179 ASSERT_TRUE(header.allocated_indices.Resize(2))
    [all...]
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
Resize.java 22 public class Resize extends TestBase {
29 public Resize(boolean useIntrinsic) {
  /external/gemmlowp/test/
test.h 67 Matrix(int rows, int cols) : Map(nullptr, 0, 0, 0) { Resize(rows, cols); }
72 Resize(other.rows_, other.cols_);
82 void Resize(int rows, int cols) {
86 storage.resize(size());
  /external/libbrillo/brillo/streams/
memory_containers.cc 64 if (GetSize() < new_size && !Resize(new_size, error))
84 bool ContiguousReadOnlyBufferBase::Resize(size_t /* new_size */,
106 bool StringPtr::Resize(size_t new_size, ErrorPtr* /* error */) {
107 string_ptr_->resize(new_size);
memory_containers_unittest.cc 29 MOCK_METHOD2(Resize, bool(size_t, ErrorPtr*));
144 EXPECT_CALL(container_, Resize(130, _)).WillOnce(Return(true));
159 EXPECT_CALL(container_, Resize(160, _)).WillOnce(Return(true));
172 Error::AddTo(error, FROM_HERE, "domain", "write_error", "resize error");
178 EXPECT_CALL(container_, Resize(160, _))
188 EXPECT_EQ("resize error", error->GetMessage());
199 EXPECT_CALL(container_, Resize(160, _)).WillOnce(Return(true));
  /external/libmojo/mojo/public/cpp/bindings/
array_traits_standard.h 35 static bool Resize(Array<T>& input, size_t size) {
36 input.resize(size);
array_traits_wtf.h 32 static bool Resize(WTFArray<U>& input, size_t size) {
33 input.resize(size);
array_traits_wtf_vector.h 39 static bool Resize(WTF::Vector<U>& input, size_t size) {
40 input.resize(size);
  /external/webrtc/webrtc/test/win/
d3d_renderer.h 39 void Resize(size_t width, size_t height);
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
matrix.h 72 Resize();
73 scratch_data_.resize(num_rows_ * num_columns_);
74 scratch_elements_.resize(num_rows_);
81 scratch_data_.resize(num_rows_ * num_columns_);
82 scratch_elements_.resize(num_rows_);
94 Resize(num_rows, num_columns);
101 Resize(1, num_rows);
109 void Resize(size_t num_rows, size_t num_columns) {
113 Resize();
136 Resize(num_columns_, num_rows_)
    [all...]
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
thread_local_buffer.h 58 static void Resize(std::size_t size) {
59 PDX_TRACE_NAME("ThreadLocalBuffer::Resize");
61 buffer_->resize(size);
87 Resize(size);
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
Resize.java 31 public class Resize extends TestBase {
40 public Resize(boolean useIntrinsic) {
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
Resize.java 31 public class Resize extends TestBase {
40 public Resize(boolean useIntrinsic) {
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
stack.h 34 // Do it lazily when first Push() -> Expand() -> Resize().
105 Resize(GetSize());
166 Resize(newCapacity);
169 void Resize(size_t newCapacity) {
  /external/icu/icu4c/source/i18n/
collationkeys.h 46 if (appended_ < capacity_ || Resize(1, appended_)) {
73 virtual UBool Resize(int32_t appendCapacity, int32_t length) = 0;

Completed in 274 milliseconds

1 2 3 4 5 6