OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:binary_pred
(Results
1 - 4
of
4
) sorted by null
/external/stlport/test/unit/
ptrspec_test.cpp
39
struct
binary_pred
{
struct in class:PtrSpecTest
145
pint_list.sort(
binary_pred
<int>());
146
pcint_list.sort(
binary_pred
<int const>());
147
pint_list.unique(
binary_pred
<int>());
148
pcint_list.unique(
binary_pred
<int const>());
149
pint_list.merge(pint_list,
binary_pred
<int>());
150
pcint_list.merge(pcint_list,
binary_pred
<int const>());
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
upredalgo.h
172
/// the test is an arbitrary Binary Predicate
binary_pred
: the elements in
174
/// i == f or else
binary_pred
(*i, *(i-1)) is true.
179
OutputIterator unique_copy (InputIterator first, InputIterator last, OutputIterator result, BinaryPredicate
binary_pred
)
184
if (!
binary_pred
(*first, *result))
203
inline ForwardIterator unique (ForwardIterator first, ForwardIterator last, BinaryPredicate
binary_pred
)
205
return (unique_copy (first, last, first,
binary_pred
));
uctralgo.h
354
inline void unique (Container& ctr, BinaryPredicate
binary_pred
)
356
ctr.erase (unique_copy (ctr.begin(), ctr.end(), ctr.begin(),
binary_pred
), ctr.end());
/external/astl/include/
algorithm
279
// @param
binary_pred
A binary predicate function.
Completed in 218 milliseconds