Home
last modified time | relevance | path

Searched full:iscallable (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/lyaml/lib/lyaml/
H A Dfunctional.lua44 -- @usage r = iscallable(x) and x(...)
45 local function iscallable(x) function
62 if iscallable(fn) then
85 iscallable = iscallable,
/freebsd/contrib/lyaml/doc/modules/
H A Dlyaml.functional.html68 <td class="name" nowrap><a href="#iscallable">iscallable (x)</a></td>
122 <a name = "iscallable"></a>
123 <strong>iscallable (x)</strong>
147 <pre class="example">r = iscallable(x) <span class="keyword">and</span> x(...)</pre>
/freebsd/contrib/lyaml/spec/
H A Dlib_lyaml_functional_spec.yaml8 exported_apis = {'NULL', 'anyof', 'id', 'iscallable', 'isnull'}
92 - describe iscallable:
94 f = M.iscallable
H A Dspec_helper.lua98 function iscallable(x) function
228 return iscallable(actual)
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h422 bool IsCallable) in Symbol() argument
428 setCallable(IsCallable); in Symbol()
458 orc::ExecutorAddrDiff Size, bool IsCallable, in constructAnonDef() argument
464 Scope::Local, IsLive, IsCallable); in constructAnonDef()
471 Scope S, bool IsLive, bool IsCallable) { in constructNamedDef() argument
476 new (Sym) Symbol(Base, Offset, Name, Size, L, S, IsLive, IsCallable); in constructNamedDef()
524 bool isCallable() const { return IsCallable; } in isCallable() function
527 void setCallable(bool IsCallable) { this->IsCallable = IsCallable; } in setCallable() argument
659 // note: Size, Linkage and IsCallable fields left unchanged. in makeExternal()
680 uint64_t IsCallable : 1; variable
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DDebugUtils.cpp65 if (PrintCallable && Flags.isCallable()) in flagsMatchCLOpts()
69 if (PrintData && !Flags.isCallable()) in flagsMatchCLOpts()
164 if (Flags.isCallable()) in operator <<()
H A DSectCreate.cpp32 G->addDefinedSymbol(B, Info.Offset, *Name, 0, L, S, Info.Flags.isCallable(), in materialize()
H A DLazyReexports.cpp235 assert(KV.second.AliasFlags.isCallable() && in extractFlags()
H A DObjectLinkingLayer.cpp52 assert(Sym.isCallable() && "Only callable symbols can have thumb flag"); in getJITSymbolPtrForSymbol()
71 if (Sym.isCallable()) in getJITSymbolFlagsForSymbol()
H A DCompileOnDemandLayer.cpp149 if (Flags.isCallable()) in emit()
H A DMachOPlatform.cpp466 if (Sym.isCallable()) in flagsForSymbol()
/freebsd/contrib/lyaml/build-aux/
H A Dluke375 …ocal function apply(fn,argu)assert(fn~=nil,'cannot apply nil-valued function')if iscallable(fn)then
379 local function call(fn,...)assert(fn~=nil,'cannot call nil-valued function')if iscallable(fn)then
442 local default=branches[DEFAULT]if iscallable(default)then
550 end)(tointeger)local function iscallable(x)return type(x)=='function'and x or(getmetatable(x)or{}).…
552 local function getmetamethod(x,n)return iscallable((getmetatable(x)or{})[tostring(n)])end
600 …ethod=getmetamethod,gmatch=string.gmatch,gsub=string.gsub,int=int,iscallable=iscallable,len=len,li…
631 …std.functional',}local contextmanager_mt={__index=function(self,key)if iscallable(self.context[key…
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DVTuneSupportPlugin.cpp50 if (!Sym->isCallable()) in getMethodBatch()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DJITSymbol.h149 bool isCallable() const { return (Flags & Callable) == Callable; } in isCallable() function
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLink.cpp501 Sym.setCallable(Def.getFlags().isCallable()); in absoluteSymbolsLinkGraph()
H A DCOFFLinkGraphBuilder.cpp394 Target.getSize(), L, S, Target.isCallable(), in createAliasSymbol()