HomeSort by relevance Sort by last modified time
    Searched defs:box (Results 1 - 25 of 337) 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/syslinux/gpxe/src/hci/mucurses/
edging.c 20 int box ( WINDOW *win, chtype verch, chtype horch ) { function
  /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/mesa3d/src/gallium/drivers/virgl/
virgl_resource.c 90 struct pipe_box box; local
97 u_box_1d(offset, size, &box);
98 virgl_transfer_inline_write(pipe, resource, 0, usage, &box, data, 0, 0);
virgl_query.c 115 struct pipe_box box; local
118 u_box_1d(0, 4, &box);
120 &box, &qs, 0, 0);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
AbstractBoxParser.java 18 import com.coremedia.iso.boxes.Box;
31 * This BoxParser handles the basic stuff like reading size and extracting box type.
37 public abstract Box createBox(String type, byte[] userType, String parent);
40 * Parses the next size and type, creates a box instance and parses the box's content.
43 * @param parent the current box's parent (null if no parent)
44 * @return the box just parsed
47 public Box parseBox(ReadableByteChannel byteChannel, ContainerBox parent) throws IOException {
74 throw new RuntimeException("Only FileChannel inputs may use size == 0 (box reaches to the end of file)");
87 Box box = createBox(type, usertype, parent.getType()) local
    [all...]
IsoFile.java 20 import com.coremedia.iso.boxes.Box;
31 * The most upper container for ISO Boxes. It is a container box that is a file.
85 Box box = boxParser.parseBox(byteChannel, this); local
86 if (box != null) {
87 // System.err.println(box.getType());
88 boxes.add(box);
149 for (Box box : boxes) {
150 size += box.getSize()
    [all...]
  /packages/services/Telephony/testapps/TelephonyRegistryTestApp/src/com/android/phone/testapps/telephonyregistry/
TelephonyRegistryTestApp.java 95 CheckBox box = new CheckBox(this); local
96 box.setText(EVENTS.valueAt(i));
98 box.setOnCheckedChangeListener((buttonView, isChecked) -> {
105 eventContainer.addView(box);
  /external/mesa3d/src/gallium/auxiliary/util/
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_upload_mgr.c 96 struct pipe_box *box = &upload->transfer->box; local
98 if (!upload->map_persistent && (int) upload->offset > box->x) {
100 box->x, upload->offset - box->x);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
DeviceProfilesSettingsTest.java 99 CheckBox box = local
101 assertThat(box).isNotNull();
102 assertThat(box.getVisibility()).isEqualTo(View.VISIBLE);
103 assertThat(box.isEnabled()).isTrue();
104 assertThat(box.isChecked()).isTrue();
106 box.performClick();
108 box.performClick();
123 CheckBox box = local
125 assertThat(box).isNotNull();
126 assertThat(box.getVisibility()).isEqualTo(View.VISIBLE)
196 CheckBox box = local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/nine/
volumetexture9.c 228 struct pipe_box box; local
229 d3dbox_to_pipe_box(&box, pDirtyBox);
230 u_box_union_3d(&This->dirty_box, &This->dirty_box, &box);
buffer9.c 211 struct pipe_box box; local
233 u_box_1d(OffsetToLock, SizeToLock, &box);
242 This->managed.dirty_box = box;
246 u_box_union_2d(&This->managed.dirty_box, &This->managed.dirty_box, &box);
375 usage, &box, &This->maps[This->nmaps].transfer);
380 " box.x = %u\n"
381 " box.width = %u\n",
382 usage, box.x, box.width);
cubetexture9.c 291 struct pipe_box box; local
292 rect_to_pipe_box_clamp(&box, pDirtyRect);
294 &box);
texture9.c 336 struct pipe_box box; local
337 rect_to_pipe_box_clamp(&box, pDirtyRect);
338 u_box_union_2d(&This->dirty_rect, &This->dirty_rect, &box);
  /external/mockito/src/test/java/org/mockito/internal/invocation/
InvocationMarkerTest.java 38 final AtomicReference<Invocation> box = new AtomicReference<Invocation>(); local
41 box.set(i);
48 assertEquals(i, box.get());
  /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...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DrawOverlayFilter.java 46 addMaskedInputPort("box", ObjectFormat.fromClass(Quad.class, FrameFormat.TARGET_SIMPLE));
65 Frame boxFrame = pullInput("box");
67 // Get the box
68 Quad box = (Quad)boxFrame.getObjectValue(); local
69 box = box.translated(1.0f, 1.0f).scaled(2.0f);
71 mProgram.setTargetRegion(box);
  /system/update_engine/update_manager/
boxed_value_unittest.cc 70 BoxedValue* box = new BoxedValue(deleter_marker); local
72 delete box;
80 BoxedValue* box = new BoxedValue(deleter_marker); local
81 BoxedValue* new_box = new BoxedValue(std::move(*box));
82 // box is now undefined but valid.
83 delete box;
  /cts/tests/tests/gesture/src/android/gesture/cts/
GestureStrokeTest.java 96 // expect a square bounding box, starting at LINE_START_POINT and bounded by
111 OrientedBoundingBox box = line.computeOrientedBoundingBox(); local
113 assertEquals(LineGestureStrokeHelper.LINE_MIDWAY_POINT, box.centerX);
114 assertEquals(LineGestureStrokeHelper.LINE_MIDWAY_POINT, box.centerY);
115 assertEquals(LineGestureStrokeHelper.LINE_ANGLE, box.orientation);
  /external/autotest/tko/
display.py 14 #### additional keys for shaded color of a box
44 ### color keys for box shading have names that end with 'pct'
90 class box: class in inherits:
173 ## average_grade defines a shade of the box
244 return box(None, None)
262 return box(None, None)
266 precounted_box = box(html, shade, False, link, tooltip,
  /external/clang/test/SemaCXX/
warn-unused-value.cpp 7 class Box {
15 Box* box = new Box; local
16 box->i; // expected-warning {{expression result unused}}
17 box->j;
  /external/mesa3d/src/gallium/auxiliary/postprocess/
pp_mlaa.c 230 struct pipe_box box; local
277 u_box_2d(0, 0, 165, 165, &box);
280 PIPE_TRANSFER_WRITE, &box,
  /external/mesa3d/src/gallium/drivers/swr/
swr_context.cpp 99 const struct pipe_box *box,
140 pt->box = *box;
149 for (int z = box->z; z < box->z + box->depth; z++) {
150 zbase = (z * spr->swr.qpitch + box->y) * spr->swr.pitch +
152 sbase = (z * spr->secondary.qpitch + box->y) * spr->secondary.pitch +
154 for (int y = box->y; y < box->y + box->height; y++)
192 struct pipe_box box = *flush_box; local
229 struct pipe_box box; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bufferobjects.c 507 struct pipe_box box; local
516 u_box_1d(readOffset, size, &box);
519 srcObj->buffer, 0, &box);

Completed in 1120 milliseconds

1 2 3 4 5 6 7 8 91011>>