HomeSort by relevance Sort by last modified time
    Searched defs:Cast (Results 1 - 10 of 10) sorted by null

  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
vertexconversion.h 40 struct Cast
53 struct Cast<T, T>
  /frameworks/base/tools/aidl/
AST.cpp 247 cast(NULL)
254 cast(c)
267 if (this->cast != NULL) {
268 fprintf(to, "(%s)", this->cast->QualifiedName().c_str());
430 Cast::Cast()
436 Cast::Cast(Type* t, Expression* e)
442 Cast::~Cast()
    [all...]
AST.h 132 Type* cast; member in struct:Assignment
135 Assignment(Variable* lvalue, Expression* rvalue, Type* cast);
203 struct Cast : public Expression
208 Cast();
209 Cast(Type* type, Expression* expression);
210 virtual ~Cast();
217 Type* cast; member in struct:VariableDeclaration
221 VariableDeclaration(Variable* lvalue, Expression* rvalue, Type* cast = NULL);
  /external/javassist/src/main/javassist/expr/
Cast.java 24 * Explicit type cast.
26 public class Cast extends Expr {
30 protected Cast(int pos, CodeIterator i, CtClass declaring, MethodInfo m) {
35 * Returns the method or constructor containing the type cast
42 * type-cast expression.
51 * Returns the source file containing the type-cast expression.
61 * the type specified by the cast.
82 * Replaces the explicit cast operator with the bytecode derived from
150 + "for cast");
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 118 ConstantInt *D = cast<ConstantInt>(UseInst->getOperand(1));
121 uint32_t BitWidth = cast<IntegerType>(UseInst->getType())->getBitWidth();
284 Instruction *User = cast<Instruction>(*UI);
365 CastInst *Cast = dyn_cast<CastInst>(UseOper.first);
366 if (V && Cast) {
367 V->visitCast(Cast);
395 Changed |= simplifyUsersOfIV(cast<PHINode>(I), SE, LPM, Dead);
  /external/clang/lib/CodeGen/
CGException.cpp 259 llvm::Constant *CVal = cast<llvm::Constant>(Val);
263 cast<llvm::GlobalVariable>((*II)->stripPointerCasts()))
346 // __cxa_allocate_exception returns a void*; we need to cast this
427 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
539 EHFilterScope &filterScope = cast<EHFilterScope>(*EHStack.begin());
597 EHCatchScope &catchScope = cast<EHCatchScope>(scope);
632 return !cast<EHCleanupScope>(S).isEHCleanup();
769 hasCleanup = (hasCleanup || cast<EHCleanupScope>(*I).isEHCleanup());
777 EHFilterScope &filter = cast<EHFilterScope>(*I);
796 EHCatchScope &catchScope = cast<EHCatchScope>(*I)
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 218 cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
334 // Pointer cast, delete any stores and memsets to the global.
401 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
419 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
427 !cast<Constant>(U->getOperand(1))->isNullValue() ||
437 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
541 NumElements = cast<VectorType>(STy)->getNumElements();
583 cast<ConstantExpr>(GEP)->getOpcode()==Instruction::GetElementPtr)||
589 unsigned Val = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
601 NewPtr = ConstantExpr::getGetElementPtr(cast<Constant>(NewPtr), Idxs)
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-matchers.h 407 static inline Matcher<T> Cast(M polymorphic_matcher) {
421 static inline Matcher<T> Cast(const Matcher<U>& matcher) {
446 return SafeMatcherCastImpl<T>::Cast(polymorphic_matcher);
615 static Matcher<T> Cast(M polymorphic_matcher) {
626 static Matcher<T> Cast(const Matcher<U>& source_matcher) {
661 static Matcher<T> Cast(const Matcher<T>& matcher) { return matcher; }
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 785 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
786 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
    [all...]
  /external/v8/include/
v8.h 237 template <class S> static inline Handle<T> Cast(Handle<S> that) {
240 // that the handle isn't empty before doing the checked cast.
243 return Handle<T>(T::Cast(*that));
247 return Handle<S>::Cast(*this);
275 template <class S> static inline Local<T> Cast(Local<S> that) {
278 // that the handle isn't empty before doing the checked cast.
281 return Local<T>(T::Cast(*that));
285 return Local<S>::Cast(*this);
352 template <class S> static inline Persistent<T> Cast(Persistent<S> that) {
355 // that the handle isn't empty before doing the checked cast
    [all...]

Completed in 177 milliseconds