OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:overload
(Results
101 - 125
of
776
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
finder.hpp
64
\
overload
104
\
overload
146
\
overload
247
\
overload
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/output/
xml_log_formatter.hpp
53
using unit_test_log_formatter::log_entry_value; // bring base class functions into
overload
set
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
swap.hpp
22
// not have its own boost::swap
overload
.
/packages/apps/Settings/src/com/android/settings/
SetupRedactionInterstitial.java
30
* should only
overload
base methods for minor theme and behavior differences specific to Setup
/platform_testing/libraries/base-app-helpers/src/android/platform/test/helpers/
AbstractChromeHelper.java
45
* This method will open the
overload
menu, indicated by three dots and block until open.
/external/clang/test/CXX/special/class.copy/
p11.0x.copy.cpp
28
// copied because
overload
resolution results in an ambiguity or a function
74
//
overload
resolution would fail.
79
// -- a direct or virtual base class B that cannot be copied because
overload
p11.0x.move.cpp
26
// copied because
overload
resolution results in an ambiguity or a function
68
// It's implied (but not stated) that this should also happen if
overload
89
// -- a direct or virtual base class B that cannot be moved because
overload
/external/libbrillo/brillo/daemons/
daemon.h
63
//
Overload
to provide your own initialization code that should happen just
70
//
Overload
to clean up the data that was set up during OnInit().
84
// your
overload
.
/external/libbrillo/brillo/strings/
string_utils.h
52
// The following
overload
returns false if the delimiter was not found in the
109
// Having the following
overload
is handy for templates where the type
114
// We
overload
this for double because std::to_string(double) uses %f to
/packages/apps/Settings/src/com/android/settings/accounts/
AccountPreferenceBase.java
74
*
Overload
to handle account updates.
82
*
Overload
to handle authenticator description updates
89
*
Overload
to handle sync state updates.
/external/clang/test/SemaCXX/
cxx0x-initializer-constructor.cpp
137
static_assert(sizeof(ov1({})) == sizeof(two), "bad
overload
");
138
static_assert(sizeof(ov1({1, 2})) == sizeof(two), "bad
overload
");
139
static_assert(sizeof(ov1({{1, 1.0}, 2, {3, 4}})) == sizeof(one), "bad
overload
");
146
static_assert(sizeof(ov2({1})) == sizeof(one), "bad
overload
"); // list -> int ranks as identity
147
static_assert(sizeof(ov2({1, 2, 3})) == sizeof(two), "bad
overload
"); // list -> F only viable
lambda-expressions.cpp
10
static void
Overload
(int);
11
void
Overload
();
12
virtual C&
Overload
(float);
21
[]{
Overload
(3);};
22
[]{
Overload
();}; // expected-error {{'this' cannot be implicitly captured in this context}}
23
[]{(void)typeid(
Overload
());};
24
[]{(void)typeid(
Overload
(.5f));};// expected-error {{'this' cannot be implicitly captured in this context}}
cxx1y-deduced-return-type.cpp
150
int &check3 = take_fn<int>(arg_single); // expected-error {{no matching}} expected-note@-4{{no
overload
of 'arg_single'}}
154
long &check7 = take_fn<long>(arg_multi); // expected-error {{no matching}} expected-note@-8{{no
overload
of 'arg_multi'}}
221
int &g(int (*f)()); // expected-note {{not viable: no
overload
of 'f' matching 'int (*)()'}}
222
char &g(int (*f)(int)); // expected-note {{not viable: no
overload
of 'f' matching 'int (*)(int)'}}
240
int &g(int (*f)()); // expected-note {{not viable: no
overload
of 'f' matching 'int (*)()'}} expected-note {{candidate}}
241
char &g(int (*f)(int)); // expected-note {{not viable: no
overload
of 'f' matching 'int (*)(int)'}} expected-note {{candidate}}
typo-correction-delayed.cpp
129
AssertionResult
Overload
(const char *a);
130
AssertionResult
Overload
(int a);
135
Overload
(resulta);
/external/neven/Embedded/common/src/b_APIEm/
BFFaceFinder.h
215
*
Overload
of vpSetParams
224
*
Overload
of vpSetParams
232
*
Overload
of vpProcess
240
*
Overload
of vpPutDcr
248
*
Overload
of vpGetDcr
/external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h
129
/// same matcher
overload
. Zero specificity indicates that this conversion
475
/// \brief Recursive case. Get the
overload
for the head of the list, and
487
/// It will try every
overload
and generate appropriate errors for when none or
508
if (Constructed.empty()) return VariantMatcher(); // No
overload
matched.
621
/// \brief 0-arg
overload
632
/// \brief 1-arg
overload
644
/// \brief 2-arg
overload
657
/// \brief Variadic
overload
.
666
/// \brief
Overload
for VariadicDynCastAllOfMatchers.
678
/// \brief Argument adaptative
overload
[
all
...]
/external/libbrillo/brillo/
any_internal_impl.h
82
// The second
overload
of TriggerFunction takes an int (explicitly) and
87
// However this
overload
is available only for types that support operator==.
89
//
overload
that refers to operator==() for two values of types U&. This is
92
// simply ignore this
overload
due to SFIANE.
108
// Finally, use the return type of the
overload
of TriggerFunction that
124
// EqCompare()
overload
for non-comparable types. Always returns false.
131
// EqCompare
overload
for comparable types. Calls operator==(v1, v2) to compare.
/external/opencv3/modules/core/include/opencv2/core/
mat.hpp
741
/** @
overload
749
/** @
overload
757
/** @
overload
768
/** @
overload
[
all
...]
/art/compiler/utils/
intrusive_forward_list.h
220
splice_after(position, src); // Use l-value
overload
.
225
// or `position == ++i`. We must handle the latter here because the
overload
237
splice_after(position, src, i); // Use l-value
overload
.
273
splice_after(position, src, first, last); // Use l-value
overload
.
313
merge(other); // Use l-value
overload
.
337
merge(other, cmp); // Use l-value
overload
.
/external/clang/test/CXX/over/over.over/
p2-resolve-single-template-id.cpp
120
{ static_cast<void>(cant_resolve<int>); } // expected-error {{address of
overload
}}
121
{ bool b = cant_resolve<int>; } // expected-error {{address of
overload
}}
122
{ (void) cant_resolve<int>; } // expected-error {{address of
overload
}}
/external/google-breakpad/src/testing/gtest/include/gtest/
gtest-message.h
127
// This function is an
overload
of the previous one. When you
133
// The reason for this
overload
is that streaming a NULL pointer to
200
// tr1::type_traits-like is_pointer works, and we can
overload
on that.
/external/ims/rcs/rcsmanager/src/java/com/android/ims/
RcsPresenceInfo.java
276
*
Overload
291
*
Overload
299
*
Overload
/external/llvm/utils/unittest/googletest/include/gtest/
gtest-message.h
127
// This function is an
overload
of the previous one. When you
133
// The reason for this
overload
is that streaming a NULL pointer to
200
// tr1::type_traits-like is_pointer works, and we can
overload
on that.
/external/mesa3d/src/gtest/include/gtest/
gtest-message.h
127
// This function is an
overload
of the previous one. When you
133
// The reason for this
overload
is that streaming a NULL pointer to
200
// tr1::type_traits-like is_pointer works, and we can
overload
on that.
/external/protobuf/gtest/include/gtest/
gtest-message.h
128
// This function is an
overload
of the previous one. When you
134
// The reason for this
overload
is that streaming a NULL pointer to
200
// tr1::type_traits-like is_pointer works, and we can
overload
on that.
Completed in 1131 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>