OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NumConversions
(Results
1 - 2
of
2
) sorted by null
/external/clang/include/clang/Sema/
Overload.h
614
/// fixed size array with
NumConversions
elements. The memory is owned by
621
///
NumConversions
- The number of elements in the Conversions array.
622
unsigned
NumConversions
;
662
for (unsigned i = 0, e =
NumConversions
; i != e; ++i) {
753
/// \brief Add a new candidate with
NumConversions
conversion sequence slots
755
OverloadCandidate &addCandidate(unsigned
NumConversions
= 0) {
761
if (
NumConversions
+ NumInlineSequences <= 16) {
765
NumInlineSequences +=
NumConversions
;
769
.Allocate<ImplicitConversionSequence>(
NumConversions
);
773
for (unsigned i = 0; i !=
NumConversions
; ++i
[
all
...]
/external/clang/lib/Sema/
SemaOverload.cpp
768
for (unsigned ii = 0, ie = i->
NumConversions
; ii != ie; ++ii)
[
all
...]
Completed in 331 milliseconds