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

1 2 3 4 5 6 7 8 91011>>

  /external/caliper/examples/src/main/java/examples/
CharacterBenchmark.java 31 @Param private Overload overload; field in class:CharacterBenchmark
39 public enum Overload { CHAR, INT }
56 if (overload == Overload.CHAR) {
73 if (overload == Overload.CHAR) {
89 if (overload == Overload.CHAR) {
105 if (overload == Overload.CHAR)
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
CharacterBenchmark.java 30 @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/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}}
p5-generic-lambda-1y.cpp 14 template <class F1, class F2> struct overload : F1, F2 {
17 overload(F1 f1, F2 f2) : F1(f1), F2(f2) { }
26 overload<decltype(Base), decltype(NumParams)> O(Base, NumParams);
32 template <class F1, class F2> struct overload : F1, F2 {
35 overload(F1 f1, F2 f2) : F1(f1), F2(f2) { }
44 overload<decltype(Base), decltype(NumParams)> O(Base, NumParams);
  /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: OverloadCandidate:{ResultType int &}{Text overloaded}{LeftParen (}{Placeholder Z z}{Comma , }{CurrentParameter int second}{RightParen )}
62 // CHECK-OVERLOAD: OverloadCandidate:{ResultType float &}{Text overloaded}{LeftParen (}{Placeholder int i}{Comma , }{CurrentParameter long second}{RightParen )}
63 // CHECK-OVERLOAD: OverloadCandidate:{ResultType double &}{Text overloaded}{LeftParen (}{Placeholder 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 233 // Overload resolution per over.over should allow implicit noreturn adjustment.
247 // 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}}
248 // 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}}
249 // 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}}
250 // expected-note@+2 {{candidate function [with T = void (*)(int)] not viable: no overload of 'bar' matching 'void (*)(int)' for 1st argument}}
251 // expected-note@+1 {{candidate function [with T = void (int)] not viable: no overload of 'bar' matching 'void (*)(int)' for 1st argument}}
254 // expected-note@+1 {{candidate function not viable: no overload of 'bar' matching 'void (*)(int)' for 1st argument}}
259 // expected-note@+2 {{candidate function not viable: no overload of 'baz' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
260 // expected-note@+1 {{candidate function not viable: no overload of 'qux' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
268 // expected-note@+1 {{candidate function not viable: no overload of 'bar' matching 'fptr_t' (aka 'void (*)(int)') for 1st argument}
    [all...]
cxx0x-initializer-aggregates.cpp 66 static_assert(sizeof(overloaded({1, 2})) == sizeof(one), "bad overload");
68 "bad overload");
70 static_assert(sizeof(overloaded({1})) == sizeof(one), "bad overload");
  /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
MissingTokenException.pm 5 use overload
  /external/clang/test/PCH/
attrs.c 16 // expected-note@11{{previous overload}}
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 112 procedure Rewind(const Marker: Integer); overload;
125 procedure Rewind; overload;
347 function ToString(const Start, Stop: Integer): String; overload;
355 function ToString(const Start, Stop: IToken): String; overload;
469 function ToString: String; overload;
470 function ToString(const TokenNames: TStringArray): String; overload;
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/der/
encoder.py 15 # Overload CER encodrs with BER ones (a bit hackerish XXX)
  /external/clang/test/CXX/special/class.copy/
p28-cxx11.cpp 4 // In C++11, we must perform overload resolution to determine which function is
  /external/libchrome/sandbox/linux/bpf_dsl/
policy.h 26 // Optional overload for specifying alternate behavior for invalid
  /external/libnl/include/linux/
netfilter.h 14 /* we overload the higher bits for encoding auxiliary data such as the queue
  /frameworks/base/packages/Keyguard/res/values-sw600dp-land/
dimens.xml 22 <!-- Overload default clock widget parameters -->
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
netfilter.h 16 /* we overload the higher bits for encoding auxiliary data such as the queue
  /external/dnsmasq/contrib/wrt/
dhcp_lease_time.c 98 unsigned char *ret, *overload; local
104 /* look for overload option. */
105 if (!(overload = option_find1(&mess->options[0], ((unsigned char *)mess) + size, OPTION_OVERLOAD, 1)))
109 if ((overload[2] & 1) &&
114 if ((overload[2] & 2) &&
  /external/clang/include/clang/Basic/
DiagnosticOptions.h 21 /// \brief Specifies which overload candidates to display when overload
25 Ovl_Best ///< Show just the "best" overload candidates.

Completed in 495 milliseconds

1 2 3 4 5 6 7 8 91011>>