HomeSort by relevance Sort by last modified time
    Searched defs:box (Results 1 - 25 of 268) 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/openssh/
sandbox-null.c 44 struct ssh_sandbox *box; local
50 box = xcalloc(1, sizeof(*box));
51 return box;
55 ssh_sandbox_child(struct ssh_sandbox *box)
61 ssh_sandbox_parent_finish(struct ssh_sandbox *box)
63 free(box);
67 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid)
sandbox-capsicum.c 53 struct ssh_sandbox *box; local
60 box = xcalloc(1, sizeof(*box));
61 box->monitor = monitor;
62 box->child_pid = 0;
64 return box;
68 ssh_sandbox_child(struct ssh_sandbox *box)
97 if (cap_rights_limit(box->monitor->m_recvfd, &rights) < 0 &&
101 if (cap_rights_limit(box->monitor->m_log_sendfd, &rights) < 0 &&
110 ssh_sandbox_parent_finish(struct ssh_sandbox *box)
    [all...]
sandbox-darwin.c 45 struct ssh_sandbox *box; local
52 box = xcalloc(1, sizeof(*box));
53 box->child_pid = 0;
55 return box;
59 ssh_sandbox_child(struct ssh_sandbox *box)
86 ssh_sandbox_parent_finish(struct ssh_sandbox *box)
88 free(box);
93 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid)
95 box->child_pid = child_pid
    [all...]
sandbox-rlimit.c 47 struct ssh_sandbox *box; local
54 box = xcalloc(1, sizeof(*box));
55 box->child_pid = 0;
57 return box;
61 ssh_sandbox_child(struct ssh_sandbox *box)
85 ssh_sandbox_parent_finish(struct ssh_sandbox *box)
87 free(box);
92 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid)
94 box->child_pid = child_pid
    [all...]
sandbox-seccomp-filter.c 218 struct ssh_sandbox *box; local
225 box = xcalloc(1, sizeof(*box));
226 box->child_pid = 0;
228 return box;
269 ssh_sandbox_child(struct ssh_sandbox *box)
306 ssh_sandbox_parent_finish(struct ssh_sandbox *box)
308 free(box);
313 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid)
315 box->child_pid = child_pid
    [all...]
  /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/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/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
DeviceProfilesSettingsTest.java 104 CheckBox box = (CheckBox) profilesGroup.findViewWithTag( local
106 assertThat(box).isNotNull();
107 assertThat(box.getVisibility()).isEqualTo(View.VISIBLE);
108 assertThat(box.isEnabled()).isTrue();
109 assertThat(box.isChecked()).isTrue();
111 box.performClick();
113 box.performClick();
128 CheckBox box = (CheckBox) profilesGroup.findViewWithTag( local
130 assertThat(box).isNotNull();
131 assertThat(box.getVisibility()).isEqualTo(View.VISIBLE)
201 CheckBox box = (CheckBox) profilesGroup.findViewWithTag( local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bufferobjects.c 361 struct pipe_box box; local
370 u_box_1d(readOffset, size, &box);
373 srcObj->buffer, 0, &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 69 BoxedValue* box = new BoxedValue(deleter_marker); local
71 delete box;
79 BoxedValue* box = new BoxedValue(deleter_marker); local
80 BoxedValue* new_box = new BoxedValue(std::move(*box));
81 // box is now undefined but valid.
82 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 65 struct pipe_box box; local
67 u_box_2d(0, 0, sizeof(constants), 1, &box);
69 &box, constants, sizeof(constants),
214 struct pipe_box box; local
253 u_box_2d(0, 0, 165, 165, &box);
256 PIPE_TRANSFER_WRITE, &box,
  /external/mesa3d/src/gallium/auxiliary/util/
u_upload_mgr.c 78 struct pipe_box *box = &upload->transfer->box; local
79 if (upload->offset > box->x) {
82 box->x, upload->offset - box->x);
  /external/mesa3d/src/gallium/drivers/r600/
r600_buffer.c 44 const struct pipe_box *box)
49 assert(box->x + box->width <= resource->width0);
54 transfer->transfer.box = *box;
138 transfer->box.x % 4 == 0 && transfer->box.width % 4 == 0) {
149 PIPE_USAGE_STAGING, transfer->box.width);
159 return (uint8_t*)data + transfer->box.x;
168 struct pipe_box box; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
resource.cpp 31 class box { class in namespace:__anon27521
33 box(const resource::point &origin, const resource::point &size) : function in class:__anon27521::box
62 box(src_res.offset + src_origin, region));
146 box rect { { 0, 0, 0 }, { info.width0, info.height0, info.depth0 } };
181 box(origin + r.offset, region));
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
d3d11.cpp 100 pipe_box box; local
103 box.x = pBox->left;
104 box.y = pBox->top;
105 box.z = pBox->front;
106 box.width = pBox->right - pBox->left;
107 box.height = pBox->bottom - pBox->top;
108 box.depth = pBox->back - pBox->front;
112 box.x = box.y = box.z = 0
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vdpau/
surface.c 232 struct pipe_box box = { local
239 transfer = pipe->get_transfer(pipe, sv->texture, 0, PIPE_TRANSFER_READ, &box);
254 box.width, box.height, map, transfer->stride, 0, 0);

Completed in 1194 milliseconds

1 2 3 4 5 6 7 8 91011