Home
last modified time | relevance | path

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

/external/v8/src/
Dd8.h330 enum SourceType { SCRIPT, MODULE }; enum
335 SourceType source_type);
339 SourceType source_type = SCRIPT);
Dd8.cc338 ScriptCompiler::CompileOptions compile_options, SourceType source_type) { in CompileString()
374 bool report_exceptions, SourceType source_type) { in ExecuteString()
1513 Shell::SourceType source_type = Shell::SCRIPT; in Execute()
/external/clang/lib/Sema/
DSemaInit.cpp3548 QualType &SourceType, in ResolveOverloadedFunctionForReferenceBinding() argument
3563 SourceType = Fn->getType(); in ResolveOverloadedFunctionForReferenceBinding()
3564 UnqualifiedSourceType = SourceType.getUnqualifiedType(); in ResolveOverloadedFunctionForReferenceBinding()
4445 QualType SourceType = Initializer->getType(); in TryUserDefinedConversion() local
4446 assert((DestType->isRecordType() || SourceType->isRecordType()) && in TryUserDefinedConversion()
4505 if (const RecordType *SourceRecordType = SourceType->getAs<RecordType>()) { in TryUserDefinedConversion()
4511 if (S.isCompleteType(DeclLoc, SourceType)) { in TryUserDefinedConversion()
4858 QualType SourceType; in InitializeFrom() local
4870 SourceType = Initializer->getType(); in InitializeFrom()
5009 (Context.hasSameUnqualifiedType(SourceType, DestType) || in InitializeFrom()
[all …]
DSemaChecking.cpp6930 static void DiagnoseImpCast(Sema &S, Expr *E, QualType SourceType, QualType T, in DiagnoseImpCast() argument
6936 << SourceType << T << E->getSourceRange() in DiagnoseImpCast()
6941 << SourceType << T << E->getSourceRange() << SourceRange(CContext); in DiagnoseImpCast()
7389 QualType SourceType = E->getType(); in CheckImplicitConversion() local
7394 SourceType = S.Context.getTypeDeclType(Enum); in CheckImplicitConversion()
7395 Source = S.Context.getCanonicalType(SourceType).getTypePtr(); in CheckImplicitConversion()
7407 return DiagnoseImpCast(S, E, SourceType, T, CC, in CheckImplicitConversion()
DSemaDeclCXX.cpp8248 const Type *SourceType = UD->getQualifier()->getAsType(); in CheckInheritingConstructorUsingDecl() local
8249 assert(SourceType && in CheckInheritingConstructorUsingDecl()
8255 auto *Base = findDirectBaseWithType(TargetClass, QualType(SourceType, 0), in CheckInheritingConstructorUsingDecl()
8261 << QualType(SourceType, 0) << TargetClass; in CheckInheritingConstructorUsingDecl()
/external/gmock/test/
Dgmock-actions_test.cc550 class SourceType { class
557 SourceType s; in TEST()
/external/google-breakpad/src/testing/test/
Dgmock-actions_test.cc550 class SourceType { class
557 SourceType s; in TEST()
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp2350 QualType SourceType, QualType ResType, in convertToType() argument
2355 convertToScalarValue(CGF, Value, SourceType, ResType, Loc)); in convertToType()
2357 auto Res = convertToComplexValue(CGF, Value, SourceType, ResType, Loc); in convertToType()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp12361 EVT SourceType = MVT::Other; in reduceBuildVecExtToExtBuildVec() local
12374 SourceType = MVT::Other; in reduceBuildVecExtToExtBuildVec()
12382 if (SourceType == MVT::Other) in reduceBuildVecExtToExtBuildVec()
12384 SourceType = InTy; in reduceBuildVecExtToExtBuildVec()
12385 else if (InTy != SourceType) { in reduceBuildVecExtToExtBuildVec()
12387 SourceType = MVT::Other; in reduceBuildVecExtToExtBuildVec()
12399 bool ValidTypes = SourceType != MVT::Other && in reduceBuildVecExtToExtBuildVec()
12401 isPowerOf2_32(SourceType.getSizeInBits()); in reduceBuildVecExtToExtBuildVec()
12409 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits(); in reduceBuildVecExtToExtBuildVec()
12411 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType): in reduceBuildVecExtToExtBuildVec()
[all …]