HomeSort by relevance Sort by last modified time
    Searched full:resize (Results 1 - 25 of 5168) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/tests/r_resize_inode/
name 1 filesystem resize with a resize_inode present
  /external/e2fsprogs/tests/f_dup_resize/
name 1 blocks claimed by the resize inode and another inode
  /external/e2fsprogs/tests/r_move_itable/
name 1 filesystem resize which requires moving the inode table
  /frameworks/native/services/surfaceflinger/tests/resize/
Android.mk 5 resize.cpp
13 LOCAL_MODULE:= test-resize
  /external/eigen/doc/snippets/
Matrix_resize_NoChange_int.cpp 2 m.resize(NoChange, 5);
Matrix_resize_int_NoChange.cpp 2 m.resize(5, NoChange);
Matrix_resize_int_int.cpp 4 cout << "let's resize m to 3x2. This is a conservative resizing because 2*3==3*2." << endl;
5 m.resize(3,2);
7 cout << "now let's resize m to size 2x2. This is NOT a conservative resizing, so it becomes uninitialized:" << endl;
8 m.resize(2,2);
Matrix_resize_int.cpp 2 v.resize(3);
4 w.resize(3); // this is legal, but has no effect
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/css-values/
dillo 19 e-resize
48 ne-resize
52 n-resize
53 nw-resize
62 se-resize
67 s-resize
71 sw-resize
89 w-resize
  /external/eigen/doc/examples/
tut_matrix_resize_fixed_size.cpp 9 m.resize(4,4); // no operation
tut_matrix_resize.cpp 9 m.resize(4,3);
14 v.resize(5);
  /external/llvm/unittests/ADT/
BitVectorTest.cpp 38 Vec.resize(5, true);
46 Vec.resize(11);
70 Vec.resize(23, true);
71 Vec.resize(25, false);
72 Vec.resize(26, true);
73 Vec.resize(29, false);
74 Vec.resize(33, true);
75 Vec.resize(57, false);
87 Vec.resize(61, false);
91 Alt.resize(6, true)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/vector/vector.capacity/
resize_size.pass.cpp 12 // void resize(size_type sz);
24 v.resize(50);
27 v.resize(200);
33 v.resize(50);
36 v.resize(200);
43 v.resize(50);
46 v.resize(200);
52 v.resize(50);
55 v.resize(200);
  /external/e2fsprogs/po/
POTFILES.in 42 resize/extent.c
43 resize/main.c
44 resize/online.c
45 resize/resize2fs.c
46 resize/sim_progress.c
  /frameworks/av/libvideoeditor/vss/common/inc/
