/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...] |
/external/skia/src/animator/ |
SkDrawTextBox.cpp | 72 SkTextBox box; local 73 box.setMode((SkTextBox::Mode) mode); 74 box.setSpacingAlign((SkTextBox::SpacingAlign) spacingAlign); 75 box.setBox(fRect); 76 box.setSpacing(fSpacingMul, fSpacingAdd); 78 box.draw(maker.fCanvas, fText.c_str(), fText.size(), *maker.fPaint);
|
/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...] |
/external/jmonkeyengine/engine/src/core/com/jme3/util/ |
PlaceholderAssets.java | 10 import com.jme3.scene.shape.Box; 57 Box box = new Box(1, 1, 1); local 58 Geometry geom = new Geometry("placeholder", box);
|
/external/jmonkeyengine/engine/src/test/jme3test/post/ |
TestHDR.java | 40 import com.jme3.scene.shape.Box; 54 Box boxMesh = new Box(Vector3f.ZERO, 1, 1, 1); 55 Geometry box = new Geometry("Box", boxMesh); local 58 // box.setMaterial(mat); 62 box.setMaterial(mat); 64 return box;
|
/external/skia/src/svg/parser/ |
SkSVGSVG.cpp | 46 SkRect box = SkRect::MakeLTRB(viewBox[0] / width, viewBox[1] / height, local 48 if (box.fLeft == 0 && box.fTop == 0 && 49 box.fRight == SK_Scalar1 && box.fBottom == SK_Scalar1) 52 if (box.fLeft != 0) { 54 x.appendScalar(box.fLeft); 57 if (box.fTop != 0) { 59 y.appendScalar(box.fTop); 62 if (box.fRight != SK_Scalar1) [all...] |
/packages/apps/Exchange/tests/src/com/android/exchange/provider/ |
EmailContentSetupUtils.java | 66 Mailbox box = new Mailbox(); local 68 box.mDisplayName = name; 69 box.mAccountKey = accountId; 70 box.mSyncKey = "sync-key-" + name; 71 box.mSyncLookback = 2; 72 box.mSyncInterval = Account.CHECK_INTERVAL_NEVER; 73 box.mType = type; 74 box.mServerId = "serverid-" + name; 75 box.mParentServerId = parentBox != null ? parentBox.mServerId : "parent-serverid-" + name; 78 box.save(context) [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/ |
HelloAssets.java | 42 import com.jme3.scene.shape.Box; 62 /** Create a wall (Box with material and texture from test-data) */ 63 Box box = new Box(Vector3f.ZERO, 2.5f,2.5f,1.0f); local 64 Spatial wall = new Geometry("Box", box );
|
/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/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);
|
/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/clang/test/SemaCXX/ |
warn-unused-value.cpp | 5 class Box { 13 Box* box = new Box; local 14 box->i; // expected-warning {{expression result unused}} 15 box->j; // expected-warning {{expression result unused}}
|
/external/jmonkeyengine/engine/src/test/jme3test/model/anim/ |
TestAnimationFactory.java | 13 import com.jme3.scene.shape.Box;
34 Box box = new Box(1, 1, 1);
local 35 Geometry geom = new Geometry("box", box);
40 Box child = new Box(0.5f, 0.5f, 0.5f);
41 Geometry childGeom = new Geometry("box", child);
|
/external/jmonkeyengine/engine/src/test/jme3test/tools/ |
TestTextureAtlas.java | 85 Geometry box = new Geometry("displayquad", new Quad(4, 4)); local 86 box.setMaterial(geom.getMaterial()); 87 box.setLocalTranslation(0, 1, 3); 88 rootNode.attachChild(box);
|
/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:__anon16717 33 box(const resource::point &origin, const resource::point &size) : function in class:__anon16717::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...] |