HomeSort by relevance Sort by last modified time
    Searched refs:cast (Results 601 - 625 of 3080) sorted by null

<<21222324252627282930>>

  /external/objenesis/main/src/main/java/org/objenesis/instantiator/sun/
UnsafeFactoryInstantiator.java 74 return type.cast(allocateInstance.invoke(unsafe, type));
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
RpcUtil.java 50 // The above cast works, but only due to technical details of the Java
78 typedParameter = originalClass.cast(parameter);
  /external/python/cpython2/Lib/ctypes/test/
test_array_in_pointer.py 50 ptr = cast(val_array, POINTER(Value))
  /external/python/cpython3/Lib/ctypes/test/
test_array_in_pointer.py 50 ptr = cast(val_array, POINTER(Value))
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowContentProviderOperation.java 52 return clazz.cast(ReflectionHelpers.getField(realOperation, fieldName));
ShadowVirtualRefBasePtr.java 23 return clazz.cast(POINTERS.get(nativePtr).nativeThing);
  /external/skia/src/gpu/effects/
GrBicubicEffect.cpp 21 const GrBicubicEffect& bicubicEffect = effect.cast<GrBicubicEffect>();
38 const GrBicubicEffect& bicubicEffect = args.fFp.cast<GrBicubicEffect>();
108 const GrBicubicEffect& bicubicEffect = processor.cast<GrBicubicEffect>();
154 const GrBicubicEffect& s = sBase.cast<GrBicubicEffect>();
GrConvexPolyEffect.cpp 41 const GrConvexPolyEffect& cpe = args.fFp.cast<GrConvexPolyEffect>();
73 const GrConvexPolyEffect& cpe = effect.cast<GrConvexPolyEffect>();
83 const GrConvexPolyEffect& cpe = processor.cast<GrConvexPolyEffect>();
207 const GrConvexPolyEffect& cpe = other.cast<GrConvexPolyEffect>();
GrShadowGeoProc.cpp 21 const GrRRectShadowGeoProc& rsgp = args.fGP.cast<GrRRectShadowGeoProc>();
  /external/skqp/src/gpu/effects/
GrBicubicEffect.cpp 21 const GrBicubicEffect& bicubicEffect = effect.cast<GrBicubicEffect>();
38 const GrBicubicEffect& bicubicEffect = args.fFp.cast<GrBicubicEffect>();
108 const GrBicubicEffect& bicubicEffect = processor.cast<GrBicubicEffect>();
171 const GrBicubicEffect& s = sBase.cast<GrBicubicEffect>();
GrConvexPolyEffect.cpp 41 const GrConvexPolyEffect& cpe = args.fFp.cast<GrConvexPolyEffect>();
72 const GrConvexPolyEffect& cpe = effect.cast<GrConvexPolyEffect>();
82 const GrConvexPolyEffect& cpe = processor.cast<GrConvexPolyEffect>();
206 const GrConvexPolyEffect& cpe = other.cast<GrConvexPolyEffect>();
GrShadowGeoProc.cpp 21 const GrRRectShadowGeoProc& rsgp = args.fGP.cast<GrRRectShadowGeoProc>();
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
ConstantsScanner.h 56 return cast<Constant>(InstI->getOperand(OpIdx));
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
114 // cast<x> Support Templates
120 // Calculate what type the 'cast' function should return, based on a requested
175 // This _is_ a simple type, just cast it.
185 // cast<X> - Return the argument parameter cast to the specified type. This
190 // cast<Instruction>(myVal)->getParent()
193 inline typename cast_retty<X, Y>::ret_type cast(const Y &Val) { function in namespace:llvm
194 assert(isa<X>(Val) && "cast<Ty>() argument of incompatible type!");
199 // cast_or_null<X> - Functionally identical to cast, except that a null value i
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCObjectStreamer.cpp 66 cast<MCTargetExpr>(Value)->AddValueSymbols(Assembler);
73 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Value);
80 Assembler->getOrCreateSymbolData(cast<MCSymbolRefExpr>(Value)->getSymbol());
84 AddValueSymbols(cast<MCUnaryExpr>(Value)->getSubExpr());
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinIntrinsicInfo.cpp 101 return cast<Function>(M->getOrInsertFunction(getName(IntrID),
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
MBlazeIntrinsicInfo.cpp 110 return cast<Function>(M->getOrInsertFunction(getName(IntrID),
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
ConstantProp.cpp 76 WorkList.insert(cast<Instruction>(*UI));
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
SimplifyInstructions.cpp 67 Next->insert(cast<Instruction>(*UI));
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Globals.cpp 157 this->setOperand(0, cast<Constant>(To));
180 const GlobalVariable *SrcVar = cast<GlobalVariable>(Src);
233 const ConstantExpr *CE = cast<ConstantExpr>(C);
238 return cast<GlobalValue>(CE->getOperand(0));
  /external/swiftshader/third_party/LLVM/tools/opt/
AnalysisWrappers.cpp 45 CallSite CS(cast<Value>(User));
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
ObjCARCAnalysisUtils.h 84 V = cast<CallInst>(V)->getArgOperand(0);
122 V = cast<CallInst>(V)->getArgOperand(0);
139 return GetRCIdentityRoot(cast<CallInst>(Inst)->getArgOperand(0));
149 cast<GetElementPtrInst>(I)->hasAllZeroIndices());
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Constant.h 138 //// Methods for support type inquiry through isa, cast, and dyn_cast:
174 return cast<Constant>(Value::stripPointerCasts());
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 92 Add(cast<Instruction>(U));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
OrderedBasicBlock.cpp 49 Inst = cast<Instruction>(II);

Completed in 418 milliseconds

<<21222324252627282930>>