HomeSort by relevance Sort by last modified time
    Searched full:deduce (Results 1 - 25 of 445) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/tools/clang/plugins/tests/
auto_raw_pointer.txt 1 auto_raw_pointer.cpp:20:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
5 auto_raw_pointer.cpp:21:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
9 auto_raw_pointer.cpp:22:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
13 auto_raw_pointer.cpp:27:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
17 auto_raw_pointer.cpp:28:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
21 auto_raw_pointer.cpp:29:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
25 auto_raw_pointer.cpp:36:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
29 auto_raw_pointer.cpp:37:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
33 auto_raw_pointer.cpp:44:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
37 auto_raw_pointer.cpp:46:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type
    [all...]
  /external/llvm/test/MC/X86/
intel-syntax-unsized-memory.s 3 // Check that we deduce unsized memory operands in the general, unambiguous, case.
4 // We can't deduce xword memory operands, because there is no instruction
  /external/clang/test/SemaCXX/
attributed-auto-deduction.cpp 4 void deduce() { function
cxx0x-initializer-stdinitializerlist.cpp 102 T deduce(std::initializer_list<T>); // expected-note {{conflicting types for parameter 'T' ('int' vs. 'double')}}
107 static_assert(same_type<decltype(deduce({1, 2, 3})), int>::value, "bad deduction");
108 static_assert(same_type<decltype(deduce({1.0, 2.0, 3.0})), double>::value, "bad deduction");
110 deduce({1, 2.0}); // expected-error {{no matching function}}
124 auto bl = {1, 2.0}; // expected-error {{cannot deduce}}
195 auto x { { 0, 0 } }; // expected-error {{cannot deduce type for variable 'x' with type 'auto' from nested initializer list}}
dependent-auto.cpp 36 // PR 9276 - Make sure we check auto types deduce the same
  /external/llvm/test/Analysis/
alias-analysis-uses.ll 5 ; CHECK: Executing Pass 'Deduce function attributes'
  /external/clang/test/SemaTemplate/
instantiation-backtrace.cpp 40 typename ResultTy<T2>::error Deduce( void (T1::*member)(T2) ) {} // \
48 Deduce(&Cls::method); // expected-error {{no matching function}} \
49 // expected-note {{substituting deduced template arguments into function template 'Deduce' [with T1 = PR13365::Cls, T2 = int &]}}
derived.cpp 7 template<typename T> void Foo2(vector2<const T*> V) {} // expected-note{{candidate template ignored: cannot deduce a type for 'T' that would make 'const T' equal 'int'}}
8 template<typename T> void Foo(vector<const T*> V) {} // expected-note {{candidate template ignored: cannot deduce a type for 'T' that would make 'const T' equal 'int'}}
  /libcore/luni/src/test/java/libcore/java/nio/file/spi/
FileTypeDetectorTest.java 15 // The method uses file extensions to deduce mime type, therefore, it doesn't check for
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
enumeration.h 29 // enumeration is instantiated this way the compiler is able to deduce either I
35 // Helper function that causes the compiler to deduce an IndexedElement<I, T>
40 // Helper function that causes the compiler to deduce an IndexedElement<I, T>
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p6.cpp 9 // okay: deduce T=int from first argument, A=int during overload
13 // okay: deduce T=int from first and second arguments
34 // deduce T=int from first arg, second arg is undeduced context,
41 // deduce T=int from first arg, A=int B=void during overload resolution
  /external/v8/tools/clang/plugins/
Options.h 18 // Enforce that auto doesn't deduce to a raw pointer. See
  /tools/apksig/src/main/java/com/android/apksig/internal/asn1/
Asn1TagClass.java 26 * Not really an actual tag class: decoder/encoder will attempt to deduce the correct tag class
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p11-1y.cpp 50 auto bad_init_5 = [a(overload_fn)] {}; // expected-error {{cannot deduce type for lambda capture 'a' from initializer of type '<overloaded function}}
51 auto bad_init_6 = [a{overload_fn}] {}; // expected-error {{cannot deduce type for lambda capture 'a' from initializer list}}
52 auto bad_init_7 = [a{{1}}] {}; // expected-error {{cannot deduce type for lambda capture 'a' from nested initializer list}}
p4.cpp 21 case 2: return { 1, 2.0 }; //expected-error{{cannot deduce}}
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p4.cpp 53 auto parens3({4, 5, 6}); // expected-error {{cannot deduce type for variable 'parens3' with type 'auto' from parenthesized initializer list}}
56 auto parens6 = [p6({4, 5, 6})] {}; // expected-error {{cannot deduce type for lambda capture 'p6' from parenthesized initializer list}}
p7-1y.cpp 39 decltype(auto) x6d = { 1, 2 }; // expected-error {{cannot deduce 'decltype(auto)' from initializer list}}
97 auto init_list_1() { return { 1, 2, 3 }; } // expected-error {{cannot deduce return type from initializer list}}
98 decltype(auto) init_list_2() { return { 1, 2, 3 }; } // expected-error {{cannot deduce return type from initializer list}}
  /external/clang/test/CXX/drs/
dr10xx.cpp 23 // ok: we deduce non-const A in each case.
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p21.cpp 5 // (14.5.3) can deduce zero or more arguments for each parameter pack.
  /external/llvm/test/Transforms/IndVarSimplify/
const_phi.ll 7 ; constant. However, instcombine can't deduce this, so we can
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
FunctionAttrs.cpp 51 // AddReadAttrs - Deduce readonly/readnone attributes for the SCC.
54 // AddNoCaptureAttrs - Deduce nocapture attributes for the SCC.
61 // AddNoAliasAttrs - Deduce noalias attributes for the SCC.
77 "Deduce function attributes", false, false)
80 "Deduce function attributes", false, false)
85 /// AddReadAttrs - Deduce readonly/readnone attributes for the SCC.
228 /// AddNoCaptureAttrs - Deduce nocapture attributes for the SCC.
323 /// AddNoAliasAttrs - Deduce noalias attributes for the SCC.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/
member.py 63 """Deduce type code from struct specification if not defined"""
  /external/parameter-framework/asio-1.10.6/include/asio/
async_result.hpp 51 // Helper template to deduce the true type of a handler, capture a local copy
  /external/python/cpython2/Tools/framer/framer/
member.py 63 """Deduce type code from struct specification if not defined"""
  /external/libbrillo/brillo/
secure_blob.h 43 // if it can deduce that its value is not used and that no needed side effects

Completed in 1537 milliseconds

1 2 3 4 5 6 7 8 91011>>