/external/jmonkeyengine/engine/src/bullet-native/ |
D | com_jme3_bullet_objects_PhysicsRigidBody.cpp | 56 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/ |
D | RequestTest.java | 35 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/ |
D | Request.java | 35 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()
|
D | Response.java | 43 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
|
D | MultipartBuilder.java | 112 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/ |
D | MainTest.java | 45 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/ |
D | charset-media.css | 4 body { selector 6 body { selector
|
D | bug2527998.css | 2 body { selector
|
D | bug2527974.css | 7 body { selector
|
/external/lldb/include/lldb/Expression/ |
D | ExpressionSourceCode.h | 26 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/ |
D | common.css | 6 body { selector 10 body { selector
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/ |
D | JsonMessageBuilder.java | 161 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/ |
D | MockResponse.java | 41 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/ |
D | MockResponse.java | 32 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/ |
D | XmlMessageBuilder.java | 206 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/ |
D | content.css | 1 html { margin: 0px; } body { margin: 8px; } selector 3 html, body { selector
|
/external/libcxx/www/ |
D | content.css | 1 html { margin: 0px; } body { margin: 8px; } selector 3 html, body { selector
|
/external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/jsdoc-template/static/ |
D | default.css | 173 body { selector 395 body { selector 413 body { selector 423 body { selector
|
/external/clang/www/ |
D | content.css | 1 html { margin: 0px; } body { margin: 8px; } selector 3 html, body { selector
|
/external/clang/docs/tools/ |
D | dump_ast_matchers.py | 325 body = False variable 334 body = False variable 348 body = True variable
|
/external/clang/tools/scan-build/ |
D | scanview.css | 1 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__.py | 83 def insert_head(body, text): argument 90 def insert_body(body, text): argument
|
/external/wpa_supplicant_8/src/pae/ |
D | ieee802_1x_kay.c | 86 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/ |
D | head_tag.cs | 32 html,body{overflow:auto;} property
|
/external/valgrind/docs/lib/ |
D | vg_basic.css | 5 body { selector 10 body, td { selector
|