Searched refs:mBody (Results 1 – 6 of 6) sorted by relevance
/external/volley/src/main/java/com/android/volley/cronet/ |
D | CronetHttpStack.java | 583 @Nullable private byte[] mBody; field in CronetHttpStack.CurlLoggedRequestParameters 609 return mBody; in getBody() 613 mBody = body; in setBody() 625 if (mBody != null) { in applyToRequest() 626 UploadDataProvider dataProvider = UploadDataProviders.create(mBody); in applyToRequest()
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
D | SmsFacade.java | 942 private PduBody mBody; field in SmsFacade.MmsBuilder 967 mBody = new PduBody(); in MmsBuilder() 1032 mRequest.setBody(mBody); in build() 1035 for (int i = 0; i < mBody.getPartsNum(); i++) { in build() 1036 msgSize += mBody.getPart(i).getDataLength(); in build() 1054 mBody.addPart(part); in addMessageBody() 1068 mBody.addPart(0, smilPart); in addSmilTextFragment()
|
/external/angle/src/compiler/translator/ |
D | IntermNode.h | 214 TIntermBlock *getBody() { return mBody; } in getBody() 219 void setBody(TIntermBlock *body) { mBody = body; } in setBody() 228 TIntermBlock *mBody; // loop body variable 751 : TIntermNode(), mPrototype(prototype), mBody(body) in TIntermFunctionDefinition() 766 TIntermBlock *getBody() const { return mBody; } in getBody() 778 TIntermBlock *mBody; variable
|
D | OutputHLSL.h | 170 TInfoSinkBase mBody; variable
|
D | IntermNode.cpp | 226 return (mInit ? 1 : 0) + (mCond ? 1 : 0) + (mExpr ? 1 : 0) + (mBody ? 1 : 0); in getChildCount() 248 if (mBody) in getChildNode() 250 children[childIndex] = mBody; in getChildNode() 263 REPLACE_IF_IS(mBody, TIntermBlock, original, replacement); in replaceChildNode() 380 return mBody; in getChildNode() 386 REPLACE_IF_IS(mBody, TIntermBlock, original, replacement); in replaceChildNode() 1452 : mType(type), mInit(init), mCond(cond), mExpr(expr), mBody(body) in TIntermLoop() 1468 node.mBody->deepCopy()) in TIntermLoop()
|
D | OutputHLSL.cpp | 434 mInfoSinkStack.push(&mBody); in output() 446 objSink << mBody.c_str(); in output()
|