HomeSort by relevance Sort by last modified time
    Searched defs:funcType (Results 1 - 12 of 12) sorted by null

  /prebuilts/go/darwin-x86/src/go/types/
typexpr.go 146 // funcType type-checks a function or method type.
147 func (check *Checker) funcType(sig *Signature, recvPar *ast.FieldList, ftyp *ast.FuncType) {
283 case *ast.FuncType:
286 check.funcType(typ, nil, e)
  /prebuilts/go/linux-x86/src/go/types/
typexpr.go 146 // funcType type-checks a function or method type.
147 func (check *Checker) funcType(sig *Signature, recvPar *ast.FieldList, ftyp *ast.FuncType) {
283 case *ast.FuncType:
286 check.funcType(typ, nil, e)
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 331 FunctionType *funcType =
335 Function *newFunction = Function::Create(funcType,
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
CodeExtractor.cpp 293 FunctionType *funcType =
297 Function *newFunction = Function::Create(funcType,
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
parser.go 539 f.Type = p.funcType()
772 t := p.funcType()
1053 return p.funcType()
1122 func (p *parser) funcType() *FuncType {
1124 defer p.trace("funcType")()
1127 typ := new(FuncType)
1361 f.Type = p.funcType()
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
parser.go 539 f.Type = p.funcType()
772 t := p.funcType()
1053 return p.funcType()
1122 func (p *parser) funcType() *FuncType {
1124 defer p.trace("funcType")()
1127 typ := new(FuncType)
1361 f.Type = p.funcType()
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/
swr_shader.cpp 397 FunctionType *funcType =
400 auto pFunction = Function::Create(funcType,
  /frameworks/base/core/java/com/android/internal/util/function/pooled/
PooledLambdaImpl.java 216 final int funcType = getFlags(MASK_FUNC_TYPE);
217 final int argCount = LambdaType.decodeArgCount(funcType);
218 final int returnType = LambdaType.decodeReturnType(funcType);
337 throw new IllegalStateException("Unknown function type: " + LambdaType.toString(funcType));
  /prebuilts/go/darwin-x86/src/reflect/
type.go 365 // funcType represents a function type.
368 // directly follows the funcType (and possibly its uncommonType). So
372 // funcType
376 type funcType struct {
385 typ typeOff // .(*FuncType) underneath
712 funcType
850 ft := (*funcType)(unsafe.Pointer(mtyp))
936 tt := (*funcType)(unsafe.Pointer(t))
997 tt := (*funcType)(unsafe.Pointer(t))
1029 tt := (*funcType)(unsafe.Pointer(t)
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
type.go 365 // funcType represents a function type.
368 // directly follows the funcType (and possibly its uncommonType). So
372 // funcType
376 type funcType struct {
385 typ typeOff // .(*FuncType) underneath
712 funcType
850 ft := (*funcType)(unsafe.Pointer(mtyp))
936 tt := (*funcType)(unsafe.Pointer(t))
997 tt := (*funcType)(unsafe.Pointer(t))
1029 tt := (*funcType)(unsafe.Pointer(t)
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 385 void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D);
608 void RewriteModernObjC::RewriteBlocksInFunctionProtoType(QualType funcType,
611 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) {
621 void RewriteModernObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
622 const PointerType *PT = funcType->getAs<PointerType>();
623 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
    [all...]
RewriteObjC.cpp 313 void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D);
545 void RewriteObjC::RewriteBlocksInFunctionProtoType(QualType funcType,
548 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) {
558 void RewriteObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
559 const PointerType *PT = funcType->getAs<PointerType>();
560 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
    [all...]

Completed in 431 milliseconds