Searched refs:features (Results 1 - 25 of 336) sorted by last modified time

1234567891011>>

/macosx-10.10/xnu-2782.1.97/osfmk/i386/
H A Dcpuid.c604 DBG(" features : 0x%016llx\n", info_p->cpuid_features);
973 cpuid_get_feature_names(uint64_t features, char *buf, unsigned buf_len) argument
975 return cpuid_get_names(feature_map, features, buf, buf_len);
985 cpuid_get_leaf7_feature_names(uint64_t features, char *buf, unsigned buf_len) argument
987 return cpuid_get_names(leaf7_feature_map, features, buf, buf_len);
1067 printf("limiting fpu features to: %s\n", fpu_arg);
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOPMrootDomain.cpp2963 // Adds a new feature to the supported features dictionary
2974 // Adds a new feature to the supported features dictionary
2998 // Far, far too many features!
3004 OSDictionary *features = local
3007 // Create new features dict if necessary
3008 if ( features && OSDynamicCast(OSDictionary, features)) {
3009 features = OSDictionary::withDictionary(features);
3011 features
3101 OSDictionary *features = local
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/vfs/
H A Dvfs_subr.c46 * 3. All advertising materials mentioning features or use of this software
1141 * Probe root file system for additional features.
3071 u_int32_t features; local
3128 (caddr_t)&features, 0, ctx)))
3243 if (features & DK_FEATURE_FORCE_UNIT_ACCESS)
3246 if (features & DK_FEATURE_UNMAP) {
3253 if (iosched_enabled && (features & DK_FEATURE_PRIORITY)) {
/macosx-10.10/xnu-2782.1.97/bsd/dev/i386/
H A Dsysctl.c348 i386_cpu_info, "IU", "CPU features");
354 i386_cpu_info_nonzero, "IU", "CPU Leaf7 features");
358 i386_cpu_info, "IU", "CPU extended features");
368 SYSCTL_PROC(_machdep_cpu, OID_AUTO, features, CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_LOCKED,
/macosx-10.10/llvmCore-3425.0.34/utils/Target/ARM/
H A Danalyze-match-table.py20 _,features = [s.strip() for s in c.split(",")]
23 insns.append((code,string,converter,items,features))
/macosx-10.10/llvmCore-3425.0.34/projects/sample/autoconf/
H A Dltmain.sh484 --features)
6654 --features display basic configuration information and exit
/macosx-10.10/llvmCore-3425.0.34/autoconf/
H A Dltmain.sh484 --features)
6654 --features display basic configuration information and exit
/macosx-10.10/Libc-1044.1.2/xcodescripts/
H A Dgenerate_features.pl7 # Generates the libc-features.h files used to control #ifdef behaviour in Libc
32 my $featuresHeader = $featuresHeaderDir."/libc-features.h";
36 my %features = ();
62 $features{$1} = $2;
63 } elsif (defined($features{$1})) {
64 delete $features{$1};
73 for my $f (keys %features) {
74 print "$f=$features{$f} ";
86 $unifdefs{"UNIFDEF_LEGACY_64_APIS"} = defined($features{"FEATURE_LEGACY_64_APIS"});
87 $unifdefs{"UNIFDEF_LEGACY_RUNE_APIS"} = defined($features{"FEATURE_LEGACY_RUNE_API
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DDocument.cpp2897 void Document::processArguments(const String& features, void* data, ArgumentsCallback callback) argument
2903 String buffer = features.lower();
2947 void Document::processViewport(const String& features, ViewportArguments::Type origin) argument
2949 ASSERT(!features.isNull());
2955 processArguments(features, (void*)&m_viewportArguments, &setViewportFeature);
2990 void Document::processFormatDetection(const String& features) argument
2992 ASSERT(!features.isNull());
2993 processArguments(features, nullptr, &setParserFeature);
/macosx-10.10/cups-408/cups/test/
H A Dippserver.c1252 static const char * const features[] =/* ipp-features-supported values */ local
1648 /* ipp-features-supported */
1649 ippAddStrings(printer->attrs, IPP_TAG_PRINTER, IPP_CONST_TAG(IPP_TAG_KEYWORD), "ipp-features-supported", sizeof(features) / sizeof(features[0]), NULL, features);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DFont.h302 TypesettingFeatures features = s_defaultTypesettingFeatures; local
308 features &= ~(Kerning | Ligatures);
312 features |= Kerning | Ligatures;
318 features &= ~Kerning;
321 features |= Kerning;
329 features &= ~Ligatures;
332 features |= Ligatures;
338 return features;
/macosx-10.10/cups-408/cups/everywhere/
H A Dipp-tests.test227 EXPECT ipp-features-supported OF-TYPE keyword IN-GROUP printer-attributes-tag WITH-VALUE "ipp-everywhere"
/macosx-10.10/security_systemkeychain-55202/src/
H A Dspctl.cpp88 static const char *features[] = { variable
162 { "features", optional_argument, NULL, optFeatures },
724 for (p = features; *p && feature != *p; p++) ;
H A Dcodesign.cpp94 static const char *features[] = { variable
190 { "features", optional_argument, NULL, optFeatures },
332 for (const char **p = features; *p; p++)
619 for (p = features; *p && feature != *p; p++) ;
/macosx-10.10/WebKit-7600.1.25/win/WebCoreSupport/
H A DWebChromeClient.cpp171 static COMPtr<IPropertyBag> createWindowFeaturesPropertyBag(const WindowFeatures& features) argument
174 if (features.xSet)
175 map.set(WebWindowFeaturesXKey, features.x);
176 if (features.ySet)
177 map.set(WebWindowFeaturesYKey, features.y);
178 if (features.widthSet)
179 map.set(WebWindowFeaturesWidthKey, features.width);
180 if (features.heightSet)
181 map.set(WebWindowFeaturesHeightKey, features.height);
182 map.set(WebWindowFeaturesMenuBarVisibleKey, features
193 createWindow(Frame* frame, const FrameLoadRequest&, const WindowFeatures& features, const NavigationAction& navigationAction) argument
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebView.mm1835 NSDictionary *features = [[NSDictionary alloc] init];
1838 windowFeatures:features];
1839 [features release];
/macosx-10.10/WebCore-7600.1.25/loader/
H A DFrameLoader.cpp3431 PassRefPtr<Frame> createWindow(Frame* openerFrame, Frame* lookupFrame, const FrameLoadRequest& request, const WindowFeatures& features, bool& created) argument
3433 ASSERT(!features.dialog || request.frameName().isEmpty());
3465 Page* page = oldPage->chrome().createWindow(openerFrame, requestWithReferrer, features, NavigationAction(requestWithReferrer.resourceRequest()));
3476 page->chrome().setToolbarsVisible(features.toolBarVisible || features.locationBarVisible);
3480 page->chrome().setStatusbarVisible(features.statusBarVisible);
3484 page->chrome().setScrollbarsVisible(features.scrollbarsVisible);
3488 page->chrome().setMenubarVisible(features.menuBarVisible);
3492 page->chrome().setResizable(features.resizable);
3502 if (features
[all...]
/macosx-10.10/curl-83.1.2/curl/include/curl/
H A Dcurl.h1556 /* Enable/disable specific SSL features with a bitmask, see CURLSSLOPT_* */
2206 int features; /* bitmask, see defines below */ member in struct:__anon7344
2232 #define CURL_VERSION_LIBZ (1<<3) /* libz features are present */
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dversion.c240 0 /* features is 0 by default */
327 version_info.features |= CURL_VERSION_IDN;
329 version_info.features |= CURL_VERSION_IDN;
/macosx-10.10/curl-83.1.2/curl/
H A Dltmain.sh38 # --features display basic configuration information and exit
919 # Display the features supported by this script.
1085 --features)
/macosx-10.10/curl-83.1.2/curl/src/
H A Dtool_doswin.c271 if(curlinfo->features & CURL_VERSION_SSL) {
H A Dtool_getparam.c582 if(toggle && !(curlinfo->features & CURL_VERSION_LIBZ))
600 if(curlinfo->features & CURL_VERSION_GSSNEGOTIATE)
611 if(curlinfo->features & CURL_VERSION_NTLM)
622 if(curlinfo->features & CURL_VERSION_NTLM_WB)
668 if(curlinfo->features & CURL_VERSION_NTLM)
700 if(curlinfo->features & (CURL_VERSION_KERBEROS4 |
750 if(toggle && !(curlinfo->features & CURL_VERSION_SSL))
801 if(curlinfo->features & CURL_VERSION_GSSNEGOTIATE)
844 if(toggle && !(curlinfo->features & CURL_VERSION_SSL))
852 if(toggle && !(curlinfo->features
[all...]
H A Dtool_help.c301 if(curlinfo->features) {
305 if(curlinfo->features & feats[i].bitmask)
H A Dtool_operate.c1028 if(curlinfo->features & CURL_VERSION_SSL) {
1295 if(curlinfo->features & CURL_VERSION_TLSAUTH_SRP) {
/macosx-10.10/WebCore-7600.1.25/css/
H A DStyleResolver.cpp377 if (m_ruleSets.features().classesInRules.contains(classNames[i].impl()))
455 if (p->hasID() && m_ruleSets.features().idsInRules.contains(p->idForStyleResolution().impl()))
624 if (element->hasID() && m_ruleSets.features().idsInRules.contains(element->idForStyleResolution().impl()))
696 if (state.styledElement()->hasID() && m_ruleSets.features().idsInRules.contains(state.styledElement()->idForStyleResolution().impl()))
2126 m_ruleSets.features().attrsInRules.add(attr.localName().impl());
2181 m_ruleSets.features().attrsInRules.add(attr.localName().impl());

Completed in 430 milliseconds

1234567891011>>