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

1 2 3 4 5

  /external/clang/test/SemaCXX/
type-traits-incomplete.cpp 6 __is_pod(S); // expected-error{{incomplete type 'S' used in type trait expression}}
7 __is_pod(S[]); // expected-error{{incomplete type 'S' used in type trait expression}}
libstdcxx_is_pod_hack.cpp 24 // trait in Embarcadero's compiler but is used as an identifier in
  /ndk/tests/device/test-stlport_shared-exception/jni/
has_nothrow_constructor.cpp 61 static const bool trait = __has_nothrow_constructor(T); member in class:My2
65 const bool My2<T>::trait; member in class:My2
70 { static const bool trait = b; }; member in struct:My3_help
73 const bool My3_help<T, b>::trait; member in class:My3_help
81 { return My3_help<T>::trait; }
85 && My<T>().f() && My2<T>::trait && My3<T>().f())
88 && !My<T>().f() && !My2<T>::trait && !My3<T>().f())
has_nothrow_copy-1.cpp 91 static const bool trait = __has_nothrow_copy(T); member in class:My2
95 const bool My2<T>::trait; member in class:My2
99 { static const bool trait = b; }; member in struct:My3_help
102 const bool My3_help<T, b>::trait; member in class:My3_help
110 { return My3_help<T>::trait; }
114 && My<T>().f() && My2<T>::trait && My3<T>().f())
117 && !My<T>().f() && !My2<T>::trait && !My3<T>().f())
has_nothrow_assign.cpp 101 static const bool trait = __has_nothrow_assign(T); member in class:My2
105 const bool My2<T>::trait; member in class:My2
109 { static const bool trait = b; }; member in struct:My3_help
112 const bool My3_help<T, b>::trait; member in class:My3_help
120 { return My3_help<T>::trait; }
124 && My<T>().f() && My2<T>::trait && My3<T>().f())
127 && !My<T>().f() && !My2<T>::trait && !My3<T>().f())
  /ndk/tests/device/test-stlport_static-exception/jni/
has_nothrow_constructor.cpp 61 static const bool trait = __has_nothrow_constructor(T); member in class:My2
65 const bool My2<T>::trait; member in class:My2
70 { static const bool trait = b; }; member in struct:My3_help
73 const bool My3_help<T, b>::trait; member in class:My3_help
81 { return My3_help<T>::trait; }
85 && My<T>().f() && My2<T>::trait && My3<T>().f())
88 && !My<T>().f() && !My2<T>::trait && !My3<T>().f())
has_nothrow_copy-1.cpp 91 static const bool trait = __has_nothrow_copy(T); member in class:My2
95 const bool My2<T>::trait; member in class:My2
99 { static const bool trait = b; }; member in struct:My3_help
102 const bool My3_help<T, b>::trait; member in class:My3_help
110 { return My3_help<T>::trait; }
114 && My<T>().f() && My2<T>::trait && My3<T>().f())
117 && !My<T>().f() && !My2<T>::trait && !My3<T>().f())
has_nothrow_assign.cpp 101 static const bool trait = __has_nothrow_assign(T); member in class:My2
105 const bool My2<T>::trait; member in class:My2
109 { static const bool trait = b; }; member in struct:My3_help
112 const bool My3_help<T, b>::trait; member in class:My3_help
120 { return My3_help<T>::trait; }
124 && My<T>().f() && My2<T>::trait && My3<T>().f())
127 && !My<T>().f() && !My2<T>::trait && !My3<T>().f())
  /external/clang/test/SemaObjCXX/
arc-type-traits.mm 4 // Check the results of the various type-trait query functions on
11 #define TRAIT_IS_TRUE(Trait, Type) char JOIN2(Trait,__LINE__)[Trait(Type)? 1 : -1]
12 #define TRAIT_IS_FALSE(Trait, Type) char JOIN2(Trait,__LINE__)[Trait(Type)? -1 : 1]
13 #define TRAIT_IS_TRUE_2(Trait, Type1, Type2) char JOIN2(Trait,__LINE__)[Trait(Type1, Type2)? 1 : -1
    [all...]
  /external/chromium/base/memory/
