Searched refs:mBody (Results 1 – 5 of 5) sorted by relevance
/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 | 212 TIntermBlock *getBody() { return mBody; } in getBody() 217 void setBody(TIntermBlock *body) { mBody = body; } in setBody() 226 TIntermBlock *mBody; // loop body variable 744 : TIntermNode(), mPrototype(prototype), mBody(body) in TIntermFunctionDefinition() 759 TIntermBlock *getBody() const { return mBody; } in getBody() 771 TIntermBlock *mBody; variable
|
D | OutputHLSL.h | 169 TInfoSinkBase mBody; variable
|
D | IntermNode.cpp | 231 return (mInit ? 1 : 0) + (mCond ? 1 : 0) + (mExpr ? 1 : 0) + (mBody ? 1 : 0); in getChildCount() 253 if (mBody) in getChildNode() 255 children[childIndex] = mBody; in getChildNode() 268 REPLACE_IF_IS(mBody, TIntermBlock, original, replacement); in replaceChildNode() 385 return mBody; in getChildNode() 391 REPLACE_IF_IS(mBody, TIntermBlock, original, replacement); in replaceChildNode() 1373 : mType(type), mInit(init), mCond(cond), mExpr(expr), mBody(body) in TIntermLoop() 1389 node.mBody->deepCopy()) in TIntermLoop()
|
D | OutputHLSL.cpp | 431 mInfoSinkStack.push(&mBody); in output() 443 objSink << mBody.c_str(); in output()
|