OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Proto1
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/AST/
ASTImporter.cpp
581
const FunctionProtoType *
Proto1
= cast<FunctionProtoType>(T1);
583
if (
Proto1
->getNumParams() != Proto2->getNumParams())
585
for (unsigned I = 0, N =
Proto1
->getNumParams(); I != N; ++I) {
586
if (!IsStructurallyEquivalent(Context,
Proto1
->getParamType(I),
590
if (
Proto1
->isVariadic() != Proto2->isVariadic())
592
if (
Proto1
->getExceptionSpecType() != Proto2->getExceptionSpecType())
594
if (
Proto1
->getExceptionSpecType() == EST_Dynamic) {
595
if (
Proto1
->getNumExceptions() != Proto2->getNumExceptions())
597
for (unsigned I = 0, N =
Proto1
->getNumExceptions(); I != N; ++I) {
599
Proto1
->getExceptionType(I)
[
all
...]
/external/clang/lib/Sema/
SemaTemplateDeduction.cpp
[
all
...]
Completed in 107 milliseconds