HomeSort by relevance Sort by last modified time
    Searched defs:Func (Results 1 - 25 of 246) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/test/CodeGen/
2003-10-06-NegateExprType.c 5 void Func(int *B) {
2003-10-29-AsmRename.c 7 extern int Func(struct foo*) __asm__("Func64");
10 int Func(struct foo *F) {
20 Func(0); /* should be renamed to call Func64 */
  /prebuilts/go/darwin-x86/test/fixedbugs/bug466.dir/
a.go 9 func Func() []complex128 {
13 func Mul(z complex128) complex128 {
  /prebuilts/go/linux-x86/test/fixedbugs/bug466.dir/
a.go 9 func Func() []complex128 {
13 func Mul(z complex128) complex128 {
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-plugin/
pr12696-1.cc 7 void Func() { new Bar(); }
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
FunctionDelegates.cs 37 public delegate TResult Func<TResult>();
39 public delegate TResult Func<T, TResult>(T arg);
  /external/clang/test/CoverageMapping/
system_macro.c 6 #define Func(x) if (x) {}
16 Func(x);
  /external/clang/test/SemaTemplate/
instantiate-overloaded-arrow.cpp 18 void Func() {
  /external/clang/test/CodeGenCXX/
2009-08-11-VectorRetTy.cpp 3 typedef void (*Func) ();
11 Func arr[] = {
  /external/compiler-rt/test/asan/TestCases/
uar_and_exceptions.cc 21 void Func(int depth) {
25 Func(depth - 1);
33 Func(argc * 100);
  /external/llvm/tools/llvm-cov/
llvm-cov.cpp 69 MainFunction Func = StringSwitch<MainFunction>(argv[1])
78 if (Func) {
81 return Func(argc - 1, argv + 1);
  /device/linaro/bootloader/edk2/DuetPkg/AcpiResetDxe/
Reset.c 58 UINT8 Func;
126 Func = (UINT8) (RShiftU64 (mAcpiDescription.RESET_REG.Address, 16) & 0x7);
128 PciWrite8 (PCI_LIB_ADDRESS (0, Dev, Func, Register), mAcpiDescription.RESET_VALUE);
  /external/clang/test/SemaCXX/
incomplete-call.cpp 20 typedef A (*Func)();
21 Func fp;
23 ((Func)0)(); // expected-error {{calling function with incomplete return type 'A'}}
  /external/python/cpython2/Lib/idlelib/idle_test/
mock_idle.py 8 class Func(object):
  /external/python/cpython3/Lib/idlelib/idle_test/
mock_idle.py 8 class Func:
  /external/tensorflow/tensorflow/compiler/tests/
function_test.py 88 def Func(a, b):
93 expected = Func(aval, bval)
99 return Func(a, b)
  /prebuilts/go/darwin-x86/src/go/doc/
doc.go 30 Funcs []*Func
51 Funcs []*Func // sorted list of functions returning this type
52 Methods []*Func // sorted list of methods (including embedded ones) of this type
55 // Func is the documentation for a func declaration.
56 type Func struct {
94 func New(pkg *ast.Package, importPath string, mode Mode) *Package {
  /prebuilts/go/linux-x86/src/go/doc/
doc.go 30 Funcs []*Func
51 Funcs []*Func // sorted list of functions returning this type
52 Methods []*Func // sorted list of methods (including embedded ones) of this type
55 // Func is the documentation for a func declaration.
56 type Func struct {
94 func New(pkg *ast.Package, importPath string, mode Mode) *Package {
  /device/linaro/bootloader/edk2/DuetPkg/Include/Guid/
PciOptionRomTable.h 30 UINT8 Func;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Guid/PciOptionRomTable/
PciOptionRomTable.h 37 UINT8 Func;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeFilter.cs 35 public delegate TResult Func<T, TResult>(T arg);
121 Func<object, object> pre = delegate(object o)
126 Func<object, object> post = delegate(object o)
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3.cpp 30 void Func() {}
36 Foo(Func<int>);
  /external/clang/unittests/Analysis/
CFGTest.cpp 36 const auto *Func = Result.Nodes.getNodeAs<FunctionDecl>("func");
37 Stmt *Body = Func->getBody();
48 Finder.addMatcher(ast_matchers::functionDecl().bind("func"), &Callback);
  /external/eigen/doc/examples/
nullary_indexing.cpp 35 typedef indexing_functor<ArgType,RowIndexType,ColIndexType> Func;
36 typedef typename Func::MatrixType MatrixType;
37 return MatrixType::NullaryExpr(row_indices.size(), col_indices.size(), Func(arg.derived(), row_indices, col_indices));
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
copy_assign.pass.cpp 93 typedef std::function<int()> Func;
94 Func f = g0;
95 Func& fr = (f = f);
100 typedef std::function<int(int)> Func;
101 Func f = g;
102 Func& fr = (f = f);
107 typedef std::function<int(int, int)> Func;
108 Func f = g2;
109 Func& fr = (f = f);
114 typedef std::function<int(int, int, int)> Func;
    [all...]

Completed in 1072 milliseconds

1 2 3 4 5 6 7 8 910