Home
last modified time | relevance | path

Searched refs:ambiguous (Results 1 – 25 of 255) sorted by relevance

1234567891011

/external/deqp-deps/glslang/Test/
D400.vert76 foo3(f, u); // ERROR, ambiguous
77 foo3(f, i); // ERROR, ambiguous
78 foo3(f, f); // ERROR, ambiguous
81 foo3(u, u); // ERROR, ambiguous
82 foo3(u, i); // ERROR, ambiguous
83 foo3(u, f); // ERROR, ambiguous
86 foo3(i, u); // ERROR, ambiguous
87 foo3(i, i); // ERROR, ambiguous
88 foo3(i, f); // ERROR, ambiguous
Dhlsl.params.default.negative.frag21 // These should not be ambiguous if given either an int or a float explicit second parameter.
40 return fn1(100) + // ERROR: ambiguous
47 fn2(112) + // ERROR: ambiguous
Dhlsl.params.default.frag21 // These should not be ambiguous if given either an int or a float explicit second parameter.
/external/clang/test/SemaCXX/
Dcxx0x-initializer-scalars.cpp83 void ambiguous(int, double); // expected-note {{candidate}} in overloaded_call()
84 void ambiguous(double, int); // expected-note {{candidate}} in overloaded_call()
85 ambiguous({0}, {0}); // expected-error {{ambiguous}} in overloaded_call()
Dcxx0x-initializer-stdinitializerlist.cpp89 void ambiguous(std::initializer_list<A>); // expected-note {{candidate}} in overloaded_call()
90 void ambiguous(std::initializer_list<B>); // expected-note {{candidate}} in overloaded_call()
91 ambiguous({ {1, 2}, {2, 3}, {3, 4} }); // expected-error {{ambiguous}} in overloaded_call()
/external/llvm-project/clang/test/SemaCXX/
Dcxx0x-initializer-scalars.cpp83 void ambiguous(int, double); // expected-note {{candidate}} in overloaded_call()
84 void ambiguous(double, int); // expected-note {{candidate}} in overloaded_call()
85 ambiguous({0}, {0}); // expected-error {{ambiguous}} in overloaded_call()
Dcxx0x-initializer-stdinitializerlist.cpp89 void ambiguous(std::initializer_list<A>); // expected-note {{candidate}} in overloaded_call()
90 void ambiguous(std::initializer_list<B>); // expected-note {{candidate}} in overloaded_call()
91 ambiguous({ {1, 2}, {2, 3}, {3, 4} }); // expected-error {{ambiguous}} in overloaded_call()
/external/llvm-project/clang/test/Modules/
Dredecl-merge.m29 eventually_noreturn2(); // expected-error{{call to 'eventually_noreturn2' is ambiguous}}
84 T2 *dp = &d; // expected-error{{reference to 'T2' is ambiguous}}
92 func2(i); // expected-error{{call to 'func2' is ambiguous}}
99 var2 = i; // expected-error{{reference to 'var2' is ambiguous}}
102 var3 = i; // expected-error{{reference to 'var3' is ambiguous}}
Dnon-ambiguous-enum.m2 …fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F%S/Inputs/non-ambiguous-enum -fsyntax-on…
/external/clang/test/Modules/
Dredecl-merge.m29 eventually_noreturn2(); // expected-error{{call to 'eventually_noreturn2' is ambiguous}}
84 T2 *dp = &d; // expected-error{{reference to 'T2' is ambiguous}}
92 func2(i); // expected-error{{call to 'func2' is ambiguous}}
99 var2 = i; // expected-error{{reference to 'var2' is ambiguous}}
102 var3 = i; // expected-error{{reference to 'var3' is ambiguous}}
/external/auto/value/src/main/java/com/google/auto/value/processor/
DTypeSimplifier.java213 Set<String> ambiguous = ambiguousNames(typeUtils, typesInScope); in findImports() local
221 if (ambiguous.contains(simpleName)) { in findImports()
299 Set<String> ambiguous = new HashSet<>(); in ambiguousNames() local
314 ambiguous.add(simpleName); in ambiguousNames()
317 return ambiguous; in ambiguousNames()
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_value.cc261 bool ambiguous = false; in IsAmbiguous() local
263 ambiguous |= iter.second.values().size() > 1; in IsAmbiguous()
265 return ambiguous; in IsAmbiguous()
/external/python/cpython2/Doc/library/
Dtabnanny.rst1 :mod:`tabnanny` --- Detection of ambiguous indentation
50 Raised by :func:`process_tokens` if detecting an ambiguous indent. Captured and
/external/python/cpython3/Doc/library/
Dtabnanny.rst1 :mod:`tabnanny` --- Detection of ambiguous indentation
51 Raised by :func:`process_tokens` if detecting an ambiguous indent. Captured and
/external/deqp-deps/glslang/Test/baseResults/
D400.vert.out6 ERROR: 0:76: 'foo3' : ambiguous best function under implicit type conversion
7 ERROR: 0:77: 'foo3' : ambiguous best function under implicit type conversion
8 ERROR: 0:78: 'foo3' : ambiguous best function under implicit type conversion
9 ERROR: 0:81: 'foo3' : ambiguous best function under implicit type conversion
10 ERROR: 0:82: 'foo3' : ambiguous best function under implicit type conversion
11 ERROR: 0:83: 'foo3' : ambiguous best function under implicit type conversion
12 ERROR: 0:86: 'foo3' : ambiguous best function under implicit type conversion
13 ERROR: 0:87: 'foo3' : ambiguous best function under implicit type conversion
14 ERROR: 0:88: 'foo3' : ambiguous best function under implicit type conversion
/external/llvm-project/llvm/test/tools/llvm-cxxmap/
Dambiguous.test1 RUN: llvm-cxxmap %S/Inputs/before.sym %S/Inputs/ambiguous.sym -r %S/Inputs/remap.map -o /dev/null -…
/external/llvm-project/llvm/test/TableGen/
Dambiguous-composition.td29 // A situation that previously caused the warning about ambiguous
38 // would be enough to trigger the warning about ambiguous composition.
/external/curl/tests/data/
Dtest92427 SMTP ambiguous VRFY
/external/llvm-project/lldb/source/Target/
DStackFrameList.cpp290 bool ambiguous = false; in FindInterveningFrames() member
303 if (!ambiguous) in FindInterveningFrames()
313 ambiguous = true; in FindInterveningFrames()
322 ambiguous = true; in FindInterveningFrames()
337 if (ambiguous) in FindInterveningFrames()
/external/llvm-project/clang/test/SemaObjC/
Dduplicate-ivar-in-class-extension.m30 return self->ivar; // would be ambiguous if the duplicate ivar were allowed
/external/clang/test/SemaObjC/
Dduplicate-ivar-in-class-extension.m30 return self->ivar; // would be ambiguous if the duplicate ivar were allowed
/external/python/cpython2/Doc/c-api/
Dcapsule.rst76 return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or
86 return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or
96 code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or
/external/python/cpython3/Doc/c-api/
Dcapsule.rst76 return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or
86 return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or
96 code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or
/external/llvm-project/llvm/test/CodeGen/X86/
Dpr38763.ll4 ; information becomes ambiguous. It causes the debugger to display wrong
30 ; branches, as they becomes ambiguous.
/external/ply/ply/
DPKG-INFO16 productions, precedence rules, error recovery, and support for ambiguous grammars.

1234567891011