HomeSort by relevance Sort by last modified time
    Searched refs:ty (Results 276 - 300 of 344) sorted by null

<<11121314

  /external/clang/include/clang/AST/
ExprObjC.h 64 ObjCBoolLiteralExpr(bool val, QualType Ty, SourceLocation l) :
65 Expr(ObjCBoolLiteralExprClass, Ty, VK_RValue, OK_Ordinary, false, false,
    [all...]
Decl.h 57 QualType Ty;
61 TypeSourceInfo(QualType ty) : Ty(ty) { }
64 QualType getType() const { return Ty; }
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
LODGeomap.java 125 float ty = tcStore.y * scale.y; local
127 store.put(ty);
    [all...]
  /frameworks/native/services/surfaceflinger/
Layer.cpp 845 if (mCurrentState.transform.tx() == x && mCurrentState.transform.ty() == y)
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 841 QualType Ty = (*I)->getType();
842 if (Ty->isReferenceType()) {
843 Ty = getReferenceInitTemporaryType(*Context, (*I)->getInit());
845 Ty = Context->getBaseElementType(Ty);
847 const CXXDestructorDecl *Dtor = Ty->getAsCXXRecordDecl()->getDestructor();
3341 QualType ty = var->getType(); local
    [all...]
  /external/opencv/cxcore/src/
cxmatmul.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp 798 BuiltinType *Ty = new (*this, TypeAlignment) BuiltinType(K);
799 R = CanQualType::CreateUnsafe(QualType(Ty, 0));
800 Types.push_back(Ty);
2237 const Type *ty = split.Ty; local
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 599 Type *getShadowTyNoVec(Type *ty) {
600 if (VectorType *vt = dyn_cast<VectorType>(ty))
602 return ty;
607 Type *Ty = V->getType();
608 Type *NoVecTy = getShadowTyNoVec(Ty);
609 if (Ty == NoVecTy) return V;
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 385 llvm::Type *ty = CGF.ConvertTypeForMem(e->getType())->getPointerTo(); local
386 llvm::Value *typedAddr = CGF.Builder.CreateBitCast(addr, ty);
506 QualType Ty = Proto->getExceptionType(I);
507 QualType ExceptType = Ty.getNonReferenceType().getUnqualifiedType();
    [all...]
CGBlocks.cpp 1406 llvm::PointerType *ty = cast<llvm::PointerType>(srcValue->getType()); local
    [all...]
CGCall.cpp 383 argTypes.push_back(Context.getCanonicalParamType(i->Ty));
397 argTypes.push_back(Context.getCanonicalParamType(i->Ty));
551 CodeGenFunction::ExpandTypeFromArgs(QualType Ty, LValue LV,
556 if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) {
564 } else if (const RecordType *RT = Ty->getAs<RecordType>()) {
599 } else if (const ComplexType *CT = Ty->getAs<ComplexType>()) {
646 /// CoerceIntOrPtrToIntOrPtr - Convert a value Val to the specific Ty where both
650 llvm::Type *Ty,
652 if (Val->getType() == Ty)
657 if (isa<llvm::PointerType>(Ty))
892 llvm::Type *ty = ConvertType(ret); local
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 330 ScalarEvolution::getConstant(Type *Ty, uint64_t V, bool isSigned) {
331 IntegerType *ITy = cast<IntegerType>(getEffectiveSCEVType(Ty));
336 unsigned SCEVTy, const SCEV *op, Type *ty)
337 : SCEV(ID, SCEVTy), Op(op), Ty(ty) {}
340 const SCEV *op, Type *ty)
341 : SCEVCastExpr(ID, scTruncate, op, ty) {
343 (Ty->isIntegerTy() || Ty->isPointerTy()) &&
348 const SCEV *op, Type *ty)
    [all...]
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
d3drmobj.h 335 STDMETHOD(Translate)(THIS_ D3DVALUE tx, D3DVALUE ty, D3DVALUE tz) PURE;
422 STDMETHOD(Translate)(THIS_ D3DVALUE tx, D3DVALUE ty, D3DVALUE tz) PURE;
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
D3DRMOBJ.H 335 STDMETHOD(Translate)(THIS_ D3DVALUE tx, D3DVALUE ty, D3DVALUE tz) PURE;
422 STDMETHOD(Translate)(THIS_ D3DVALUE tx, D3DVALUE ty, D3DVALUE tz) PURE;
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.cpp 7170 Length ty = Length(0, Fixed); local
7193 Length ty = Length(0, Fixed); local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderText.cpp 308 void RenderText::absoluteRects(Vector<IntRect>& rects, int tx, int ty)
311 rects.append(enclosingIntRect(FloatRect(tx + box->x(), ty + box->y(), box->width(), box->height())));
    [all...]
  /frameworks/native/opengl/libagl/
matrix.cpp 872 const GLfloat ty = -(top + bottom) * r_height; local
879 f[13] = ty;
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 114 AppsCustomizeAsyncTask(int p, AsyncTaskPageData.Type ty) {
117 dataType = ty;
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp 834 AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
836 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
837 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
839 assert(!Ty->isVoidTy() && "Cannot allocate void!");
843 AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
845 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
846 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
848 assert(!Ty->isVoidTy() && "Cannot allocate void!");
852 AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
854 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeVisualContext.cpp     [all...]
QTMovie.cpp 856 {X2Fix(t.tx), X2Fix(t.ty), fract1},
  /frameworks/wilhelm/tests/sandbox/
xaplay.c 721 printf(" ty = %u\n", timedTextStreamInformation.ty);
    [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-swt-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9-swt.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart-swt/1.0.9/
jfreechart-swt-1.0.9.jar 

Completed in 2011 milliseconds

<<11121314