Searched refs:traits (Results 1 - 25 of 40) sorted by relevance

12

/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/basic_tree_policy/
H A Dtraits.hpp43 * @file traits.hpp
51 #include <ext/pb_ds/detail/bin_search_tree_/traits.hpp>
86 #include <ext/pb_ds/detail/rb_tree_map_/traits.hpp>
87 #include <ext/pb_ds/detail/splay_tree_/traits.hpp>
88 #include <ext/pb_ds/detail/ov_tree_map_/traits.hpp>
89 #include <ext/pb_ds/detail/pat_trie_/traits.hpp>
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DWebFontCache.h32 + (NSFont *)fontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)desiredTraits weight:(int)desiredWeight size:(float)size;
36 + (NSFont *)fontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)desiredTraits size:(float)size;
H A DWebFontCache.mm65 // A list of the traits we care about.
160 + (NSFont *)internalFontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)desiredTraits weight:(int)desiredWeight size:(float)size
195 NSFontTraitMask traits = [fontManager traitsOfFont:nameMatchedFont];
196 if ((traits & desiredTraitsForNameMatch) == desiredTraitsForNameMatch)
205 // Found a family, now figure out what weight and traits to use.
255 // There are some malformed fonts that will be correctly returned by -fontWithFamily:traits:weight:size: as a match for a particular trait,
258 // problem, if we got an apparent exact match, but the requested traits aren't present in the matched font, we'll try to get a font from
259 // the same family without those traits (to apply the synthetic traits to later).
269 NSFont *fontWithoutSyntheticTraits = [fontManager fontWithFamily:availableFamily traits
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DRegistryParser.h37 typedef U traits; typedef in class:llvm::RegistryParser
43 addLiteralOption(traits::nameof(E), &E, traits::descof(E));
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/mac/
H A DFontCacheMac.mm106 // traits, weight, and size we want. One way this does better than the original
113 NSFontTraitMask traits;
118 traits = [fontManager traitsOfFont:nsFont];
120 traits |= NSBoldFontMask;
122 traits |= NSFontItalicTrait;
127 traits = description.italic() ? NSFontItalicTrait : 0;
135 if (traits != substituteFontTraits || weight != substituteFontWeight || !nsFont) {
136 if (NSFont *bestVariation = [fontManager fontWithFamily:[substituteFont familyName] traits:traits weight:weight size:size]) {
150 !isPlatformFont && (traits
[all...]
/macosx-10.9.5/swig-10/Lib/octave/
H A Dstd_common.i5 // Generate the traits for a 'primitive' type, such as 'double',
14 template <> struct traits<Type > {
37 // Generates the traits for all the known primitive
/macosx-10.9.5/swig-10/Lib/python/
H A Dstd_common.i6 Generate the traits for a 'primitive' type, such as 'double',
16 template <> struct traits<Type > {
40 // Generates the traits for all the known primitive
H A Dstd_carray.i24 template <> struct traits<std::carray<_Type, _Size > > {
/macosx-10.9.5/swig-10/Lib/ruby/
H A Dstd_common.i7 Generate the traits for a 'primitive' type, such as 'double',
17 template <> struct traits<Type > {
41 // Generates the traits for all the known primitive
/macosx-10.9.5/swig-10/Lib/std/
H A DREADME8 std_char_traits.i char traits
H A Dstd_deque.i70 template <> struct traits<std::deque<_Tp, _Alloc > > {
107 template <> struct traits<std::deque<_Tp*, _Alloc > > {
H A Dstd_queue.i75 template <> struct traits<std::queue<_Tp, _Sequence > > {
109 template <> struct traits<std::queue<_Tp*, _Sequence > > {
H A Dstd_stack.i74 template <> struct traits<std::stack<_Tp, _Sequence > > {
108 template <> struct traits<std::stack<_Tp*, _Sequence > > {
H A Dstd_common.i94 General traits that provides type_name and type_info
96 template <class Type> struct traits { };
100 return traits<typename noconst_traits<Type >::noconst_type >::type_name();
123 template <class Type> struct traits <Type *> {
146 Generate the traits for a swigtype
152 template <> struct traits<Type > {
163 Generate the typemaps for a class that has 'value' traits
H A Dstd_pair.i21 template <> struct traits<std::pair<T,U > > {
67 template <> struct traits<std::pair<T,U* > > {
103 template <> struct traits<std::pair<T*,U > > {
139 template <> struct traits<std::pair<T*,U* > > {
H A Dstd_vector.i77 template <> struct traits<std::vector<_Tp, _Alloc > > {
118 template <> struct traits<std::vector<_Tp*, _Alloc > > {
159 template <> struct traits<std::vector<bool, _Alloc > > {
H A Dstd_multiset.i63 template <> struct traits<std::multiset<_Key, _Compare, _Alloc > > {
H A Dstd_list.i82 template <> struct traits<std::list<_Tp, _Alloc > > {
119 template <> struct traits<std::list<_Tp*, _Alloc > > {
H A Dstd_map.i90 template <> struct traits<std::pair< _Key, _Tp > > {
103 template <> struct traits<std::map<_Key, _Tp, _Compare, _Alloc > > {
H A Dstd_multimap.i67 template <> struct traits<std::multimap<_Key, _Tp, _Compare, _Alloc > > {
H A Dstd_set.i99 template <> struct traits<std::set<_Key, _Compare, _Alloc > > {
/macosx-10.9.5/swig-10/Lib/typemaps/
H A Dimplicit.swg67 template <> struct traits<Type > {
103 template <> struct traits< Type > {
141 template <> struct traits< Type > {
182 template <> struct traits< Type > {
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cocoa/
H A DFontPlatformDataCocoa.mm62 CTFontSymbolicTraits traits = CTFontGetSymbolicTraits(toCTFontRef(m_font));
63 m_isColorBitmapFont = traits & kCTFontColorGlyphsTrait;
65 m_isCompositeFontReference = traits & kCTFontCompositeTrait;
132 CTFontSymbolicTraits traits = CTFontGetSymbolicTraits(toCTFontRef(m_font));
133 m_isColorBitmapFont = traits & kCTFontColorGlyphsTrait;
135 m_isCompositeFontReference = traits & kCTFontCompositeTrait;
/macosx-10.9.5/WebCore-7537.78.1/accessibility/ios/
H A DWebAccessibilityObjectWrapperIOS.mm451 uint64_t traits = 0;
464 traits |= [self _axLinkTrait];
466 traits |= [self _axVisitedTrait];
470 traits |= [self _axHeaderTrait];
482 traits |= [self _axContainedByListTrait];
485 traits |= [self _axContainedByTableTrait];
489 traits |= [self _axContainedByLandmarkTrait];
494 return traits;
503 uint64_t traits = [self _axWebContentTrait];
507 traits |
[all...]
/macosx-10.9.5/tcl-102/tk/tk/macosx/
H A DtkMacOSXFont.c85 static NSFont *FindNSFont(const char *familyName, NSFontTraitMask traits,
130 NSFontTraitMask traits = [[NSFontManager sharedFontManager]
135 faPtr->weight = (traits & NSBoldFontMask ? TK_FW_BOLD : TK_FW_NORMAL);
136 faPtr->slant = (traits & NSItalicFontMask ? TK_FS_ITALIC : TK_FS_ROMAN);
162 NSFontTraitMask traits,
180 nsFont = [fm fontWithFamily:family traits:traits weight:weight size:size];
192 nsFont = [fm fontWithFamily:caseFamily traits:traits weight:weight
202 nsFont = [fm convertFont:nsFont toHaveTrait:traits];
129 NSFontTraitMask traits = [[NSFontManager sharedFontManager] local
158 FindNSFont( const char *familyName, NSFontTraitMask traits, NSInteger weight, CGFloat size, int fallbackToDefault) argument
506 NSFontTraitMask traits = GetNSFontTraitsFromTkFontAttributes(faPtr); local
[all...]

Completed in 250 milliseconds

12