/external/webkit/Source/JavaScriptCore/parser/ |
ResultType.h | 31 struct ResultType { 46 explicit ResultType(Type type) 81 static ResultType nullType() 83 return ResultType(TypeMaybeNull); 86 static ResultType booleanType() 88 return ResultType(TypeMaybeBool); 91 static ResultType numberType() 93 return ResultType(TypeMaybeNumber); 96 static ResultType numberTypeCanReuse() 98 return ResultType(TypeReusable | TypeMaybeNumber) [all...] |
/external/chromium/chrome/browser/safe_browsing/ |
protocol_manager.h | 166 enum ResultType { 195 ResultType result_type);
|
/external/clang/include/clang/AST/ |
ExprObjC.h | 344 QualType ResultType; 348 ResultType = Getter->getResultType(); 350 ResultType = getType(); 353 ResultType = Getter->getResultType(); // with reference! 355 return ResultType; [all...] |
Type.h | [all...] |
/external/clang/lib/CodeGen/ |
CGExprConstant.cpp | 516 llvm::Type *ResultType = ConvertType(E->getType()); 517 LHS = llvm::ConstantExpr::getPtrToInt(LHS, ResultType); 518 RHS = llvm::ConstantExpr::getPtrToInt(RHS, ResultType); [all...] |
CGStmt.cpp | [all...] |
CGBlocks.cpp | 752 QualType ResultType = FuncTy->getResultType(); 755 CGM.getTypes().getFunctionInfo(ResultType, Args, [all...] |
CGBuiltin.cpp | 58 QualType T, llvm::Type *ResultType) { 61 if (ResultType->isPointerTy()) 62 return CGF.Builder.CreateIntToPtr(V, ResultType); 64 assert(V->getType() == ResultType); 239 llvm::Type *ResultType = ConvertType(E->getType()); 241 if (Result->getType() != ResultType) 242 Result = Builder.CreateIntCast(Result, ResultType, /*isSigned*/true, 254 llvm::Type *ResultType = ConvertType(E->getType()); 256 if (Result->getType() != ResultType) 257 Result = Builder.CreateIntCast(Result, ResultType, /*isSigned*/true [all...] |
CGClass.cpp | [all...] |
CGExpr.cpp | [all...] |
CGExprCXX.cpp | 51 QualType ResultType = FPT->getResultType(); 52 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args, [all...] |
CGObjC.cpp | 155 QualType ResultType = 185 result = Runtime.GenerateMessageSendSuper(*this, Return, ResultType, 194 result = Runtime.GenerateMessageSend(*this, Return, ResultType, [all...] |
CGExprScalar.cpp | [all...] |
CGVTables.cpp | [all...] |
/external/clang/lib/Sema/ |
SemaDeclObjC.cpp | 118 QualType ResultType = NewMethod->getResultType(); 142 << ResultType 147 << ResultType [all...] |
SemaTemplateDeduction.cpp | [all...] |
SemaChecking.cpp | 446 QualType ResultType = ValType; 517 ResultType = Context.BoolTy; 523 ResultType = Context.VoidTy; 594 TheCall->setType(ResultType); [all...] |
SemaExprCXX.cpp | [all...] |
SemaCodeComplete.cpp | [all...] |
SemaDecl.cpp | [all...] |
SemaDeclCXX.cpp | [all...] |
SemaExpr.cpp | [all...] |
/external/chromium/testing/gmock/include/gmock/ |
gmock-matchers.h | [all...] |
/external/clang/lib/AST/ |
ASTImporter.cpp | [all...] |
ASTContext.cpp | [all...] |