HomeSort by relevance Sort by last modified time
    Searched full:overload (Results 1 - 25 of 898) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/rs/scriptc/
rs_object.rsh 36 * \overload
41 * \overload
46 * \overload
51 * \overload
56 * \overload
61 * \overload
66 * \overload
71 * \overload
76 * \overload
81 * \overload
    [all...]
rs_matrix.rsh 39 * \overload
44 * \overload
61 * \overload
66 * \overload
78 * \overload
82 * \overload
93 * \overload
97 * \overload
101 * \overload
105 * \overload
    [all...]
  /prebuilts/sdk/renderscript/include/
rs_object.rsh 36 * \overload
41 * \overload
46 * \overload
51 * \overload
56 * \overload
61 * \overload
66 * \overload
71 * \overload
76 * \overload
81 * \overload
    [all...]
rs_matrix.rsh 39 * \overload
44 * \overload
61 * \overload
66 * \overload
78 * \overload
82 * \overload
93 * \overload
97 * \overload
101 * \overload
105 * \overload
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
CharacterBenchmark.java 31 @Param private Overload overload; field in class:CharacterBenchmark
39 public enum Overload { CHAR, INT }
60 if (overload == Overload.CHAR) {
77 if (overload == Overload.CHAR) {
93 if (overload == Overload.CHAR) {
109 if (overload == Overload.CHAR)
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p6.cpp 5 // expected-note {{no overload of 'temp2' matching 'void (*)(int)'}}
9 // okay: deduce T=int from first argument, A=int during overload
35 // pick correct overload of 'over' during overload resolution for 'apply'
41 // deduce T=int from first arg, A=int B=void during overload resolution
46 // overload failure
57 // deduction failure: overload has template => undeduced context
69 // okay: only one overload matches
76 // deduction failure: overload has multiple matches => undeduced context
82 // deduction failure: overload has template => undeduced contex
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/t/
e13_overloaded_eq.t 30 use overload (
43 use overload (
50 return overload::StrVal($_[0]);
56 use overload 'eq' => sub { $_[0]->{v} eq $_[1] }, '""' => sub { $_[0]->{v} }, fallback => 1;
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p10.cpp 14 static void Overload(int);
15 void Overload();
16 virtual X0& Overload(float);
20 (void)[&Overload] () {}; // expected-error {{does not name a variable}}
  /external/clang/test/Index/
code-completion.cpp 32 // RUN: c-index-test -code-completion-at=%s:33:18 %s | FileCheck -check-prefix=CHECK-OVERLOAD %s
61 // CHECK-OVERLOAD: NotImplemented:{ResultType int &}{Text overloaded}{LeftParen (}{Text Z z}{Comma , }{CurrentParameter int second}{RightParen )}
62 // CHECK-OVERLOAD: NotImplemented:{ResultType float &}{Text overloaded}{LeftParen (}{Text int i}{Comma , }{CurrentParameter long second}{RightParen )}
63 // CHECK-OVERLOAD: NotImplemented:{ResultType double &}{Text overloaded}{LeftParen (}{Text float f}{Comma , }{CurrentParameter int second}{RightParen )}
64 // CHECK-OVERLOAD: Completion contexts:
65 // CHECK-OVERLOAD-NEXT: Any type
66 // CHECK-OVERLOAD-NEXT: Any value
67 // CHECK-OVERLOAD-NEXT: Enum tag
68 // CHECK-OVERLOAD-NEXT: Union tag
69 // CHECK-OVERLOAD-NEXT: Struct ta
    [all...]
  /external/clang/test/SemaCXX/
deleted-operator.cpp 11 if(~a1) {} // expected-error {{overload resolution selected deleted operator}} expected-note 8 {{built-in candidate}}
12 if(a1==a1) {} // expected-error {{overload resolution selected deleted operator}} expected-note 121 {{built-in candidate}}
attr-noreturn.cpp 85 // Overload resolution per over.over should allow implicit noreturn adjustment.
99 // expected-note@+5 {{candidate function [with T = void (*)(int) __attribute__((noreturn))] not viable: no overload of 'baz' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
100 // expected-note@+4 {{candidate function [with T = void (*)(int) __attribute__((noreturn))] not viable: no overload of 'qux' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
101 // expected-note@+3 {{candidate function [with T = void (*)(int) __attribute__((noreturn))] not viable: no overload of 'bar' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
102 // expected-note@+2 {{candidate function [with T = void (*)(int)] not viable: no overload of 'bar' matching 'void (*)(int)' for 1st argument}}
103 // expected-note@+1 {{candidate function [with T = void (int)] not viable: no overload of 'bar' matching 'void (*)(int)' for 1st argument}}
106 // expected-note@+1 {{candidate function not viable: no overload of 'bar' matching 'void (*)(int)' for 1st argument}}
111 // expected-note@+2 {{candidate function not viable: no overload of 'baz' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
112 // expected-note@+1 {{candidate function not viable: no overload of 'qux' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
120 // expected-note@+1 {{candidate function not viable: no overload of 'bar' matching 'fptr_t' (aka 'void (*)(int)') for 1st argument}
    [all...]
  /external/clang/test/CXX/over/over.load/
p2-0x.cpp 14 void i() const; // expected-error{{cannot overload a member function without a ref-qualifier with a member function with ref-qualifier '&'}}
20 template<typename T> void g(T*); // expected-error{{cannot overload a member function without a ref-qualifier with a member function with ref-qualifier '&'}}
23 void k() &&; // expected-error{{cannot overload a member function with ref-qualifier '&&' with a member function without a ref-qualifier}}
  /external/clang/test/SemaTemplate/
instantiate-overload-candidates.cpp 3 // This is the function actually selected during overload resolution, and the
15 // Provide a bad class and an overload that instantiates templates with it.
24 // overload resolution when initializing a function pointer.
overload-uneval.cpp 4 // Tests that overload resolution is treated as an unevaluated context.
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
MismatchedTokenException.pm 7 use overload
UnwantedTokenException.pm 5 use overload
  /external/chromium_org/sync/internal_api/public/base/
object_id_invalidation_map_test_util.h 8 // Convince googletest to use the correct overload for PrintTo().
  /external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/JSON/backportPP/
Boolean.pm 11 This module exists only to provide overload resolution for Storable
  /external/chromium_org/third_party/JSON/JSON-2.59/lib/JSON/backportPP/
Boolean.pm 11 This module exists only to provide overload resolution for Storable
  /external/chromium_org/third_party/JSON/out/lib/perl5/JSON/backportPP/
Boolean.pm 11 This module exists only to provide overload resolution for Storable
  /external/clang/test/PCH/
attrs.c 16 // expected-note@11{{previous overload}}
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
netfilter.h 14 /* we overload the higher bits for encoding auxiliary data such as the queue
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
netfilter.h 14 /* we overload the higher bits for encoding auxiliary data such as the queue
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
netfilter.h 14 /* we overload the higher bits for encoding auxiliary data such as the queue
  /external/clang/include/clang/Basic/
DiagnosticOptions.h 20 /// \brief Specifies which overload candidates to display when overload
24 Ovl_Best ///< Show just the "best" overload candidates.

Completed in 497 milliseconds

1 2 3 4 5 6 7 8 91011>>