HomeSort by relevance Sort by last modified time
    Searched refs:Func (Results 151 - 175 of 911) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeFilter.cs 76 Func<object, object> pre = ( o ) =>
81 Func<object, object> post = ( o ) =>
  /external/clang/test/SemaCXX/
err_typecheck_assign_const.cpp 127 typedef const int &Func();
129 Func &bar();
  /external/libcxx/test/std/experimental/utilities/tuple/tuple.apply/
return_type.pass.cpp 45 template <int Func, class Expect>
48 using F = decltype(f(index_t<Func>{}));
  /external/libunwind/doc/
unw_get_proc_info.tex 15 \Type{int} \Func{unw\_get\_proc\_info}(\Type{unw\_cursor\_t~*}\Var{cp}, \Type{unw\_proc\_info\_t~*}\Var{pip});\\
19 The \Func{unw\_get\_proc\_info}() routine returns auxiliary
58 for use by the \Func{find\_proc\_info}() call-back (see
59 \Func{unw\_create\_addr\_space}(3)). The
60 \Func{unw\_get\_proc\_info}() routine
64 \Func{find\_proc\_info}() call-back (see
65 \Func{unw\_create\_addr\_space}(3)). The
66 \Func{unw\_get\_proc\_info}() routine
71 \Func{find\_proc\_info}() call-back (see
72 \Func{unw\_create\_addr\_space}(3)). Th
    [all...]
unw_is_fpreg.tex 15 \Type{int} \Func{unw\_is\_fpreg}(\Type{unw\_regnum\_t} \Var{reg});\\
19 The \Func{unw\_is\_fpreg}() routine checks whether register number
27 The \Func{unw\_is\_fpreg}() routine returns a non-zero value if
33 \Func{unw\_is\_fpreg}() is thread-safe as well as safe to use
unw_get_proc_info_by_ip.tex 15 \Type{int} \Func{unw\_get\_proc\_info\_by\_ip}(\Type{unw\_addr\_space\_t~}\Var{as}, \Type{unw\_word\_t~}\Var{ip}, \Type{unw\_proc\_info\_t~*}\Var{pip}, \Type{void~*}\Var{arg});\\
19 The \Func{unw\_get\_proc\_info\_by\_ip}() routine returns the same
21 \Func{unw\_get\_proc\_info}(), except that the info is looked up by
26 than \Func{unw\_get\_proc\_info}().
37 argument of the same name for \Func{unw\_init\_remote}(). When
52 On successful completion, \Func{unw\_get\_proc\_info\_by\_ip}()
58 \Func{unw\_get\_proc\_info}() is thread-safe. If the local
71 In addition, \Func{unw\_get\_proc\_info}() may return any error
72 returned by the \Func{access\_mem}() call-back (see
73 \Func{unw\_create\_addr\_space}(3))
    [all...]
unw_get_proc_name.tex 15 \Type{int} \Func{unw\_get\_proc\_name}(\Type{unw\_cursor\_t~*}\Var{cp}, \Type{char~*}\Var{bufp}, \Type{size\_t} \Var{len}, \Type{unw\_word\_t~*}\Var{offp});\\
19 The \Func{unw\_get\_proc\_name}() routine returns the name of the
26 of the procedure. For example, if procedure \Func{foo}() starts at
27 address 0x40003000, then invoking \Func{unw\_get\_proc\_name}() on a
36 dynamic symbol table. In such cases, \Func{unw\_get\_proc\_name}()
45 On successful completion, \Func{unw\_get\_proc\_name}() returns 0.
51 \Func{unw\_get\_proc\_name}() is thread-safe. If cursor \Var{cp} is
65 In addition, \Func{unw\_get\_proc\_name}() may return any error
66 returned by the \Func{access\_mem}() call-back (see
67 \Func{unw\_create\_addr\_space}(3))
    [all...]
  /external/skia/experimental/svg/model/
SkSVGAttributeParser.h 37 bool advanceWhile(F func);
62 template <typename Func, typename T>
63 bool parseParenthesized(const char* prefix, Func, T* result);
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMFrameLowering.h 66 bool(*Func)(unsigned, bool),
71 bool(*Func)(unsigned, bool)) const;
  /external/swiftshader/third_party/subzero/src/
