Searched defs:Function (Results 101 - 125 of 125) sorted by relevance

12345

/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml32 | Function Constructor in type:TypeKind/t
272 | Function Constructor in type:ValueKind/t
1269 type any = [ `Module | `Function ] Constructor in type:PassManager/any
1271 external create_function : llmodule -> [ `Function ] t
1275 external initialize : [ `Function ] t -> bool = "llvm_passmanager_initialize"
1276 external run_function : llvalue -> [ `Function ] t -> bool
1278 external finalize : [ `Function ] t -> bool = "llvm_passmanager_finalize"
H A Dllvm_ocaml.c490 Function, enumerator in enum:ValueKind
525 DEFINE_CASE(Val, Function);
1092 DEFINE_ITERATORS(function, Function, LLVMModuleRef, LLVMValueRef,
2209 /* llmodule -> [ `Function ] PassManager.t -> bool */
2215 /* [ `Function ] PassManager.t -> bool */
2220 /* llvalue -> [ `Function ] PassManager.t -> bool */
2226 /* [ `Function ] PassManager.t -> bool */
/external/clang/include/clang/AST/
H A DDeclCXX.h49 NamedDecl *Function; member in class:clang::AnyFunctionDecl
51 AnyFunctionDecl(NamedDecl *ND) : Function(ND) { }
54 AnyFunctionDecl(FunctionDecl *FD) : Function(FD) { }
59 operator NamedDecl *() const { return Function; }
62 NamedDecl *get() const { return Function; }
1444 /// \brief Function type used by forallBases() as a callback.
1471 /// \brief Function type used by lookupInBases() to determine whether a
H A DExpr.h1169 Function, enumerator in enum:clang::PredefinedExpr::IdentType
1170 LFunction, // Same as Function, but as wide string.
/external/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp234 void setThunkLinkage(llvm::Function *Thunk, bool ForVTable,
478 llvm::Function *EmitVirtualMemPtrThunk(
709 llvm::Constant *Function = CGF.CGM.CreateRuntimeFunction( local
715 Value = CGF.EmitRuntimeCallOrInvoke(Function, Args).getInstruction();
729 llvm::Constant *Function = CGF.CGM.CreateRuntimeFunction( local
733 return CGF.EmitRuntimeCall(Function, Args);
1431 llvm::Function *MicrosoftCXXABI::EmitVirtualMemPtrThunk(
1442 return cast<llvm::Function>(GV);
1444 // Create the llvm::Function.
1447 llvm::Function *ThunkF
[all...]
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp663 if (const FunctionDecl *Function = ND->getAsFunction())
664 T = Function->getCallResultType();
699 if (const FunctionType *Function = T->getAs<FunctionType>()) {
700 T = Function->getReturnType();
1785 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(SemaRef.CurContext))
1786 isVoid = Function->getReturnType()->isVoidType();
2069 if (const FunctionDecl *Function = ND->getAsFunction())
2070 T = Function->getReturnType();
2253 const FunctionDecl *Function,
2259 for (unsigned P = Start, N = Function
2251 AddFunctionParameterChunks(ASTContext &Context, const PrintingPolicy &Policy, const FunctionDecl *Function, CodeCompletionBuilder &Result, unsigned Start = 0, bool InOptional = false) argument
2403 AddFunctionTypeQualsToCompletionString(CodeCompletionBuilder &Result, const FunctionDecl *Function) argument
2662 FunctionDecl *Function = FunTmpl->getTemplatedDecl(); local
[all...]
H A DSemaInit.cpp393 CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
2840 ::AddAddressOverloadResolutionStep(FunctionDecl *Function, argument
2845 S.Type = Function->getType();
2846 S.Function.HadMultipleCandidates = HadMultipleCandidates;
2847 S.Function.Function = Function;
2848 S.Function.FoundDecl = Found;
2880 InitializationSequence::AddUserConversionStep(FunctionDecl *Function, argument
2887 S.Function
4284 FunctionDecl *Function = Best->Function; local
[all...]
H A DSemaOverload.cpp179 "Function-to-pointer",
1185 ICS.Ambiguous.addConversion(Cand->Function);
1552 // Function-to-pointer conversion (C++ 4.3).
2315 // Function types are too different. Abort.
2989 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Best->Function);
3179 = dyn_cast<CXXConstructorDecl>(Best->Function)) {
3207 = dyn_cast<CXXConversionDecl>(Best->Function)) {
4170 ICS.UserDefined.ConversionFunction = Best->Function;
4183 ICS.Ambiguous.addConversion(Cand->Function);
5436 DeclAccessPair::make(Best->Function, Bes
5531 AddOverloadCandidate(FunctionDecl *Function, DeclAccessPair FoundDecl, ArrayRef<Expr *> Args, OverloadCandidateSet &CandidateSet, bool SuppressUserConversions, bool PartialOverloading, bool AllowExplicit) argument
5681 CheckEnableIf(FunctionDecl *Function, ArrayRef<Expr *> Args, bool MissingImplicitThis) argument
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderTextureFunctionTests.cpp53 enum Function enum in namespace:deqp::gles3::Functional::__anon20076
69 inline bool functionHasAutoLod (glu::ShaderType shaderType, Function function)
77 inline bool functionHasProj (Function function)
87 inline bool functionHasGrad (Function function)
92 inline bool functionHasLod (Function function)
102 Function function;
139 TextureLookupSpec (Function function_,
808 Function function = m_lookupSpec.function;
1397 : TestCaseGroup(context, "texture_functions", "Texture Access Function Tests")
1540 // Name Function MinCoor
[all...]
/external/clang/include/clang/Sema/
H A DDeclSpec.h1048 Pointer, Reference, Array, Function, BlockPointer, MemberPointer, Paren enumerator in enum:clang::DeclaratorChunk::__anon17615
1355 case DeclaratorChunk::Function: return Fun.destroy();
1928 case DeclaratorChunk::Function:
/external/clang/tools/libclang/
H A DCIndex.cpp3612 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
3615 OS << *Function; local
3616 if (Function->getPrimaryTemplate())
3619 for (unsigned I = 0, N = Function->getNumParams(); I != N; ++I) {
3622 OS << Function->getParamDecl(I)->getType().getAsString(Policy);
3625 if (Function->isVariadic()) {
3626 if (Function->getNumParams())
4779 case Decl::Function:
/external/chromium_org/v8/include/
H A Dv8.h73 class Function;
2337 Local<Function> getter,
2338 Handle<Function> setter = Handle<Function>(),
2551 * Note: This method behaves like the Function::NewInstance method.
2642 V8_INLINE Local<Function> Callee() const;
2711 class V8_EXPORT Function : public Object { class in namespace:v8
2717 static Local<Function> New(Isolate* isolate,
2770 V8_INLINE static Function* Cast(Value* obj);
2774 Function();
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmtypes.h834 GLenum Func; /**< Function for depth buffer compare */
1135 GLenum Function[3]; /**< Stencil function */ member in struct:gl_stencil_attrib
/external/mesa3d/src/mesa/main/
H A Dmtypes.h834 GLenum Func; /**< Function for depth buffer compare */
1135 GLenum Function[3]; /**< Stencil function */ member in struct:gl_stencil_attrib
/external/robolectric/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.metadata_2.0.0.v20100601.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...

Completed in 4679 milliseconds

12345