singleton_unittest.cc 28 struct Trait;
31 return Singleton<Init5Singleton, Trait>::get();
37 struct Init5Singleton::Trait : public DefaultSingletonTraits<Init5Singleton> {
70 struct Trait : public CallbackTrait<CallbackSingletonWithNoLeakTrait> { };
75 return Singleton<CallbackSingletonWithNoLeakTrait, Trait>::get();
81 struct Trait : public CallbackTrait<CallbackSingletonWithLeakTrait> {
88 return Singleton<CallbackSingletonWithLeakTrait, Trait>::get();
94 struct Trait;
99 return Singleton<CallbackSingletonWithStaticTrait, Trait>::get();
103 struct CallbackSingletonWithStaticTrait::Trait
    [all...]
singleton_objc.h 53 // default trait class. This makes it straightforward for Objective-C++ code
  /external/clang/test/Index/
annotate-tokens-cxx0x.cpp 34 // RUN: c-index-test -test-annotate-tokens=%s:13:1:14:1 -std=c++11 %s | FileCheck -check-prefix=CHECK-TRAIT %s
35 // CHECK-TRAIT: Identifier: "Integer" [13:42 - 13:49] TypeRef=Integer:10:15
36 // CHECK-TRAIT: Identifier: "Float" [13:51 - 13:56] TypeRef=Float:11:17
37 // CHECK-TRAIT: Identifier: "Bool" [13:58 - 13:62] TypeRef=Bool:12:16
  /frameworks/compile/mclinker/include/mcld/Support/
GCFactoryListTraits.h 23 * \brief GCFactoryListTraits provides trait class for llvm::iplist when
  /external/chromium/chrome/browser/ui/webui/
chrome_url_data_manager.h 31 // Trait used to handle deleting a DataSource. Deletion happens on the UI
55 // data race. The |DeleteDataSource| trait above is used to enforce this.
148 // |DeleteOnUIThread| trait to insure that the destructor is called on the UI
  /external/chromium/chrome/browser/search_engines/
template_url_model_test_util.h 93 // Needed to make the DeleteOnUIThread trait of WebDataService work
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
TaintManager.h 29 // FIXME: This does not use the nice trait macros because it must be accessible
ProgramStateTrait.h 36 /// Declares a program state trait for type \p Type called \p Name, and
96 /// Helper for registering a map trait.
  /external/clang/test/SemaTemplate/
example-typelist.cpp 13 // is_same trait, for testing
  /external/llvm/include/llvm/IR/
OperandTraits.h 23 // FixedNumOperand Trait Class
44 // OptionalOperand Trait Class
58 // VariadicOperand Trait Class
79 // HungoffOperand Trait Class
  /external/webkit/Source/WebCore/platform/mac/
WebFontCache.mm 71 // The top item in the list is the worst trait to mismatch; if a font has this
272 // There are some malformed fonts that will be correctly returned by -fontWithFamily:traits:weight:size: as a match for a particular trait,
273 // though -[NSFontManager traitsOfFont:] incorrectly claims the font does not have the specified trait. This could result in applying
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
scala.php 55 'trait', 'try', 'true', 'type', 'val',
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontPlatformDataQt.cpp 53 // this is the empty value by definition of the trait FontDataCacheKeyTraits
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
uses_allocator.h 56 /// [allocator.uses.trait]
  /external/clang/lib/Serialization/
ASTReaderInternals.h 82 /// \brief Base class for the trait describing the on-disk hash table for the
186 /// \brief Trait class used to search the on-disk hash table containing all of
  /external/v8/src/
lazy-instance.h 58 // providing your own trait:
175 // Initialization trait for users who don't care about thread-safety.

Completed in 1245 milliseconds

1 2 3 4 5