Searched refs:box (Results 1 - 25 of 653) sorted by relevance

1234567891011>>

/external/clang/test/CodeGenCXX/
H A Dvirtual-destructor-synthesis.cpp3 struct box { struct
4 virtual ~box();
7 struct pile_box : public box {
8 pile_box(box *);
11 pile_box::pile_box(box *pp)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_box.h9 struct pipe_box *box )
11 box->x = x;
12 box->y = 0;
13 box->z = 0;
14 box->width = w;
15 box->height = 1;
16 box->depth = 1;
24 struct pipe_box *box )
26 box->x = x;
27 box
[all...]
H A Du_transfer.c14 const struct pipe_box *box,
28 if (box->x == 0 && box->width == resource->width0) {
38 box );
47 assert(box->height == 1);
48 assert(box->depth == 1);
50 memcpy(map, data, box->width);
56 for (i = 0; i < box->depth; i++) {
61 box->width,
62 box
10 u_default_transfer_inline_write( struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, const void *data, unsigned stride, unsigned layer_stride) argument
89 u_default_transfer_flush_region( struct pipe_context *pipe, struct pipe_transfer *transfer, const struct pipe_box *box) argument
97 u_default_get_transfer(struct pipe_context *context, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_box.h9 struct pipe_box *box )
11 box->x = x;
12 box->y = 0;
13 box->z = 0;
14 box->width = w;
15 box->height = 1;
16 box->depth = 1;
24 struct pipe_box *box )
26 box->x = x;
27 box
[all...]
H A Du_transfer.c14 const struct pipe_box *box,
28 if (box->x == 0 && box->width == resource->width0) {
38 box );
47 assert(box->height == 1);
48 assert(box->depth == 1);
50 memcpy(map, data, box->width);
56 for (i = 0; i < box->depth; i++) {
61 box->width,
62 box
10 u_default_transfer_inline_write( struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box, const void *data, unsigned stride, unsigned layer_stride) argument
89 u_default_transfer_flush_region( struct pipe_context *pipe, struct pipe_transfer *transfer, const struct pipe_box *box) argument
97 u_default_get_transfer(struct pipe_context *context, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatBoxTest.cpp38 FloatBox box(1, 2, 3, 4, 5, 6);
39 EXPECT_EQ(1, box.x());
40 EXPECT_EQ(2, box.y());
41 EXPECT_EQ(3, box.z());
42 EXPECT_EQ(4, box.width());
43 EXPECT_EQ(5, box.height());
44 EXPECT_EQ(6, box.depth());
45 EXPECT_EQ(5, box.right());
46 EXPECT_EQ(7, box.bottom());
47 EXPECT_EQ(9, box
79 FloatBox box; local
98 FloatBox box; local
113 FloatBox box; local
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DSampleTableBox.java44 for (Box box : boxes) {
45 if (box instanceof SampleDescriptionBox) {
46 return (SampleDescriptionBox) box;
53 for (Box box : boxes) {
54 if (box instanceof SampleSizeBox) {
55 return (SampleSizeBox) box;
62 for (Box box : boxes) {
63 if (box instanceof SampleToChunkBox) {
64 return (SampleToChunkBox) box;
71 for (Box box
[all...]
H A DMediaBox.java34 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) {
53 if (box instanceof HandlerBox) {
54 return (HandlerBox) box;
H A DMediaInformationBox.java22 * 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;
H A DTrackBox.java36 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/chromium-trace/trace-viewer/src/tracing/tracks/
H A Dtrace_model_track.css6 -webkit-box-flex: 1;
H A Dthread_track.css7 -webkit-box-orient: vertical;
8 display: -webkit-box;
H A Dheading_track.css7 -webkit-box-align: stretch;
8 -webkit-box-orient: horizontal;
9 display: -webkit-box;
15 -webkit-box-sizing: border-box;
18 box-sizing: border-box;
/external/chromium-trace/trace-viewer/src/about_tracing/
H A Dprofiling_view.css7 -webkit-box-flex: 1;
8 -webkit-box-orient: vertical;
9 display: -webkit-box;
18 -webkit-box-flex: 1;
19 display: -webkit-box;
23 -webkit-box-orient: vertical;
24 display: -webkit-box;
29 -webkit-box-flex: 1;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DsuggestBox.css31 .suggest-box-overlay {
41 .suggest-box-overlay .suggest-box-left-spacer {
45 .suggest-box-overlay .suggest-box-horizontal {
52 .suggest-box-overlay .suggest-box-top-spacer {
56 .suggest-box-overlay.under-anchor .suggest-box-top-spacer,
57 .suggest-box
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/
H A Dno_destinations_promo.css14 -webkit-box-orient: horizontal;
15 display: -webkit-box;
19 -webkit-box-flex: 1;
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
H A DTrackFragmentBox.java35 for (Box box : getBoxes()) {
36 if (box instanceof TrackFragmentHeaderBox) {
37 return (TrackFragmentHeaderBox) box;
/external/chromium_org/chrome/browser/resources/print_preview/settings/
H A Ddestination_settings.css16 #destination-settings .destination-settings-box {
17 -webkit-box-align: center;
18 display: -webkit-box;
22 .destination-settings-box.stale {
38 -webkit-box-flex: 1;
44 -webkit-box-orient: vertical;
45 -webkit-box-pack: center;
46 display: -webkit-box;
54 -webkit-box-orient: horizontal;
55 display: -webkit-box;
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
H A DPath.java36 public static String createPath(Box box) { argument
37 return createPath(box, "");
40 private static String createPath(Box box, String path) { argument
41 if (box instanceof IsoFile) {
44 List<?> boxesOfBoxType = box.getParent().getBoxes(box.getClass());
45 int index = boxesOfBoxType.indexOf(box);
46 path = String.format("/%s[%d]", box.getType(), index) + path;
48 return createPath(box.getParent(), path);
52 public static Box getPath(Box box, Strin argument
58 getPaths(Box box, String path) argument
111 isContained(Box box, String path) argument
[all...]
/external/pixman/test/
H A Dregion-contains-test.c28 print_box (pixman_box32_t *box) argument
30 printf (" %d %d %d %d\n", box->x1, box->y1, box->x2, box->y2);
96 crc32_box32 (uint32_t crc32, pixman_box32_t *box) argument
98 crc32 = compute_crc32_u32 (crc32, box->x1);
99 crc32 = compute_crc32_u32 (crc32, box->y1);
100 crc32 = compute_crc32_u32 (crc32, box->x2);
101 crc32 = compute_crc32_u32 (crc32, box
109 pixman_box32_t box; local
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
H A Djquery.isonscreen.js10 isOnScreen: function(box, container) {
12 for(var i in box){box[i] = parseFloat(box[i])};
24 if( box.left+box.width-container.left > 0 &&
25 box.left < container.width+container.left &&
26 box.top+box.height-container.top > 0 &&
27 box
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerScrollableArea.cpp94 Node* node = box().node();
109 if (inResizeMode() && !box().documentBeingDestroyed()) {
110 if (LocalFrame* frame = box().frame())
114 if (LocalFrame* frame = box().frame()) {
120 if (box().frame() && box().frame()->page()) {
121 if (ScrollingCoordinator* scrollingCoordinator = box().frame()->page()->scrollingCoordinator())
125 if (!box().documentBeingDestroyed()) {
126 Node* node = box().node();
131 if (LocalFrame* frame = box()
518 RenderBox& RenderLayerScrollableArea::box() const function in class:blink::RenderLayerScrollableArea
703 canHaveOverflowScrollbars(const RenderBox& box) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DVisiblePosition.cpp132 InlineBox* box; local
134 p.getInlineBoxAndOffset(m_affinity, primaryDirection, box, offset);
135 if (!box)
138 RenderObject* renderer = &box->renderer();
141 if ((renderer->isReplaced() || renderer->isBR()) && offset == box->caretRightmostOffset())
142 return box->isLeftToRightDirection() ? previousVisuallyDistinctCandidate(m_deepPosition) : nextVisuallyDistinctCandidate(m_deepPosition);
145 box = box->prevLeafChild();
146 if (!box)
148 renderer = &box
297 InlineBox* box; local
[all...]
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGSVG.cpp46 SkRect box; local
47 box.fLeft = SkScalarDiv(viewBox[0], width);
48 box.fTop = SkScalarDiv(viewBox[1], height);
49 box.fRight = SkScalarDiv(viewBox[2], width);
50 box.fBottom = SkScalarDiv(viewBox[3], height);
51 if (box.fLeft == 0 && box.fTop == 0 &&
52 box.fRight == SK_Scalar1 && box.fBottom == SK_Scalar1)
55 if (box
[all...]
/external/skia/src/svg/
H A DSkSVGSVG.cpp46 SkRect box; local
47 box.fLeft = SkScalarDiv(viewBox[0], width);
48 box.fTop = SkScalarDiv(viewBox[1], height);
49 box.fRight = SkScalarDiv(viewBox[2], width);
50 box.fBottom = SkScalarDiv(viewBox[3], height);
51 if (box.fLeft == 0 && box.fTop == 0 &&
52 box.fRight == SK_Scalar1 && box.fBottom == SK_Scalar1)
55 if (box
[all...]

Completed in 654 milliseconds

1234567891011>>