Searched refs:enable (Results 151 - 175 of 874) sorted by relevance

1234567891011>>

/macosx-10.9.5/xnu-2422.115.4/osfmk/vm/
H A Dvm_compressor.h10 * may not be used to create, or enable the creation or redistribution of,
12 * circumvent, violate, or enable the circumvention or violation of, any
211 #define PAGE_REPLACEMENT_DISALLOWED(enable) (enable == TRUE ? lck_rw_lock_shared(&c_master_lock) : lck_rw_done(&c_master_lock))
212 #define PAGE_REPLACEMENT_ALLOWED(enable) (enable == TRUE ? lck_rw_lock_exclusive(&c_master_lock) : lck_rw_done(&c_master_lock))
/macosx-10.9.5/apache-786.1/httpd/
H A Dhttpd.spec108 --enable-suexec --with-suexec \
114 --enable-pie \
124 --enable-mods-shared=all \
125 --enable-ssl --with-ssl --enable-distcache \
126 --enable-proxy \
127 --enable-cache \
128 --enable-disk-cache \
129 --enable-ldap --enable
[all...]
/macosx-10.9.5/ruby-104/ruby/test/ruby/
H A Dtest_settracefunc.rb673 trace.enable{
681 assert_equal(false, trace.enable)
682 assert_equal(true, trace.enable)
683 trace.enable{}
684 assert_equal(true, trace.enable)
704 trace.enable{
719 trace.enable{
741 trace.enable{
760 trace.enable{
782 }.enable{
[all...]
/macosx-10.9.5/CPANInternal-140/JSON-2.53/lib/
H A DJSON.pm534 my $enable = ($flags & $unsupported->{$name}) ? 1 : 0;
536 $pp->$method($enable);
628 # When XS unsupported feature is enable, using PP (de|en)code instead of XS ones.
863 with C<utf8> enable. And the decoded result will contain UNICODE characters.
890 So you B<cannot> use C<decode_json> nor C<JSON> module object with C<utf8> enable.
906 in UTF-8, you should use C<encode_json> or C<JSON> module object with C<utf8> enable.
915 You B<cannot> use C<encode_json> nor C<JSON> module object with C<utf8> enable.
956 $json = $json->ascii([$enable])
960 If $enable is true (or missing), then the encode method will not generate characters outside
964 If $enable i
[all...]
/macosx-10.9.5/CPANInternal-140/JSON/lib/JSON/
H A DPP.pm53 # Perl version check, Unicode handling is enable?
69 my \$enable = defined \$_[1] ? \$_[1] : 1;
71 if (\$enable) {
165 my $enable = defined $v ? $v : 1;
167 if ($enable) { # indent_length(3) for JSON::XS compatibility
1620 $json = $json->ascii([$enable])
1624 If $enable is true (or missing), then the encode method will not generate characters outside
1632 If $enable is false, then the encode method will not escape Unicode characters unless
1640 $json = $json->latin1([$enable])
1644 If $enable i
[all...]
/macosx-10.9.5/CPANInternal-140/JSON-2.53/lib/JSON/
H A DbackportPP.pm56 # Perl version check, Unicode handling is enable?
69 my \$enable = defined \$_[1] ? \$_[1] : 1;
71 if (\$enable) {
165 my $enable = defined $v ? $v : 1;
167 if ($enable) { # indent_length(3) for JSON::XS compatibility
1738 with C<utf8> enable. And the decoded result will contain UNICODE characters.
1765 So you B<cannot> use C<decode_json> nor C<JSON> module object with C<utf8> enable.
1779 in UTF-8, you should use C<encode_json> or C<JSON> module object with C<utf8> enable.
1788 You B<cannot> use C<encode_json> nor C<JSON> module object with C<utf8> enable.
1829 $json = $json->ascii([$enable])
[all...]
/macosx-10.9.5/CPANInternal-140/JSON/lib/
H A DJSON.pm502 my $enable = ($flags & $unsupported->{$name}) ? 1 : 0;
504 $pp->$method($enable);
603 # When XS unsupported feature is enable, using PP de/encode.
828 $json = $json->ascii([$enable])
832 If $enable is true (or missing), then the encode method will not generate characters outside
836 If $enable is false, then the encode method will not escape Unicode characters unless
848 $json = $json->latin1([$enable])
852 If $enable is true (or missing), then the encode method will encode the resulting JSON
855 If $enable is false, then the encode method will not escape Unicode characters
863 $json = $json->utf8([$enable])
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/snack/snack/unix/
H A Dconfigure.in48 AC_MSG_ERROR(Tcl and Tk must be configured with the --enable-shared flag)
215 AC_ARG_ENABLE(alsa,[ --enable-alsa enable ALSA support],,enableval3="no")
/macosx-10.9.5/CPANInternal-140/Log-Log4perl-1.40/t/
H A D003Layout-Rr.t6 Log::Log4perl::InternalDebug->enable();
H A D006Config-Java.t9 Log::Log4perl::InternalDebug->enable();
H A D007LogPrio.t9 Log::Log4perl::InternalDebug->enable();
H A D020Easy2.t9 Log::Log4perl::InternalDebug->enable();
H A D048lwp.t9 Log::Log4perl::InternalDebug->enable();
H A D051Extra.t9 Log::Log4perl::InternalDebug->enable();
H A D056SyncApp2.t14 Log::Log4perl::InternalDebug->enable();
H A D066SQLite.t8 Log::Log4perl::InternalDebug->enable();
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/mech/
H A Dgss_mo.c74 CFBooleanRef enable = (CFBooleanRef)CFDictionaryGetValue(dict, CFSTR("enable")); local
77 if (enable && CFGetTypeID(enable) == CFBooleanGetTypeID())
78 def = CFBooleanGetValue(enable);
79 else if (enable && CFGetTypeID(enable) == CFNumberGetTypeID())
122 int enable, gss_buffer_t value)
132 return m->gm_mo[n].set(mech, &m->gm_mo[n], enable, value);
121 gss_mo_set(gss_const_OID mech, gss_const_OID option, int enable, gss_buffer_t value) argument
/macosx-10.9.5/WebCore-7537.78.1/Modules/webaudio/
H A DAudioNodeOutput.cpp241 void AudioNodeOutput::enable() function in class:WebCore::AudioNodeOutput
248 input->enable(this);
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorProfilerAgent.h80 virtual void enable(ErrorString*);
86 void enable(bool skipRecompile);
H A DInspectorResourceAgent.h141 virtual void enable(ErrorString*);
157 void enable();
/macosx-10.9.5/WebCore-7537.78.1/platform/geoclue/
H A DGeolocationProviderGeoclue.cpp114 void GeolocationProviderGeoclue::setEnableHighAccuracy(bool enable) argument
116 m_enableHighAccuracy = enable;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/coordinated/
H A DCoordinatedGraphicsScene.h85 void setDrawsBackground(bool enable) { m_setDrawsBackground = enable; } argument
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DWebSettings.h194 void setEmailMode(bool enable);
197 void setShouldRenderAnimationsOnScrollOrZoom(bool enable);
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/checknames/ns2/
H A Dnamed.conf30 acache-enable yes;
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/checknames/ns3/
H A Dnamed.conf30 acache-enable yes;

Completed in 146 milliseconds

1234567891011>>