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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
virtual-destructor-synthesis.cpp 3 struct box { struct
4 virtual ~box();
7 struct pile_box : public box {
8 pile_box(box *);
11 pile_box::pile_box(box *pp)
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
SampleTableBox.java 25 * If the track that contains the Sample Table Box references no data, then the Sample Table Box does not need
27 * If the track that the Sample Table Box is contained in does reference data, then the following sub-boxes are
29 * Description Box shall contain at least one entry. A Sample Description Box is required because it contains the
30 * data reference index field which indicates which Data Reference Box to use to retrieve the media samples.
32 * Sample Box is optional. If the Sync Sample Box is not present, all samples are sync samples.<br>
34 * Box.
44 for (Box box : boxes)
81 Box box = boxes.get(i); local
    [all...]
MediaBox.java 34 for (Box box : boxes) {
35 if (box instanceof MediaInformationBox) {
36 return (MediaInformationBox) box;
43 for (Box box : boxes) {
44 if (box instanceof MediaHeaderBox) {
45 return (MediaHeaderBox) box;
52 for (Box box : boxes)
    [all...]
MediaInformationBox.java 22 * This box contains all the objects that declare characteristic information of the media in the track.
32 for (Box box : boxes) {
33 if (box instanceof SampleTableBox) {
34 return (SampleTableBox) box;
41 for (Box box : boxes) {
42 if (box instanceof AbstractMediaHeaderBox) {
43 return (AbstractMediaHeaderBox) box;
TrackBox.java 36 for (Box box : boxes) {
37 if (box instanceof TrackHeaderBox) {
38 return (TrackHeaderBox) box;
63 for (Box box : boxes) {
64 if (box instanceof MediaBox) {
65 return (MediaBox) box;
  /external/syslinux/gpxe/src/hci/mucurses/widgets/
editbox.c 27 * Editable text box widget
34 * Initialise text box widget
36 * @v box Editable text box widget
45 void init_editbox ( struct edit_box *box, char *buf, size_t len,
48 memset ( box, 0, sizeof ( *box ) );
49 box->string.buf = buf;
50 box->string.len = len;
51 box->string.cursor = strlen ( buf )
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_box.h 8 u_box_1d(unsigned x, unsigned w, struct pipe_box *box)
10 box->x = x;
11 box->y = 0;
12 box->z = 0;
13 box->width = w;
14 box->height = 1;
15 box->depth = 1;
19 u_box_2d(unsigned x,unsigned y, unsigned w, unsigned h, struct pipe_box *box)
21 box->x = x;
22 box->y = y
    [all...]
u_transfer.c 13 struct pipe_box box; local
28 u_box_1d(offset, size, &box);
30 map = pipe->transfer_map(pipe, resource, 0, usage, &box, &transfer);
42 const struct pipe_box *box,
63 box, &transfer);
72 box->width,
73 box->height,
74 box->depth,
95 const struct pipe_box *box)
134 const struct pipe_box *box,
    [all...]
u_gen_mipmap.c 107 blit.src.box.width = u_minify(pt->width0, blit.src.level);
108 blit.src.box.height = u_minify(pt->height0, blit.src.level);
110 blit.dst.box.width = u_minify(pt->width0, blit.dst.level);
111 blit.dst.box.height = u_minify(pt->height0, blit.dst.level);
115 blit.src.box.z = blit.dst.box.z = 0;
116 blit.src.box.depth = util_max_layer(pt, blit.src.level)+1;
117 blit.dst.box.depth = util_max_layer(pt, blit.dst.level)+1;
120 blit.src.box.z = blit.dst.box.z = first_layer
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
TrackFragmentBox.java 20 import com.coremedia.iso.boxes.Box;
23 * aligned(8) class TrackFragmentBox extends Box('traf'){
35 for (Box box : getBoxes()) {
36 if (box instanceof TrackFragmentHeaderBox) {
37 return (TrackFragmentHeaderBox) box;
  /external/syslinux/gpxe/src/include/gpxe/
editbox.h 6 * Editable text box widget
15 /** An editable text box widget */
33 /** Editable text box widget flags */
39 extern void init_editbox ( struct edit_box *box, char *buf, size_t len,
43 extern void draw_editbox ( struct edit_box *box ) __nonnull;
44 static inline int edit_editbox ( struct edit_box *box, int key ) __nonnull;
47 * Edit text box widget
49 * @v box Editable text box widget
57 static inline int edit_editbox ( struct edit_box *box, int key )
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
Path.java 20 import com.coremedia.iso.boxes.Box;
36 public static String createPath(Box box) {
37 return createPath(box, "");
40 private static String createPath(Box box, String path) {
41 if (box instanceof IsoFile) {
44 List<?> boxesOfBoxType = box.getParent().getBoxes(box.getClass());
45 int index = boxesOfBoxType.indexOf(box);
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DrawRectFilter.java 71 addMaskedInputPort("box", ObjectFormat.fromClass(Quad.class, FrameFormat.TARGET_SIMPLE));
89 Frame boxFrame = pullInput("box");
91 // Get the box
92 Quad box = (Quad)boxFrame.getObjectValue(); local
93 box = box.scaled(2.0f).translated(-1.0f, -1.0f);
100 renderBox(box);
109 private void renderBox(Quad box) {
114 float[] vertexValues = { box.p0.x, box.p0.y
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_blit.c 68 if (info->dst.box.x != info->src.box.x ||
69 info->dst.box.y != info->src.box.y ||
70 info->dst.box.width != info->src.box.width ||
71 info->dst.box.height != info->src.box.height) {
79 if (is_tile_unaligned(info->dst.box.x, tile_width) ||
80 is_tile_unaligned(info->dst.box.y, tile_height) |
    [all...]
vc4_tiling.c 105 check_box_utile_alignment(const struct pipe_box *box, int cpp)
107 assert(!(box->x & (vc4_utile_width(cpp) - 1)));
108 assert(!(box->y & (vc4_utile_height(cpp) - 1)));
109 assert(!(box->width & (vc4_utile_width(cpp) - 1)));
110 assert(!(box->height & (vc4_utile_height(cpp) - 1)));
116 int cpp, const struct pipe_box *box)
120 uint32_t xstart = box->x;
121 uint32_t ystart = box->y;
123 for (uint32_t y = 0; y < box->height; y += utile_h) {
124 for (int x = 0; x < box->width; x += utile_w)
    [all...]
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_transfer.c 42 /* Compute offset into a 1D/2D/3D buffer of a certain box.
43 * This box must be aligned to the block width and height of the
46 etna_compute_offset(enum pipe_format format, const struct pipe_box *box,
49 return box->z * layer_stride +
50 box->y / util_format_get_blockheight(format) * stride +
51 box->x / util_format_get_blockwidth(format) *
88 mapped + ptrans->box.z * res_level->layer_stride,
89 trans->staging, ptrans->box.x, ptrans->box.y,
90 res_level->stride, ptrans->box.width, ptrans->box.height
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_transfer.c 60 src, transfer->level, &transfer->box);
69 blit.src.box = transfer->box;
72 blit.dst.box.width = transfer->box.width;
73 blit.dst.box.height = transfer->box.height;
74 blit.dst.box.depth = transfer->box.depth;
91 transfer->box.width, transfer->box.height, transfer->box.depth
    [all...]
r300_transfer.h 36 const struct pipe_box *box,
  /external/fio/
ghelpers.h 4 GtkWidget *new_combo_entry_in_frame(GtkWidget *box, const char *label);
5 GtkWidget *new_info_entry_in_frame(GtkWidget *box, const char *label);
6 GtkWidget *new_info_label_in_frame(GtkWidget *box, const char *label);
7 GtkWidget *new_info_entry_in_frame_rgb(GtkWidget *box, const char *label,
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/
IMETest.java 14 import javax.swing.Box;
26 Box box = Box.createVerticalBox(); local
27 box.add(new JTextField(sampleText));
28 box.add(new JTextField(sampleText));
29 jf.getContentPane().add(box);
  /external/python/cpython2/Demo/tix/samples/
BtnBox.py 14 # group of TK buttons. You can use it to manage the buttons in a dialog box,
21 # Create the label on the top of the dialog box
24 anchor=Tix.CENTER, text='This dialog box is\n a demonstration of the\n tixButtonBox widget')
26 # Create the button box and add a few buttons in it. Set the
33 box = Tix.ButtonBox(w, orientation=Tix.HORIZONTAL)
34 box.add('ok', text='OK', underline=0, width=5,
36 box.add('close', text='Cancel', underline=0, width=5,
38 box.pack(side=Tix.BOTTOM, fill=Tix.X)
  /test/vti/dashboard/src/main/webapp/css/
show_profiling_overview.css 16 .row.card.box-plot {
  /external/eigen/test/
geo_alignedbox.cpp 118 BoxType box( m, M );
121 VERIFY_IS_APPROX(sides, box.sizes() );
122 VERIFY_IS_APPROX(sides[1], box.sizes()[1] );
123 VERIFY_IS_APPROX(sides[1], box.sizes().maxCoeff() );
124 VERIFY_IS_APPROX(sides[0], box.sizes().minCoeff() );
126 VERIFY_IS_APPROX( 14.0f, box.volume() );
127 VERIFY_IS_APPROX( 53.0f, box.diagonal().squaredNorm() );
128 VERIFY_IS_APPROX( std::sqrt( 53.0f ), box.diagonal().norm() );
130 VERIFY_IS_APPROX( m, box.corner( BoxType::BottomLeft ) );
131 VERIFY_IS_APPROX( M, box.corner( BoxType::TopRight ) )
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_resource.c 122 blit->dst.resource, blit->dst.level, blit->dst.box.x,
123 blit->dst.box.y, blit->dst.box.z,
124 blit->src.resource, blit->src.level, &blit->src.box);
130 unsigned level, unsigned usage, const struct pipe_box *box)
162 box->x, box->y, box->z, box->width, box->height, box->depth)
415 struct pipe_box box; local
    [all...]
  /external/toybox/kconfig/lxdialog/
textbox.c 2 * textbox.c -- implements the text box
38 static void refresh_text_box(WINDOW *dialog, WINDOW *box, int boxh, int boxw,
41 print_page(box, boxh, boxw);
49 * Display text from a file in a dialog box.
57 WINDOW *dialog, *box; local
85 /* center dialog box on screen */
94 /* Create window for box region, used for scrolling text */
97 box = subwin(dialog, boxh, boxw, y + 1, x + 1);
98 wattrset(box, dlg.dialog.atr);
99 wbkgdset(box, dlg.dialog.atr & A_COLOR)
    [all...]

Completed in 797 milliseconds

1 2 3 4 5 6 7 8 91011>>