/external/clang/test/SemaCXX/ |
templated-friend-decl.cpp | 8 // The templated declaration for class Bar should not be instantiated when 10 // requires a rewrite of the templated friend code to be properly fixed.
|
enable_if.cpp | 202 T templated(T m) __attribute__((enable_if(true, ""))) { return T(); } function in namespace:FnPtrs 204 T templated(T m) __attribute__((enable_if(false, ""))) { return T(); } function in namespace:FnPtrs 206 int (*p)(int) = templated<int>; 207 int (*p2)(int) = &templated<int>; 209 a = templated<int>; 210 a = &templated<int>;
|
/external/clang/test/SemaTemplate/ |
instantiate-try-catch.cpp | 18 class Templated { 25 } catch(Exception e) { // expected-error{{calling a private constructor of class 'PR10232::Templated<int>::Exception'}} 30 template class Templated<int>; // expected-note{{in instantiation of member function 'PR10232::Templated<int>::exception' requested here}}
|
/external/clang/test/PCH/ |
rdar10830559.cpp | 14 class Templated 34 friend class Templated< Bar::BarImpl >::s;
|
/external/clang/test/CXX/special/class.copy/ |
p28-cxx11.cpp | 6 // not be a copy or move assignment (it might be a specialization of a templated
|
/external/eigen/unsupported/Eigen/ |
AutoDiff | 19 * templated scalar type wrapper AutoDiffScalar.
|
/external/clang/test/CXX/class.access/class.friend/ |
p9-cxx0x.cpp | 9 // Simple, non-templated case. 20 // Templated but non-dependent.
|
/external/ceres-solver/examples/ |
snavely_reprojection_error.h | 31 // Templated struct implementing the camera model and residual 34 // adjustment problems in the BAL dataset. It is templated so that we 49 // Templated pinhole camera model for used with Ceres. The camera is 106 // Templated pinhole camera model for used with Ceres. The camera is
|
helloworld.cc | 45 // A templated cost functor that implements the residual r = 10 - 46 // x. The method operator() is templated so that we can then use an
|
/external/clang/test/Analysis/ |
templates.cpp | 6 // Do not crash on this templated code which uses a block.
|
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
p5-example.cpp | 34 template<class U> void A<short>::C<U>::f() { /* ... */ } // expected-error{{template parameter list matching the non-templated nested type 'A<short>' should be empty ('template<>')}}
|
/external/eigen/Eigen/src/Core/ |
Transpositions.h | 70 /** This is a special case of the templated operator=. Its purpose is to 71 * prevent a default operator= from hiding the templated operator=. 174 * from hiding the other templated constructor */ 191 /** This is a special case of the templated operator=. Its purpose is to 192 * prevent a default operator= from hiding the templated operator=. 253 /** This is a special case of the templated operator=. Its purpose is to 254 * prevent a default operator= from hiding the templated operator=. 306 /** This is a special case of the templated operator=. Its purpose is to 307 * prevent a default operator= from hiding the templated operator=.
|
/external/llvm/include/llvm/ExecutionEngine/ |
ObjectMemoryBuffer.h | 35 /// FIXME: It'd be nice for this to be a non-templated constructor taking a 36 /// SmallVectorImpl here instead of a templated one taking a SmallVector<N>,
|
/external/google-breakpad/src/testing/scripts/generator/ |
README | 30 Not all code will be generated properly. For example, when mocking templated
|
/external/libchrome/sandbox/linux/seccomp-bpf/ |
bpf_tester_compatibility_delegate.h | 14 // This templated class allows building a BPFTesterDelegate from a
|
/external/llvm/include/llvm/ADT/ |
None.h | 11 // of various (usually templated) types to make such construction more
|
/external/webrtc/webrtc/system_wrappers/include/ |
aligned_malloc.h | 37 // Templated versions to facilitate usage of aligned malloc without casting
|
/system/connectivity/shill/ |
property_observer.h | 31 // A templated object that retains a reference to a typed accessor,
|
/external/eigen/doc/ |
FunctionsTakingEigenTypes.dox | 9 Fortunately, all this myriad of expression types have in common that they all inherit a few common, templated base classes. By letting your function take templated parameters of these base types, you can let them play nicely with %Eigen's expression templates. 61 <b> Multiple templated arguments example </b><br/><br/> 80 \section TopicUsingRefClass How to write generic, but non-templated function? 82 In all the previous examples, the functions had to be template functions. This approach allows to write very generic code, but it is often desirable to write non templated function and still keep some level of genericity to avoid stupid copies of the arguments. The typical example is to write functions accepting both a MatrixXf or a block of a MatrixXf. This exactly the purpose of the Ref class. Here is a simple example: 173 \b Note: The const cast hack will only work with templated functions. It will not work with the MatrixXf implementation because it is not possible to cast a Block expression to a Matrix reference!
|
/external/clang/test/Profile/ |
cxx-templates.cpp | 1 // Tests for instrumentation of templated code. Each instantiation of a template
|
/external/google-breakpad/src/common/windows/ |
dia_util.h | 51 // A templated version of FindTable. Finds the first table implementing type
|
/external/jemalloc/test/include/test/ |
mq.h | 4 * Simple templated message queue implementation that relies on only mutexes for
|
/external/libchrome/base/ |
sequenced_task_runner_helpers.h | 32 // templated class to make it easier for users of DeleteSoon to
|
/frameworks/base/libs/hwui/ |
FrameInfoVisualizer.h | 42 // But making DrawProfiler also be templated is ALSO painful
|
/sdk/eclipse/ |
dictionary.txt | 305 templated
|