Searched defs:Body (Results 1 - 25 of 61) sorted by relevance

123

/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/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
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 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...]
/external/clang/lib/ARCMigrate/
H A DTransUnusedInitDelegate.cpp35 Stmt *Body; member in class:__anon17703::UnusedInitRewriter
42 : Body(nullptr), Pass(pass) { }
45 Body = body;
H A DTransRetainReleaseDealloc.cpp37 Stmt *Body; member in class:__anon17701::RetainReleaseDeallocRemover
47 : Body(nullptr), Pass(pass) {
55 Body = body;
H A DTransAutoreleasePool.cpp73 : Body(nullptr), Pass(pass) {
80 Body = body;
413 Stmt *Body; member in class:__anon17693::AutoreleasePoolRewriter
H A DTransUnbridgedCasts.cpp65 Stmt *Body; member in class:__anon17702::UnbridgedCastRewriter
70 : Pass(pass), ParentD(nullptr), Body(nullptr) {
76 Body = body;
327 collectRemovables(Body, *Removables);
/external/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp53 const Stmt *Body = CS->getCapturedStmt(); local
74 EmitStmt(Body);
H A DCGObjCRuntime.cpp150 const Stmt *Body; member in struct:__anon17849::CatchHandler
199 Handler.Body = CatchStmt->getCatchBody();
241 CodeGenFunction::LexicalScope cleanups(CGF, Handler.Body->getSourceRange());
279 CGF.EmitStmt(Handler.Body);
/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/clang/lib/StaticAnalyzer/Checkers/
H A DDirectIvarAssignment.cpp148 const Stmt *Body = M->getBody(); local
149 assert(Body);
153 MC.VisitStmt(Body);
/external/chromium-trace/trace-viewer/third_party/python_gflags/
H A Dgflags2man.py450 self.Body()
455 def Body(self): raise NotImplementedError # define in subclass member in class:GenerateDoc
491 def Body(self): member in class:GenerateMan
/external/chromium_org/third_party/python_gflags/
H A Dgflags2man.py450 self.Body()
455 def Body(self): raise NotImplementedError # define in subclass member in class:GenerateDoc
491 def Body(self): member in class:GenerateMan
/external/clang/lib/Analysis/
H A DBodyFarm.cpp340 CompoundStmt *Body = M.makeCompound(ArrayRef<Stmt*>(Stmts, 2)); local
350 new (C) IfStmt(C, SourceLocation(), nullptr, Comparison, Body,
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/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/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())
/external/llvm/tools/lli/
H A DRemoteMemoryManager.cpp205 void RemoteMemoryManager::deallocateFunctionBody(void *Body) { argument
/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...]
H A DResponse.java51 private final Body body;
127 public Body body() {
213 public abstract static class Body implements Closeable { class in class:Response
229 // <h3>Body.ready() vs. InputStream.available()</h3>
362 * Body#ready} to check if bytes should be read immediately. While there is
373 * <p>The current implementation of {@link Body#ready} always returns true
386 private Body body;
459 public Builder body(Body body) {
/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/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/clang/lib/Sema/
H A DJumpDiagnostics.cpp72 JumpScopeChecker(Stmt *Body, Sema &S);
94 JumpScopeChecker::JumpScopeChecker(Stmt *Body, Sema &s) argument
102 BuildScopeInformation(Body, BodyParentScope);
792 void Sema::DiagnoseInvalidJumps(Stmt *Body) { argument
793 (void)JumpScopeChecker(Body, *this);

Completed in 436 milliseconds

123