Searched refs:functionType (Results 1 – 7 of 7) sorted by relevance
/external/clang/unittests/AST/ |
D | ASTTypeTraitsTest.cpp | 92 EXPECT_TRUE(Verifier.match("void f() {}", typeLoc(loc(functionType())))); in TEST()
|
/external/chromium_org/chrome/common/extensions/docs/examples/howto/sandbox/ |
D | handlebars-1.0.0.beta.6.js | 29 var toString = Object.prototype.toString, functionType = "[object Function]"; variable 38 if(type === functionType) { context = context.call(this); } 74 if(type === functionType) { context = context.call(this); } 1323 this.context.aliases.functionType = '"function"';
|
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
D | WebGLRenderingContextBase.cpp | 3338 …lidateTexFunc(const char* functionName, TexFuncValidationFunctionType functionType, TexFuncValidat… in validateTexFunc() argument 3340 …if (!validateTexFuncParameters(functionName, functionType, target, level, internalformat, width, h… in validateTexFunc() 3347 if (functionType == NotTexSubImage2D) { in validateTexFunc() 4700 …se::validateTexFuncDimensions(const char* functionName, TexFuncValidationFunctionType functionType, in validateTexFuncDimensions() argument 4721 if (functionType != TexSubImage2D && width != height) { in validateTexFuncDimensions() 4739 …FuncParameters(const char* functionName, TexFuncValidationFunctionType functionType, GLenum target, in validateTexFuncParameters() argument 4748 if (!validateTexFuncDimensions(functionName, functionType, target, level, width, height)) in validateTexFuncParameters() 4912 …TexDimensions(const char* functionName, TexFuncValidationFunctionType functionType, GLenum target,… in validateCompressedTexDimensions() argument 4914 if (!validateTexFuncDimensions(functionName, functionType, target, level, width, height)) in validateCompressedTexDimensions()
|
/external/clang/lib/ASTMatchers/Dynamic/ |
D | Registry.cpp | 165 REGISTER_MATCHER(functionType); in RegistryMaps()
|
/external/clang/unittests/ASTMatchers/ |
D | ASTMatchersTest.cpp | 761 qualType(functionType(), forEach(qualType(isInteger()).bind("x"))), in TEST() 3771 EXPECT_TRUE(matches("int (*f)(int);", functionType())); in TEST() 3772 EXPECT_TRUE(matches("void f(int i) {}", functionType())); in TEST() 3782 varDecl(hasType(pointsTo(parenType(innerType(functionType()))))))); in TEST() 3785 varDecl(hasType(pointsTo(parenType(innerType(functionType()))))))); in TEST()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 3169 AST_TYPE_MATCHER(FunctionType, functionType);
|
/external/clang/lib/Sema/ |
D | TreeTransform.h | 9692 QualType functionType = in TransformBlockExpr() local 9695 blockScope->FunctionType = functionType; in TransformBlockExpr()
|