OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Ambiguous
(Results
1 - 25
of
27
) sorted by relevancy
1
2
/src/lib/libtelnet/
misc.h
43
int
Ambiguous
(void *);
genget.c
72
static char *
ambiguous
; /* special return value for command routines */
variable
92
return(&
ambiguous
);
99
* Function call version of
Ambiguous
()
102
Ambiguous
(void *s)
104
return(s == &
ambiguous
);
encrypt.c
248
} else if (
Ambiguous
(ep)) {
249
printf("
Ambiguous
type '%s'\n", type);
281
} else if (
Ambiguous
(ep)) {
282
printf("
Ambiguous
type '%s'\n", type);
/src/external/apache2/llvm/dist/clang/lib/Parse/
ParseTentative.cpp
110
// isCXXDeclarationSpecifier will return TPResult::
Ambiguous
only in such
116
if (TPR != TPResult::
Ambiguous
)
128
// FIXME: Add statistics about the number of
ambiguous
statements encountered
145
if (TPR == TPResult::
Ambiguous
)
215
return TPResult::
Ambiguous
;
235
if (TPR == TPResult::
Ambiguous
)
243
if (TPR != TPResult::
Ambiguous
)
249
return TPResult::
Ambiguous
;
283
if (TPR != TPResult::
Ambiguous
)
324
return TPResult::
Ambiguous
;
[
all
...]
ParseCXXInlineMethods.cpp
1190
// If we parsed a complete,
ambiguous
init-declarator-list, this
1192
if (Result == TPResult::
Ambiguous
&& Tok.isNot(tok::semi))
1202
if (Result == TPResult::
Ambiguous
&& InvalidAsDeclaration)
ParseTemplate.cpp
660
case TPResult::
Ambiguous
:
661
llvm_unreachable("template param classification can't be
ambiguous
");
/src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsRegisterBankInfo.h
58
/// the remaining types: Integer, FloatingPoint or
Ambiguous
.
68
/// gprb for s32
Ambiguous
operands.
69
Ambiguous
,
70
/// Only used for s64. Unlike
Ambiguous
s64, AmbiguousWithMergeOrUnmerge s64
76
if (InstTy == InstType::
Ambiguous
&& OpSize == 64)
82
if (InstTy == InstType::
Ambiguous
&& OpSize == 32)
88
if (InstTy == InstType::
Ambiguous
&& (OpSize == 32 || OpSize == 64))
119
/// or gprb e.g. for G_LOAD we consider only operand 0 as
ambiguous
, operand 1
121
/// This class provides containers for MI's
ambiguous
:
122
/// DefUses : MachineInstrs that use one of MI's
ambiguous
def operands
[
all
...]
MipsRegisterBankInfo.cpp
184
"Pointers are gprb, they should not be considered as
ambiguous
.\n");
199
"Pointers are gprb, they should not be considered as
ambiguous
.\n");
233
"Not implemented for non
Ambiguous
opcode.\n");
270
assert(isAmbiguous(MI->getOpcode()) && "Visiting non-
Ambiguous
opcode.\n");
282
if (AmbiguousTy == InstType::
Ambiguous
&&
295
// All MI's adjacent instructions, are
ambiguous
.
297
// This is chain of
ambiguous
instructions.
301
// Excluding WaitingForTypeOfMI, MI is either connected to chains of
ambiguous
386
InstType DefaultAmbiguousType = InstType::
Ambiguous
;
/src/usr.bin/telnet/
commands.c
378
} else if (
Ambiguous
(s)) {
379
printf("
Ambiguous
send argument '%s'\n'send ?' for help.\n",
489
if (
Ambiguous
(cpp)) {
490
fprintf(stderr,"'%s':
ambiguous
argument ('send %s ?' for help).\n",
844
if (
Ambiguous
(c)) {
845
fprintf(stderr, "'%s':
ambiguous
argument ('toggle ?' for help).\n",
964
} else if (
Ambiguous
(c)) {
965
fprintf(stderr, "'%s':
ambiguous
argument ('set ?' for help).\n",
988
} else if (
Ambiguous
(ct)) {
989
fprintf(stderr, "'%s':
ambiguous
argument ('set ?' for help).\n"
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
Lookup.h
73
Ambiguous
302
return getResultKind() ==
Ambiguous
;
486
if (ResultKind ==
Ambiguous
) {
495
if (ResultKind ==
Ambiguous
) {
702
ResultKind =
Ambiguous
;
723
// ill-defined unless
ambiguous
. Still need to be initialized it will be
Overload.h
58
///
Ambiguous
candidates found.
417
/// Represents an
ambiguous
user-defined conversion sequence.
521
///
ambiguous
conversion (C++0x [over.best.ics]p10).
548
if (ConversionKind == AmbiguousConversion)
Ambiguous
.destruct();
562
/// details of the
ambiguous
conversion.
563
AmbiguousConversionSequence
Ambiguous
;
582
case AmbiguousConversion:
Ambiguous
.copyFrom(Other.
Ambiguous
); break;
609
/// sequences and
ambiguous
conversion sequences the same rank,
663
Ambiguous
.construct()
[
all
...]
Sema.h
1331
Ambiguous
,
4073
/// null if the results were absent,
ambiguous
, or overloaded.
12278
/// Returns null if unknown or
ambiguous
, or if code completion is off.
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaLookup.cpp
335
assert(ResultKind !=
Ambiguous
|| Decls.size() > 1 ||
338
assert((Paths != nullptr) == (ResultKind ==
Ambiguous
&&
394
// FIXME: In the presence of
ambiguous
default arguments, we should keep both,
500
// Don't do any extra resolution if we've already resolved as
ambiguous
.
501
if (ResultKind ==
Ambiguous
) return;
506
bool
Ambiguous
= false;
568
Ambiguous
= true;
589
Ambiguous
= true;
605
if (N > 1 && HideTags && HasTag && !
Ambiguous
&&
614
Ambiguous
= true
[
all
...]
Sema.cpp
2234
bool
Ambiguous
= false;
2249
if (!ZeroArgCallReturnTy.isNull() && !
Ambiguous
&&
2253
Ambiguous
= true;
SemaTemplateVariadic.cpp
1037
case LookupResult::
Ambiguous
:
SemaTemplateInstantiate.cpp
3110
//
ambiguous
and the program is ill-formed.
3122
bool
Ambiguous
= false;
3129
Ambiguous
= true;
3134
if (
Ambiguous
) {
SemaTemplateDeduction.cpp
1223
/// "MiscellaneousDeductionFailure" result happens when the match is
ambiguous
.
5347
/// specialization that is a candidate in the
ambiguous
ordering. One parameter
5390
bool
Ambiguous
= false;
5398
Ambiguous
= true;
5403
if (!
Ambiguous
) {
SemaOverload.cpp
559
OS << "
Ambiguous
conversion";
1380
ICS.
Ambiguous
.setFromType(From->getType());
1381
ICS.
Ambiguous
.setToType(ToType);
1385
ICS.
Ambiguous
.addConversion(Cand->FoundDecl, Cand->Function);
2458
// (clause 11) or
ambiguous
(10.2) base class of D, a program that
2982
///
ambiguous
or inaccessible derived-to-base pointer
3015
//
ambiguous
or inaccessible conversion.
3109
/// expression From to the type ToType. This routine checks for
ambiguous
or
3754
// described in 13.3.3.2, the
ambiguous
conversion sequence is
4141
// report an
ambiguous
call erro
[
all
...]
SemaExprObjC.cpp
2325
case LookupResult::
Ambiguous
:
SemaDecl.cpp
423
case LookupResult::
Ambiguous
:
455
// We found a type within the
ambiguous
lookup; diagnose the
1042
case LookupResult::
Ambiguous
:
1053
//
ambiguous
.
1055
// This filtering can make an
ambiguous
result into an unambiguous one,
16716
case LookupResult::
Ambiguous
:
SemaDeclCXX.cpp
2701
//
ambiguous
.
2898
//
ambiguous
. This is slightly more expensive than checking whether
2947
// We know that the derived-to-base conversion is
ambiguous
, and
2959
// Build up a textual representation of the
ambiguous
paths, e.g.,
2960
// D -> B -> A, that will be used to illustrate the
ambiguous
2983
/// Builds a string representing
ambiguous
paths from a
3182
// Record an
ambiguous
path directly
4537
// If a mem-initializer-id is
ambiguous
because it designates both
8876
else if (SMOR.getKind() == Sema::SpecialMemberOverloadResult::
Ambiguous
)
9399
// The standard doesn't describe how to behave if the lookup is
ambiguous
[
all
...]
SemaExprCXX.cpp
936
// Skip
ambiguous
objects.
1001
// the exception object. Bases which are
ambiguous
or otherwise
1741
// If it's
ambiguous
, it should be illegal to call operator delete[]
2644
assert(!R.isAmbiguous() && "global allocation functions are
ambiguous
");
2800
// but
ambiguous
.
3680
assert(!R.isAmbiguous() && "global allocation functions are
ambiguous
");
6202
// These return true if a single direction is already
ambiguous
.
8079
/// If we've failed to correct due to
ambiguous
corrections, we need to
8214
// If valid
ambiguous
typo corrections are seen, `IsAmbiguous` is set to
8224
// Recursion encountered an
ambiguous
correction. This means that ou
[
all
...]
/src/external/gpl3/gcc.old/dist/gcc/fortran/
dump-parse-tree.cc
1278
if (st->
ambiguous
)
1279
fputs( "
Ambiguous
", dumpfile);
/src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h
2491
True, False,
Ambiguous
, Error
2505
/// TPResult::
Ambiguous
if it could be either a decl-specifier or a
2515
/// \c TPResult::
Ambiguous
, determine whether the decl-specifier would be
2537
// resolved and tentative parsing may stop. TPResult::
Ambiguous
indicates
/src/external/gpl3/gcc.old/dist/libphobos/src/std/
traits.d
915
alias
Ambiguous
= const(QualifiedNameTests.Inner);
916
static assert(fqn!
Ambiguous
== fqnType!(
Ambiguous
, false, false, false, false));
Completed in 119 milliseconds
1
2
Indexes created Tue Feb 24 01:34:59 UTC 2026