Home
last modified time | relevance | path

Searched defs:body (Results 1 – 25 of 241) sorted by relevance

12345678910

/external/jmonkeyengine/engine/src/bullet-native/
Dcom_jme3_bullet_objects_PhysicsRigidBody.cpp56 btRigidBody* body = new btRigidBody(mass, motionState, shape, localInertia); in Java_com_jme3_bullet_objects_PhysicsRigidBody_createRigidBody() local
68 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); in Java_com_jme3_bullet_objects_PhysicsRigidBody_isInWorld() local
84 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); in Java_com_jme3_bullet_objects_PhysicsRigidBody_setPhysicsLocation() local
109 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); in Java_com_jme3_bullet_objects_PhysicsRigidBody_setPhysicsRotation__JLcom_jme3_math_Matrix3f_2() local
134 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); in Java_com_jme3_bullet_objects_PhysicsRigidBody_setPhysicsRotation__JLcom_jme3_math_Quaternion_2() local
159 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); in Java_com_jme3_bullet_objects_PhysicsRigidBody_getPhysicsLocation() local
175 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); in Java_com_jme3_bullet_objects_PhysicsRigidBody_getPhysicsRotation() local
191 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); in Java_com_jme3_bullet_objects_PhysicsRigidBody_getPhysicsRotationMatrix() local
207 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); in Java_com_jme3_bullet_objects_PhysicsRigidBody_setKinematic() local
229 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); in Java_com_jme3_bullet_objects_PhysicsRigidBody_setCcdSweptSphereRadius() local
[all …]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DRequestTest.java35 RequestBody body = RequestBody.create(contentType, "abc".getBytes(Util.UTF_8)); in string() local
44 RequestBody body = RequestBody.create(contentType, "\u0800"); in stringWithDefaultCharsetAdded() local
52 RequestBody body = RequestBody.create(contentType, "\u0800"); in stringWithNonDefaultCharsetSpecified() local
60 RequestBody body = RequestBody.create(contentType, "abc".getBytes(Util.UTF_8)); in byteArray() local
69 RequestBody body = RequestBody.create(contentType, ".abcd".getBytes(Util.UTF_8), 1, 3); in byteArrayRange() local
83 RequestBody body = RequestBody.create(contentType, file); in file() local
93 RequestBody body = RequestBody.create(contentType, "{}"); in crudVerbs() local
155 private String bodyToHex(RequestBody body) throws IOException { in bodyToHex()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DRequest.java35 private final RequestBody body; field in Request
89 public RequestBody body() { in body() method in Request
129 private RequestBody body; field in Request.Builder
208 public Builder post(RequestBody body) { in post()
212 public Builder delete(RequestBody body) { in delete()
220 public Builder put(RequestBody body) { in put()
224 public Builder patch(RequestBody body) { in patch()
228 public Builder method(String method, RequestBody body) { in method()
DResponse.java43 private final ResponseBody body; field in Response
129 public ResponseBody body() { in body() method in Response
228 private ResponseBody body; field in Response.Builder
304 public Builder body(ResponseBody body) { in body() method in Response.Builder
DMultipartBuilder.java112 public MultipartBuilder addPart(RequestBody body) { in addPart()
117 public MultipartBuilder addPart(Headers headers, RequestBody body) { in addPart()
239 RequestBody body = partBodies.get(p); in writeOrCountBytes() local
/external/okhttp/okcurl/src/test/java/com/squareup/okhttp/curl/
DMainTest.java45 RequestBody body = request.body(); in dataPost() local
54 RequestBody body = request.body(); in dataPut() local
64 RequestBody body = request.body(); in contentTypeHeader() local
93 private static String bodyAsString(RequestBody body) { in bodyAsString()
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/tests/yui/
Dcharset-media.css4 body { selector
6 body { selector
Dbug2527998.css2 body { selector
Dbug2527974.css7 body { selector
/external/lldb/include/lldb/Expression/
DExpressionSourceCode.h26 const char *body) in CreateWrapped()
35 const char *body) in CreateUnwrapped()
61 const char *body, in ExpressionSourceCode()
/external/chromium-trace/trace-viewer/tracing/tracing/ui/extras/about_tracing/
Dcommon.css6 body { selector
10 body { selector
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
DJsonMessageBuilder.java161 static PairingRequestMessage getPairingRequest(JSONObject body) in getPairingRequest()
181 static PairingRequestAckMessage getPairingRequestAck(JSONObject body) in getPairingRequestAck()
201 static OptionsMessage getOptionsMessage(JSONObject body) in getOptionsMessage()
253 static ConfigurationMessage getConfigMessage(JSONObject body) in getConfigMessage()
272 static ConfigurationAckMessage getConfigAckMessage(JSONObject body) { in getConfigAckMessage()
283 static SecretMessage getSecretMessage(JSONObject body) throws PoloException { in getSecretMessage()
300 static SecretAckMessage getSecretAckMessage(JSONObject body) in getSecretAckMessage()
/external/mockwebserver/src/main/java/com/google/mockwebserver/
DMockResponse.java41 private byte[] body; field in MockResponse
157 public MockResponse setBody(byte[] body) { in setBody()
174 public MockResponse setBody(String body) { in setBody()
186 public MockResponse setChunkedBody(byte[] body, int maxChunkSize) { in setChunkedBody()
214 public MockResponse setChunkedBody(String body, int maxChunkSize) { in setChunkedBody()
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
DMockResponse.java32 private Buffer body; field in MockResponse
134 public MockResponse setBody(Buffer body) { in setBody()
141 public MockResponse setBody(String body) { in setBody()
149 public MockResponse setChunkedBody(Buffer body, int maxChunkSize) { in setChunkedBody()
171 public MockResponse setChunkedBody(String body, int maxChunkSize) { in setChunkedBody()
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
DXmlMessageBuilder.java206 PairingRequestMessage getPairingRequest(JSONObject body) in getPairingRequest()
230 PairingRequestAckMessage getPairingRequestAck(JSONObject body) in getPairingRequestAck()
252 OptionsMessage getOptionsMessage(JSONObject body) throws PoloException { in getOptionsMessage()
313 ConfigurationMessage getConfigMessage(JSONObject body) in getConfigMessage()
334 ConfigurationAckMessage getConfigAckMessage(JSONObject body) { in getConfigAckMessage()
345 SecretMessage getSecretMessage(JSONObject body) throws PoloException { in getSecretMessage()
363 SecretAckMessage getSecretAckMessage(JSONObject body) { in getSecretAckMessage()
/external/libcxxabi/www/
Dcontent.css1 html { margin: 0px; } body { margin: 8px; } selector
3 html, body { selector
/external/libcxx/www/
Dcontent.css1 html { margin: 0px; } body { margin: 8px; } selector
3 html, body { selector
/external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/jsdoc-template/static/
Ddefault.css173 body { selector
395 body { selector
413 body { selector
423 body { selector
/external/clang/www/
Dcontent.css1 html { margin: 0px; } body { margin: 8px; } selector
3 html, body { selector
/external/clang/docs/tools/
Ddump_ast_matchers.py325 body = False variable
334 body = False variable
348 body = True variable
/external/clang/tools/scan-build/
Dscanview.css1 body { color:#000000; background-color:#ffffff } selector
2 body { font-family: Helvetica, sans-serif; font-size:9pt } selector
/external/chromium-trace/trace-viewer/third_party/Paste/paste/cowbell/
D__init__.py83 def insert_head(body, text): argument
90 def insert_body(body, text): argument
/external/wpa_supplicant_8/src/pae/
Dieee802_1x_kay.c86 static void set_mka_param_body_len(void *body, unsigned int len) in set_mka_param_body_len()
94 static unsigned int get_mka_param_body_len(const void *body) in get_mka_param_body_len()
101 static int get_mka_param_body_type(const void *body) in get_mka_param_body_type()
112 ieee802_1x_mka_dump_basic_body(struct ieee802_1x_mka_basic_body *body) in ieee802_1x_mka_dump_basic_body()
146 ieee802_1x_mka_dump_peer_body(struct ieee802_1x_mka_peer_body *body) in ieee802_1x_mka_dump_peer_body()
178 ieee802_1x_mka_dump_dist_sak_body(struct ieee802_1x_mka_dist_sak_body *body) in ieee802_1x_mka_dump_dist_sak_body()
210 ieee802_1x_mka_dump_sak_use_body(struct ieee802_1x_mka_sak_use_body *body) in ieee802_1x_mka_dump_sak_use_body()
666 struct ieee802_1x_mka_basic_body *body; in ieee802_1x_mka_encode_basic_body() local
709 const struct ieee802_1x_mka_basic_body *body; in ieee802_1x_mka_decode_basic_body() local
822 struct ieee802_1x_mka_peer_body *body; in ieee802_1x_mka_encode_live_peer_body() local
[all …]
/external/doclava/res/assets/templates/
Dhead_tag.cs32 html,body{overflow:auto;} property
/external/valgrind/docs/lib/
Dvg_basic.css5 body { selector
10 body, td { selector

12345678910