Home
last modified time | relevance | path

Searched refs:SourceType (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/net/base/
Dnet_log.h60 enum SourceType { enum
102 Source(SourceType type, uint32 id);
119 SourceType type;
264 static const char* SourceTypeToString(SourceType source_type);
393 static BoundNetLog Make(NetLog* net_log, NetLog::SourceType source_type);
Dnet_log.cc82 NetLog::Source::Source(SourceType type, uint32 id) : type(type), id(id) { in Source()
119 *source = Source(static_cast<SourceType>(source_type), source_id); in FromEventParameters()
327 const char* NetLog::SourceTypeToString(SourceType source) { in SourceTypeToString()
342 dict->SetInteger(SourceTypeToString(static_cast<SourceType>(i)), i); in GetSourceTypesAsValue()
499 NetLog::SourceType source_type) { in Make()
/external/clang/lib/Sema/
DSemaInit.cpp3322 QualType &SourceType, in ResolveOverloadedFunctionForReferenceBinding() argument
3337 SourceType = Fn->getType(); in ResolveOverloadedFunctionForReferenceBinding()
3338 UnqualifiedSourceType = SourceType.getUnqualifiedType(); in ResolveOverloadedFunctionForReferenceBinding()
4173 QualType SourceType = Initializer->getType(); in TryUserDefinedConversion() local
4174 assert((DestType->isRecordType() || SourceType->isRecordType()) && in TryUserDefinedConversion()
4233 if (const RecordType *SourceRecordType = SourceType->getAs<RecordType>()) { in TryUserDefinedConversion()
4239 if (!S.RequireCompleteType(DeclLoc, SourceType, 0)) { in TryUserDefinedConversion()
4578 QualType SourceType; in InitializeFrom() local
4591 SourceType = Initializer->getType(); in InitializeFrom()
4730 (Context.hasSameUnqualifiedType(SourceType, DestType) || in InitializeFrom()
[all …]
DSemaChecking.cpp5729 static void DiagnoseImpCast(Sema &S, Expr *E, QualType SourceType, QualType T, in DiagnoseImpCast() argument
5735 << SourceType << T << E->getSourceRange() in DiagnoseImpCast()
5740 << SourceType << T << E->getSourceRange() << SourceRange(CContext); in DiagnoseImpCast()
6055 QualType SourceType = E->getType(); in CheckImplicitConversion() local
6060 SourceType = S.Context.getTypeDeclType(Enum); in CheckImplicitConversion()
6061 Source = S.Context.getCanonicalType(SourceType).getTypePtr(); in CheckImplicitConversion()
6073 return DiagnoseImpCast(S, E, SourceType, T, CC, in CheckImplicitConversion()
DSemaDeclCXX.cpp7775 const Type *SourceType = UD->getQualifier()->getAsType(); in CheckInheritingConstructorUsingDecl() local
7776 assert(SourceType && in CheckInheritingConstructorUsingDecl()
7782 auto *Base = findDirectBaseWithType(TargetClass, QualType(SourceType, 0), in CheckInheritingConstructorUsingDecl()
7788 << QualType(SourceType, 0) << TargetClass; in CheckInheritingConstructorUsingDecl()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
DWebGLImageConversion.cpp232 template<int format, typename SourceType, typename DstType>
233 void unpack(const SourceType*, DstType*, unsigned) in unpack() argument
540 template<int format, int alphaOp, typename SourceType, typename DstType>
541 void pack(const SourceType*, DstType*, unsigned) in pack() argument
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp10053 EVT SourceType = MVT::Other; in reduceBuildVecExtToExtBuildVec() local
10066 SourceType = MVT::Other; in reduceBuildVecExtToExtBuildVec()
10074 if (SourceType == MVT::Other) in reduceBuildVecExtToExtBuildVec()
10076 SourceType = InTy; in reduceBuildVecExtToExtBuildVec()
10077 else if (InTy != SourceType) { in reduceBuildVecExtToExtBuildVec()
10079 SourceType = MVT::Other; in reduceBuildVecExtToExtBuildVec()
10091 bool ValidTypes = SourceType != MVT::Other && in reduceBuildVecExtToExtBuildVec()
10093 isPowerOf2_32(SourceType.getSizeInBits()); in reduceBuildVecExtToExtBuildVec()
10101 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits(); in reduceBuildVecExtToExtBuildVec()
10103 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType): in reduceBuildVecExtToExtBuildVec()
[all …]