Searched refs:Body (Results 1 - 25 of 165) sorted by relevance

1234567

/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DBody.cpp6 #include "modules/serviceworkers/Body.h"
17 ScriptPromise Body::readAsync(ScriptState* scriptState, ResponseType type)
24 // handle. This can happen in Body::readAsync. To avoid the situation, we
59 // When we will stop using Blob as a base system of Body to support
80 ScriptPromise Body::arrayBuffer(ScriptState* scriptState)
85 ScriptPromise Body::blob(ScriptState* scriptState)
90 ScriptPromise Body::formData(ScriptState* scriptState)
95 ScriptPromise Body::json(ScriptState* scriptState)
100 ScriptPromise Body::text(ScriptState* scriptState)
105 bool Body
127 Body::Body(ExecutionContext* context) function in class:blink::Body
134 Body::Body(const Body& copy_from) function in class:blink::Body
[all...]
H A DBody.h22 class Body class in namespace:blink
23 : public GarbageCollectedFinalized<Body>
29 explicit Body(ExecutionContext*);
30 virtual ~Body() { }
56 explicit Body(const Body&);
H A DResponse.cpp96 // Headers object, and Body object."
224 : Body(context)
232 : Body(copy_from)
239 : Body(context)
248 : Body(context)
262 Body::trace(visitor);
H A DRequest.h10 #include "modules/serviceworkers/Body.h"
26 class Request FINAL : public Body {
H A DResponse.h10 #include "modules/serviceworkers/Body.h"
24 class Response FINAL : public Body {
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DRequestTest.java30 Request.Body body = Request.Body.create(contentType, "abc".getBytes(Util.UTF_8));
39 Request.Body body = Request.Body.create(contentType, "\u0800");
47 Request.Body body = Request.Body.create(contentType, "\u0800");
55 Request.Body body = Request.Body.create(contentType, "abc".getBytes(Util.UTF_8));
69 Request.Body body = Request.Body
[all...]
/external/clang/lib/ARCMigrate/
H A DTransUnusedInitDelegate.cpp35 Stmt *Body; member in class:__anon17703::UnusedInitRewriter
42 : Body(nullptr), Pass(pass) { }
45 Body = body;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DRequest.java40 private final Body body;
88 public Body body() {
148 public abstract static class Body { class in class:Request
167 public static Body create(MediaType contentType, String content) {
180 public static Body create(final MediaType contentType, final byte[] content) {
184 return new Body() {
200 public static Body create(final MediaType contentType, final File file) {
204 return new Body() {
236 private Body body;
307 public Builder post(Body bod
[all...]
/external/smack/src/org/jivesoftware/smack/packet/
H A DMessage.java58 private final Set<Body> bodies = new HashSet<Body>();
251 Body body = getMessageBody(language);
255 private Body getMessageBody(String language) {
257 for (Body body : bodies) {
272 public Collection<Body> getBodies() {
294 * @return the new {@link org.jivesoftware.smack.packet.Message.Body}
298 public Body addBody(String language, String body) {
300 Body messageBody = new Body(languag
573 public static class Body { class in class:Message
578 private Body(String language, String message) { method in class:Message.Body
[all...]
/external/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp69 const Stmt *Body = PickTrueBranch ? Node->getThen() : Node->getElse(); local
70 if (Body) {
71 Replace.insert(replaceStmtWithStmt(*Result.SourceManager, *Node, *Body));
/external/okhttp/okcurl/src/test/java/com/squareup/okhttp/curl/
H A DMainTest.java44 Request.Body body = request.body();
53 Request.Body body = request.body();
63 Request.Body body = request.body();
86 private static String bodyAsString(Request.Body body) {
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Daccess-nbody.js9 function Body(x,y,z,vx,vy,vz,mass){ class
19 Body.prototype.offsetMomentum = function(px,py,pz) {
27 return new Body(
39 return new Body(
51 return new Body(
63 return new Body(
75 return new Body(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, SOLAR_MASS);
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Daccess-nbody.js9 function Body(x,y,z,vx,vy,vz,mass){ class
19 Body.prototype.offsetMomentum = function(px,py,pz) {
27 return new Body(
39 return new Body(
51 return new Body(
63 return new Body(
75 return new Body(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, SOLAR_MASS);
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Daccess-nbody.js9 function Body(x,y,z,vx,vy,vz,mass){ class
19 Body.prototype.offsetMomentum = function(px,py,pz) {
27 return new Body(
39 return new Body(
51 return new Body(
63 return new Body(
75 return new Body(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, SOLAR_MASS);
/external/clang/tools/libclang/
H A DIndexDecl.cpp62 const Stmt *Body = D->getBody(); local
63 if (Body) {
64 IndexCtx.indexBody(Body, D, D);
86 const Stmt *Body = D->getBody(); local
87 if (Body) {
88 IndexCtx.indexBody(Body, D, D);
300 const Stmt *Body = FD->getBody(); local
301 if (Body) {
302 IndexCtx.indexBody(Body, D, FD);
/external/chromium_org/net/server/
H A Dhttp_server_response_info_unittest.cc24 TEST(HttpServerResponseInfoTest, Body) {
/external/clang/lib/StaticAnalyzer/Checkers/
H A DVirtualCallChecker.cpp221 if (Stmt *Body = I->getBody()) {
222 walker.Visit(Body);
229 if (Stmt *Body = DD->getBody()) {
230 walker.Visit(Body);
H A DDirectIvarAssignment.cpp148 const Stmt *Body = M->getBody(); local
149 assert(Body);
153 MC.VisitStmt(Body);
/external/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp53 const Stmt *Body = CS->getCapturedStmt(); local
74 EmitStmt(Body);
/external/clang/test/CXX/special/class.ctor/
H A Dp5-0x.cpp152 #define ASSERT_NONTRIVIAL_IMPL(Class, Bases, Body) \
153 class Class Bases { Body }; \
155 #define ASSERT_NONTRIVIAL(Class, Bases, Body) \
156 ASSERT_NONTRIVIAL_IMPL(Class, Bases, Body) \
157 ASSERT_NONTRIVIAL_IMPL(Def ## Class, Bases, Def ## Class() = default; Body) \
158 ASSERT_NONTRIVIAL_IMPL(Del ## Class, Bases, Del ## Class() = delete; Body)
/external/clang/include/clang/AST/
H A DStmtObjC.h30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
77 Stmt *Body; member in class:clang::ObjCAtCatchStmt
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
92 void setCatchBody(Stmt *S) { Body = S; }
108 SourceLocation getLocEnd() const LLVM_READONLY { return Body->getLocEnd(); }
116 child_range children() { return child_range(&Body, &Body + 1); }
/external/lldb/include/lldb/Expression/
H A DASTResultSynthesizer.h146 /// @param[in] Body
153 bool SynthesizeBodyResult(clang::CompoundStmt *Body,
170 /// @param[in] Body
/external/llvm/include/llvm/ExecutionEngine/
H A DJITMemoryManager.h116 virtual void deallocateFunctionBody(void *Body) = 0;
/external/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp95 Stmt *Body = FD->getBody(); local
96 if (!Body && Manager && Manager->synthesizeBodies()) {
97 Body = getBodyFarm(getASTContext()).getBody(FD);
98 if (Body)
101 return Body;
104 Stmt *Body = MD->getBody(); local
105 if (!Body && Manager && Manager->synthesizeBodies()) {
106 Body = getBodyFarm(getASTContext()).getBody(MD);
107 if (Body)
110 return Body;
[all...]
/external/lldb/source/Expression/
H A DASTResultSynthesizer.cpp224 ASTResultSynthesizer::SynthesizeBodyResult (CompoundStmt *Body, argument
231 if (!Body)
234 if (Body->body_empty())
237 Stmt **last_stmt_ptr = Body->body_end() - 1;
242 if (last_stmt_ptr != Body->body_begin())

Completed in 695 milliseconds

1234567