Home
last modified time | relevance | path

Searched refs:Ambiguous (Results 1 – 25 of 59) sorted by relevance

123

/openbsd/gnu/llvm/clang/lib/Parse/
H A DParseTentative.cpp155 if (TPR != TPResult::Ambiguous) in isCXXSimpleDeclaration()
256 return TPResult::Ambiguous; in TryConsumeDeclarationSpecifier()
290 return TPResult::Ambiguous; in TryParseSimpleDeclaration()
365 return TPResult::Ambiguous; in TryParseInitDeclaratorList()
446 case TPResult::Ambiguous: in update()
1146 return TPResult::Ambiguous; in TryParseDeclarator()
1861 return TPResult::Ambiguous; in TryParseTypeofSpecifier()
2064 return TPResult::Ambiguous; in TryParseParameterDeclarationClause()
2124 return TPResult::Ambiguous; in TryParseFunctionDeclarator()
2146 return TPResult::Ambiguous; in TryParseBracketDeclarator()
[all …]
H A DParseCXXInlineMethods.cpp1212 if (Result == TPResult::Ambiguous && Tok.isNot(tok::semi)) in ConsumeAndStoreInitializer()
1222 if (Result == TPResult::Ambiguous && InvalidAsDeclaration) in ConsumeAndStoreInitializer()
H A DParseTemplate.cpp690 case TPResult::Ambiguous: in ParseTemplateParameter()
/openbsd/gnu/llvm/llvm/lib/Target/Mips/
H A DMipsRegisterBankInfo.h69 Ambiguous, enumerator
76 if (InstTy == InstType::Ambiguous && OpSize == 64) in isAmbiguous_64()
82 if (InstTy == InstType::Ambiguous && OpSize == 32) in isAmbiguous_32()
88 if (InstTy == InstType::Ambiguous && (OpSize == 32 || OpSize == 64)) in isAmbiguous_32or64()
H A DMipsRegisterBankInfo.cpp280 if (AmbiguousTy == InstType::Ambiguous && in visit()
384 InstType DefaultAmbiguousType = InstType::Ambiguous; in determineInstType()
/openbsd/gnu/usr.bin/perl/t/lib/warnings/
H A Dtoke62 Ambiguous use of %c{%s%s} resolved to %c%s%s
67 Ambiguous use of %c{%s} resolved to %c%s
121 Ambiguous use of -%s resolved as -&%s() [yylex]
128 Ambiguous use of %c resolved as operator %c
534 Ambiguous use of ${time} resolved to $time at - line 3.
535 Ambiguous use of @{time} resolved to @time at - line 4.
536 Ambiguous use of @{time} resolved to @time at - line 5.
537 Ambiguous use of %{time} resolved to %time at - line 6.
538 Ambiguous use of *{time} resolved to *time at - line 7.
539 Ambiguous use of &{time} resolved to &time at - line 8.
[all …]
/openbsd/usr.bin/telnet/
H A Dcommands.c270 } else if (Ambiguous(s)) { in sendcmd()
385 if (Ambiguous(cpp)) { in send_tncmd()
681 if (Ambiguous(c)) { in toggle()
797 } else if (Ambiguous(c)) { in setcmd()
892 } else if (Ambiguous(ct)) { in unsetcmd()
1103 if (Ambiguous(sl) || Ambiguous(tl)) { in display()
1297 if (Ambiguous(c)) { in slccmd()
1381 if (Ambiguous(c)) { in env_cmd()
1711 if (Ambiguous(c)) { in cmdrc()
2028 if (Ambiguous(c)) { in command()
[all …]
H A Dgenget.c93 Ambiguous(void *s) in Ambiguous() function
H A Dexterns.h244 int Ambiguous(void *s);
/openbsd/gnu/llvm/clang/include/clang/Sema/
H A DLookup.h73 Ambiguous enumerator
302 return getResultKind() == Ambiguous; in isAmbiguous()
512 if (ResultKind == Ambiguous) { in resolveKindAfterFilter()
521 if (ResultKind == Ambiguous) { in resolveKindAfterFilter()
728 ResultKind = Ambiguous; in setAmbiguous()
H A DOverload.h559 if (ConversionKind == AmbiguousConversion) Ambiguous.destruct(); in destruct()
574 AmbiguousConversionSequence Ambiguous; member
598 case AmbiguousConversion: Ambiguous.copyFrom(Other.Ambiguous); break; in ImplicitConversionSequence()
684 Ambiguous.construct(); in setAmbiguous()
/openbsd/gnu/usr.bin/perl/t/lib/feature/
H A Dswitch140 Ambiguous use of ${break} resolved to $break at - line 5.
141 Ambiguous use of ${break[...]} resolved to $break[...] at - line 5.
/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaLookup.cpp504 if (ResultKind == Ambiguous) return; in resolveKind()
509 bool Ambiguous = false; in resolveKind() local
572 Ambiguous = true; in resolveKind()
593 Ambiguous = true; in resolveKind()
609 if (N > 1 && HideTags && HasTag && !Ambiguous && in resolveKind()
618 Ambiguous = true; in resolveKind()
623 if (!EquivalentNonFunctions.empty() && !Ambiguous) in resolveKind()
630 Ambiguous = true; in resolveKind()
632 if (Ambiguous) in resolveKind()
4747 case LookupResult::Ambiguous: in resolveCorrection()
[all …]
H A DSema.cpp2448 bool Ambiguous = false; in tryExprAsCall() local
2463 if (!ZeroArgCallReturnTy.isNull() && !Ambiguous && in tryExprAsCall()
2467 Ambiguous = true; in tryExprAsCall()
H A DSemaTemplateVariadic.cpp1040 case LookupResult::Ambiguous: in ActOnSizeofParameterPackExpr()
H A DSemaTemplateInstantiate.cpp3556 bool Ambiguous = false; in getPatternForClassTemplateSpecialization() local
3563 Ambiguous = true; in getPatternForClassTemplateSpecialization()
3568 if (Ambiguous) { in getPatternForClassTemplateSpecialization()
H A DSemaOverload.cpp1485 ICS.Ambiguous.setFromType(From->getType()); in TryUserDefinedConversion()
1486 ICS.Ambiguous.setToType(ToType); in TryUserDefinedConversion()
1490 ICS.Ambiguous.addConversion(Cand->FoundDecl, Cand->Function); in TryUserDefinedConversion()
4817 ICS.Ambiguous.addConversion(Cand->FoundDecl, Cand->Function); in FindConversionForRefInit()
10672 << Ambiguous.getFromType() << Ambiguous.getToType(); in DiagnoseAmbiguousConversion()
10675 for (I = Ambiguous.begin(), E = Ambiguous.end(); I != E; ++I) { in DiagnoseAmbiguousConversion()
H A DSemaTemplateDeduction.cpp5386 bool Ambiguous = false; in getMostSpecialized() local
5394 Ambiguous = true; in getMostSpecialized()
5399 if (!Ambiguous) { in getMostSpecialized()
/openbsd/gnu/usr.bin/perl/lib/unicore/
H A DPropValueAliases.txt639 ea ; A ; Ambiguous
1076 lb ; AI ; Ambiguous
/openbsd/gnu/usr.bin/perl/pod/
H A Dperl5140delta.pod2341 L<Ambiguous use of %c resolved as operator %c|perldiag/"Ambiguous use of %c resolved as operator %c…
2345 L<Ambiguous use of %c{%s} resolved to %c%s|perldiag/"Ambiguous use of %c{%s} resolved to %c%s">
2349 L<Ambiguous use of %c{%s[...]} resolved to %c%s[...]|perldiag/"Ambiguous use of %c{%s[...]} resolve…
2353 L<Ambiguous use of %c{%s{...}} resolved to %c%s{...}|perldiag/"Ambiguous use of %c{%s{...}} resolve…
2357 L<Ambiguous use of -%s resolved as -&%s()|perldiag/"Ambiguous use of -%s resolved as -&%s()">
/openbsd/gnu/llvm/llvm/docs/
H A DTransformMetadata.rst383 Ambiguous Transformation Order
/openbsd/gnu/llvm/libcxx/docs/Status/
H A DCxx17Issues.csv75 "`2224 <https://wg21.link/LWG2224>`__","Ambiguous status of access to non-live objects","Kona","|Co…
/openbsd/gnu/llvm/clang/docs/
H A DStandardCPlusPlusModules.rst616 Ambiguous deduction guide
/openbsd/gnu/usr.bin/perl/t/op/
H A Dtr.t714 like($@, qr/^Ambiguous range in transliteration operator/, 'tr/a-z-9//');
/openbsd/gnu/llvm/clang/include/clang/Parse/
H A DParser.h2598 True, False, Ambiguous, Error enumerator

123