/external/clang/lib/AST/ |
ASTDiagnostic.cpp | 231 static bool FormatTemplateTypeDiff(ASTContext &Context, QualType FromType, 258 QualType FromType = 259 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.FromType)); 263 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree, 278 Val = TDT.PrintFromType ? TDT.FromType : TDT.ToType; 388 /// FromType - When single type printing is selected, this is the type to be 391 QualType FromType; 393 /// ToType - The type that FromType is compared to. Only in tree printing 439 /// FromType, ToType - The type arguments. 440 QualType FromType, ToType [all...] |
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/ |
vertexconversion.h | 86 template <class FromType, std::size_t ScaleBits> 93 static float convert(FromType x) 95 const float divisor = 1.0f / static_cast<float>(static_cast<FromType>(1) << ScaleBits);
|
/external/clang/lib/Sema/ |
SemaOverload.cpp | 238 // Note that FromType has not necessarily been transformed by the 240 // check for their presence as well as checking whether FromType is 260 QualType FromType = getFromType(); 263 // Note that FromType has not necessarily been transformed by the 267 FromType = Context.getArrayDecayedType(FromType); 269 if (Second == ICK_Pointer_Conversion && FromType->isAnyPointerType()) 317 QualType FromType = getToType(0); 327 if (FromType->isRealFloatingType() && ToType->isIntegralType(Ctx)) { 329 } else if (FromType->isIntegralType(Ctx) && ToType->isRealFloatingType()) [all...] |
SemaExprCXX.cpp | [all...] |
SemaExprObjC.cpp | [all...] |
SemaCast.cpp | [all...] |
SemaExpr.cpp | [all...] |
SemaTemplateDeduction.cpp | [all...] |
SemaInit.cpp | [all...] |
/external/compiler-rt/lib/ubsan/ |
ubsan_handlers.cc | 236 << Value(Data->FromType, From) << Data->FromType << Data->ToType; 243 << Value(Data->FromType, From) << Data->FromType << Data->ToType;
|
ubsan_handlers.h | 100 const TypeDescriptor &FromType;
|
/external/llvm/lib/Target/NVPTX/ |
NVPTX.h | 120 enum FromType {
|
NVPTXISelDAGToDAG.cpp | 229 // Type Setting: fromType + fromTypeWidth 238 unsigned int fromType; 240 fromType = NVPTX::PTXLdStInstCode::Signed; 242 fromType = NVPTX::PTXLdStInstCode::Float; 244 fromType = NVPTX::PTXLdStInstCode::Unsigned; 278 getI32Imm(vecType), getI32Imm(fromType), 307 getI32Imm(vecType), getI32Imm(fromType), 361 getI32Imm(vecType), getI32Imm(fromType), 413 getI32Imm(vecType), getI32Imm(fromType), 455 // Type Setting: fromType + fromTypeWidt [all...] |
/external/chromium_org/v8/src/ |
property-details.h | 117 static Representation FromType(TypeInfo info); 118 static Representation FromType(Handle<Type> type);
|
types.cc | 519 Representation Representation::FromType(Handle<Type> type) {
|
type-info.cc | 601 Representation Representation::FromType(TypeInfo info) {
|
hydrogen.cc | [all...] |
/external/clang/include/clang/Sema/ |
Overload.h | 197 /// FromType - The type that this conversion is converting 525 QualType FromType, QualType ToType) { 527 Bad.init(Failure, FromType, ToType);
|
Sema.h | [all...] |
/external/chromium/testing/gmock/test/ |
gmock-actions_test.cc | 519 class FromType { 521 FromType(bool* is_converted) : converted_(is_converted) {} 527 GTEST_DISALLOW_ASSIGN_(FromType); 532 ToType(const FromType& x) { *x.converted() = true; } 537 FromType x(&converted); [all...] |
/external/clang/lib/Basic/ |
Diagnostic.cpp | 844 TDT.FromType = getRawArg(ArgNo); 890 TDT.FromType)); [all...] |
/external/llvm/lib/Transforms/Scalar/ |
ScalarReplAggregates.cpp | 766 Type *FromType = FromVal->getType(); 767 if (FromType == ToType && Offset == 0) 772 if (VectorType *VTy = dyn_cast<VectorType>(FromType)) { 773 unsigned FromTypeSize = TD.getTypeAllocSize(FromType); [all...] |
/external/clang/include/clang/Basic/ |
Diagnostic.h | [all...] |