IceLoopAnalyzer.cpp 24 explicit LoopAnalyzer(Cfg *Func);
103 Cfg *const Func;
104 /// A list of decorated nodes in the same order as Func->getNodes() which
144 LoopAnalyzer::LoopAnalyzer(Cfg *Fn) : Func(Fn) {
145 const NodeList &Nodes = Func->getNodes();
160 assert(AllNodes.size() == Func->getNodes().size());
257 CfgVector<Loop> ComputeLoopInfo(Cfg *Func) {
258 auto LoopBodies = LoopAnalyzer(Func).getLoopBodies();
271 CfgNode *Cur = Func->getNodes()[NodeIndex];
IceTranslator.cpp 59 void Translator::translateFcn(std::unique_ptr<Cfg> Func) {
60 Ctx->optQueueBlockingPush(makeUnique<CfgOptWorkItem>(std::move(Func)));
IceVariableSplitting.cpp 73 explicit VariableMap(Cfg *Func)
74 : Func(Func), NumVars(Func->getNumVariables()), Map(NumVars) {}
105 Variable *NewVar = Func->makeVariable(Var->getType());
146 Cfg *const Func;
168 explicit LocalVariableSplitter(Cfg *Func)
169 : Target(Func->getTarget()), VarMap(Func) {}
496 void splitBlockLocalVariables(Cfg *Func) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
stackframe.go 8 func stackframe(f *Func) {
  /prebuilts/go/darwin-x86/test/fixedbugs/bug466.dir/
b.go 9 func main() {
10 s := a.Func()
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
stackframe.go 8 func stackframe(f *Func) {
  /prebuilts/go/linux-x86/test/fixedbugs/bug466.dir/
b.go 9 func main() {
10 s := a.Func()
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/utilities/tuple/tuple.apply/
return_type.pass.cpp 48 template <int Func, class Expect>
51 using F = decltype((f(index<Func>{})));
  /system/extras/iotop/
tasklist.cpp 30 template<typename Func>
31 static bool ScanPidsInDir(const std::string& name, Func f) {
  /external/eigen/unsupported/test/
autodiff.cpp 157 template<typename Func> void forward_jacobian_cpp11(const Func& f)
159 typedef typename Func::ValueType::Scalar Scalar;
160 typedef typename Func::ValueType ValueType;
161 typedef typename Func::InputType InputType;
162 typedef typename AutoDiffJacobian<Func>::JacobianType JacobianType;
179 AutoDiffJacobian<Func> autoj(f);
191 template<typename Func> void forward_jacobian(const Func& f)
193 typename Func::InputType x = Func::InputType::Random(f.inputs())
    [all...]
  /external/llvm/lib/ProfileData/
InstrProfWriter.cpp 188 for (const auto &Func : PD) {
189 const InstrProfRecord &IPR = Func.second;
297 void InstrProfWriter::writeRecordInText(const InstrProfRecord &Func,
300 OS << Func.Name << "\n";
301 OS << "# Func Hash:\n" << Func.Hash << "\n";
302 OS << "# Num Counters:\n" << Func.Counts.size() << "\n";
304 for (uint64_t Count : Func.Counts)
307 uint32_t NumValueKinds = Func.getNumValueKinds();
313 OS << "# Num Value Kinds:\n" << Func.getNumValueKinds() << "\n"
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
sync_method_unittest.cc 26 template <typename Func>
27 static void RunLambda(Func func, Args... args) {
28 func(std::move(args)...);
31 template <typename Func>
32 static CallbackType BindLambda(Func func) {
33 return base::Bind(&LambdaBinder::RunLambda<Func>, func);
43 template <typename Func>
    [all...]
  /external/python/cpython2/Lib/idlelib/idle_test/
test_textview.py 8 from idlelib.idle_test.mock_idle import Func
13 transient = Func()
14 grab_set = Func()
15 wait_window = Func()
51 view.destroy = Func()
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 54 static bool ignoreCallingConv(LibFunc::Func Func) {
55 return Func == LibFunc::abs || Func == LibFunc::labs ||
56 Func == LibFunc::llabs || Func == LibFunc::strlen;
94 LibFunc::Func DoubleFn, LibFunc::Func FloatFn,
95 LibFunc::Func LongDoubleFn) {
782 LibFunc::Func Func
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h 184 typedef VariantMatcher (*MarshallerType)(void (*Func)(),
190 /// \param Marshaller Function to unpack the arguments and call \c Func
191 /// \param Func Matcher construct function. This is the function that
197 MarshallerType Marshaller, void (*Func)(), StringRef MatcherName,
200 : Marshaller(Marshaller), Func(Func), MatcherName(MatcherName),
207 return Marshaller(Func, MatcherName, NameRange, Args, Error);
225 void (* const Func)();
301 ResultT (*Func)(ArrayRef<const ArgT *>)>
323 Out = outvalueToVariantMatcher(Func(llvm::makeArrayRef(InnerArgs
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/Ia32/
PcatIo.c 151 Pci.Bits.Func = PciAddress.Function;
229 UINT16 Func;
244 for (Func = MinFunc; Func <= MaxFunc; Func++) {
249 Address = EFI_PCI_ADDRESS (Bus, Device, Func, 0);
259 // there must be 1 function at Function 0. So if Func = 0, there
263 if (PciHeader.Hdr.VendorId == 0xffff && Func == 0) {
284 Func,
292 if ((PciHeader.Hdr.HeaderType & HEADER_TYPE_MULTI_FUNCTION) == 0x00 && Func == 0) {
    [all...]

Completed in 703 milliseconds

1 2 3 4 5 67 8 91011>>