M4VIFI_FiltersAPI.h 233 /** Resize Bilinear RGB888toRGB888 */
237 /** Resize Bilinear RGB565toRGB565 */
241 /** Resize Bilinear YUV420toYUV420 */
263 /** Resize Bilinear YUV420toRGB565 */
266 /** Resize Bilinear YUV420toBGR565 */
269 /** Resize Bilinear YUV420toRGB565 with rotation +90 or -90 */
276 /** Resize Bilinear YUV420toBGR565 with rotation +90 or -90 */
324 /** Resize Bilinear YUV888toYUV888 */
328 /** Resize Bilinear YUV565toYUV565 */
331 /** Resize Bilinear YUV420toYUV420 *
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
fast_resize_view.mm 11 // Lays out this views subviews. If fast resize mode is on, does not resize any
12 // subviews and instead pegs them to the top left. If fast resize mode is off,
21 // Force a relayout when coming out of fast resize mode.
31 // If we are in fast resize mode, our subviews may not completely cover our
32 // bounds, so we fill with white. If we are not in fast resize mode, we do
fast_resize_view_unittest.mm 39 // Turn fast resize mode on and change the view's frame. This time, the child
40 // should not resize, but it should be anchored to the top left.
47 // Another resize with fast resize mode on.
53 // Turn fast resize mode off. This should initiate an immediate resize, even
  /external/chromium/base/
base64.cc 13 temp.resize(modp_b64_encode_len(input.size())); // makes room for null byte
21 temp.resize(output_size); // strips off null byte
28 temp.resize(modp_b64_decode_len(input.size()));
36 temp.resize(output_size);
  /ndk/sources/cxx-stl/llvm-libc++/src/
string.cpp 372 s.resize(s.capacity());
378 s.resize(n2);
381 s.resize(n2);
389 s.resize(s.capacity());
395 s.resize(n2);
398 s.resize(n2);
406 s.resize(s.capacity());
412 s.resize(n2);
415 s.resize(n2);
423 s.resize(s.capacity())
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_resize.c 24 /* Resize event handling code for SDL */
31 /* Keep the last resize event so we don't post duplicates */
54 /* Pull out all old resize events */
63 event.resize.w = w;
64 event.resize.h = h;
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/numarray/template.valarray/valarray.members/
resize.pass.cpp 14 // void resize(size_t n, value_type x = value_type());
26 v1.resize(8);
30 v1.resize(0);
32 v1.resize(80);
36 v1.resize(40);
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
ShapeTest.java 42 mockShape.resize(200f, 300f);
47 mockShape.resize(0f, 0f);
51 mockShape.resize(Float.MAX_VALUE, Float.MAX_VALUE);
55 mockShape.resize(-1, -1);
64 mockShape.resize(200f, 300f);
69 mockShape.resize(200f, 300f);
74 mockShape.resize(100f, 200f);
80 shape.resize(100f, 200f);
102 shape.resize(TEST_WIDTH, TEST_HEIGHT);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.modifiers/
resize_size.pass.cpp 12 // void resize(size_type n);
25 c.resize(0);
27 c.resize(10);
29 c.resize(20);
31 c.resize(5);
33 c.resize(0);
42 c.resize(3);
48 c.resize(6);
57 c.resize(6);
  /external/webkit/Source/WebCore/manual-tests/
cursor.html 10 <div style="width: 20px; height: 20px; margin: 10px; background: #ddd; cursor: w-resize">w</div>
11 <div style="width: 20px; height: 20px; margin: 10px; background: #ddd; cursor: e-resize">e</div>
12 <div style="width: 20px; height: 20px; margin: 10px; background: #ddd; cursor: n-resize">n</div>
13 <div style="width: 20px; height: 20px; margin: 10px; background: #ddd; cursor: s-resize">s</div>
14 <div style="width: 20px; height: 20px; margin: 10px; background: #ddd; cursor: nw-resize">nw</div>
15 <div style="width: 20px; height: 20px; margin: 10px; background: #ddd; cursor: ne-resize">ne</div>
16 <div style="width: 20px; height: 20px; margin: 10px; background: #ddd; cursor: sw-resize">sw</div>
17 <div style="width: 20px; height: 20px; margin: 10px; background: #ddd; cursor: se-resize">se</div>
18 <div style="width: 20px; height: 20px; margin: 10px; background: #ddd; cursor: ns-resize">ns</div>
19 <div style="width: 20px; height: 20px; margin: 10px; background: #ddd; cursor: ew-resize">ew</div
    [all...]
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_ResizeEvent.3 3 SDL_ResizeEvent \- Window resize event structure
24 When \fBSDL_RESIZABLE\fP is passed as a \fBflag\fR to \fI\fBSDL_SetVideoMode\fP\fR the user is allowed to resize the applications window\&. When the window is resized an \fBSDL_VIDEORESIZE\fP is report, with the new window width and height values stored in \fBw\fR and \fBh\fR, respectively\&. When an \fBSDL_VIDEORESIZE\fP is received the window should be resized to the new dimensions using \fI\fBSDL_SetVideoMode\fP\fR\&.

Completed in 891 milliseconds

1 2 3 4 5 6 7 8 91011>>