Searched refs:feature (Results 1 - 25 of 320) sorted by relevance

1234567891011>>

/macosx-10.9.5/bash-92/bash-3.2/examples/scripts.noah/
H A Drequire.bash12 # only one function) registers itself with a symbol that marks a "feature"
13 # as being "provided". If later you "require" a given feature, you save
18 # "feature" that won't need to get loaded again. (See warning below for
29 # searched again for a file name the same as the feature (i.e. without any
61 # Returns 0 (true) if argument is a provided feature. Returns 1 (false)
68 local feature="$1"
71 *" ${feature} "* ) return 0 ;;
87 local feature
89 for feature in "$@" ; do
90 if ! featurep "${feature}" ; the
[all...]
/macosx-10.9.5/swig-10/Lib/python/
H A Dpyuserdir.swg14 Use the "nondynamic" feature to make a wrapped class behave as a "nondynamic"
33 Since nondynamic is a feature, if you use it like
48 #define %pythonnondynamic %feature("python:nondynamic", "1")
49 #define %nopythonnondynamic %feature("python:nondynamic", "0")
50 #define %clearpythonnondynamic %feature("python:nondynamic", "")
64 #define %pythonmaybecall %feature("python:maybecall", "1")
65 #define %nopythonmaybecall %feature("python:maybecall", "0")
66 #define %clearpythonmaybecall %feature("python:maybecall", "")
70 The %pythoncallback feature produce a more natural callback wrapper
110 #define %pythoncallback %feature("pytho
[all...]
H A Dpyabc.i2 %feature("python:abc", #Abc) Type;
/macosx-10.9.5/ruby-104/ruby/test/-ext-/array/
H A Dtest_resize.rb7 feature = '[ruby-dev:42912]'
10 assert_equal(10, ary.size, feature)
11 assert_equal([*1..10], ary, feature)
13 assert_equal(100, ary.size, feature)
14 assert_equal([*1..10]+[nil]*90, ary, feature)
16 assert_equal(20, ary.size, feature)
17 assert_equal([*1..10]+[nil]*10, ary, feature)
19 assert_equal(2, ary.size, feature)
20 assert_equal([1,2], ary, feature)
22 assert_equal(3, ary.size, feature)
[all...]
/macosx-10.9.5/ruby-104/ruby/test/-ext-/load/
H A Dtest_dot_dot.rb5 feature = '[ruby-dev:41774]'
6 assert_nothing_raised(LoadError, feature) {
/macosx-10.9.5/CPANInternal-140/JSON-Any/
H A DMakefile.PL25 feature 'JSON',
30 feature 'JSON::XS',
34 feature 'JSON::PC',
38 feature 'JSON::DWIW',
42 feature 'JSON::Syck',
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DgenerateAboutDataFeatures.pl36 foreach my $feature(@features) {
37 print $output "#if " . $macro . "(" . $feature . ")\n";
42 print $output " " . "\"" . $feature . "\");\n\n";
/macosx-10.9.5/swig-10/Lib/octave/
H A Doctuserdir.swg10 #define %implicitconv %feature("implicitconv")
11 #define %noimplicitconv %feature("implicitconv", "0")
12 #define %clearimplicitconv %feature("implicitconv", "")
/macosx-10.9.5/CPANInternal-140/JSON-Any-1.29/
H A DMakefile.PL25 feature 'JSON',
30 feature 'JSON::XS',
34 feature 'JSON::DWIW',
38 feature 'JSON::Syck',
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DFeatureObserver.cpp50 // Clearing feature bits is timing sensitive. Ports other than chromium do not use HistogramSupport,
60 void FeatureObserver::observe(Document* document, Feature feature) argument
69 page->featureObserver()->didObserve(feature);
72 void FeatureObserver::observe(DOMWindow* domWindow, Feature feature) argument
75 observe(domWindow->document(), feature);
H A DFeatureObserver.h121 void didObserve(Feature feature) argument
123 ASSERT(feature != PageDestruction); // PageDestruction is reserved as a scaling factor.
124 ASSERT(feature < NumberOfFeatures);
129 m_featureBits->quickSet(feature);
/macosx-10.9.5/swig-10/Lib/
H A Dswig.swg45 #define %readonly %warn "114:%readonly is deprecated. Use %immutable; " %feature("immutable");
46 #define %readwrite %warn "115:%readwrite is deprecated. Use %mutable; " %feature("immutable","");
48 #define %immutable %feature("immutable")
49 #define %noimmutable %feature("immutable","0")
50 #define %clearimmutable %feature("immutable","")
54 #define %nodefault %feature("nodefault","1")
55 #define %default %feature("nodefault","0")
56 #define %clearnodefault %feature("nodefault","")
60 #define %nodefaultctor %feature("nodefaultctor","1")
61 #define %defaultctor %feature("nodefaultcto
[all...]
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dmkbltnmlst.sh46 for feature in $autofeatures; do
47 echo " \"$feature\","
52 for feature in $autofeatures_emu; do
53 echo " \"$feature\","
64 for feature in $autofeatures; do
65 echo " \"$feature\","
/macosx-10.9.5/Security-55471.14.18/include/security_codesigning/
H A Dpolicydb.h115 std::string featureLevel(const char *feature);
116 bool hasFeature(const char *feature) { return !featureLevel(feature).empty(); } argument
117 void addFeature(const char *feature, const char *value, const char *remarks);
118 void simpleFeature(const char *feature, const char *sql);
119 void simpleFeature(const char *feature, void (^perform)());
H A Dpolicydb.cpp200 SQLite::Statement feature(*this, "SELECT value FROM feature WHERE name=:name");
201 feature.bind(":name") = name;
202 if (feature.nextRow()) {
203 if (const char *value = feature[0])
208 return ""; // new feature (no level)
213 SQLite::Statement feature(*this, "INSERT OR REPLACE INTO feature (name,value,remarks) VALUES(:name, :value, :remarks)");
214 feature.bind(":name") = name;
215 feature
220 simpleFeature(const char *feature, void (^perform)()) argument
230 simpleFeature(const char *feature, const char *sql) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/lib/
H A Dpolicydb.h115 std::string featureLevel(const char *feature);
116 bool hasFeature(const char *feature) { return !featureLevel(feature).empty(); } argument
117 void addFeature(const char *feature, const char *value, const char *remarks);
118 void simpleFeature(const char *feature, const char *sql);
119 void simpleFeature(const char *feature, void (^perform)());
/macosx-10.9.5/WebCore-7537.78.1/bindings/objc/
H A DDOMImplementationFront.cpp52 bool DOMImplementationFront::hasFeature(const String& feature, const String& version) const argument
54 return reinterpret_cast<const DOMImplementation*>(this)->hasFeature(feature, version);
67 DOMImplementationFront* DOMImplementationFront::getInterface(const String& feature) argument
69 return reinterpret_cast<DOMImplementationFront*>(reinterpret_cast<DOMImplementation*>(this)->getInterface(feature));
H A DDOMImplementationFront.h47 bool hasFeature(const String& feature, const String& version) const;
50 DOMImplementationFront* getInterface(const String& feature);
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDOMImplementation.cpp92 static bool isSVG10Feature(const String &feature, const String &version) argument
117 return feature.startsWith("org.w3c.", false)
118 && svgFeatures.contains(feature.right(feature.length() - 8));
121 static bool isSVG11Feature(const String &feature, const String &version) argument
129 // Sadly, we cannot claim to implement any of the SVG 1.1 generic feature sets
186 return feature.startsWith("http://www.w3.org/tr/svg11/feature#", false)
187 && svgFeatures.contains(feature.right(feature
191 isEvents2Feature(const String &feature, const String &version) argument
209 isEvents3Feature(const String &feature, const String &version) argument
240 hasFeature(const String& feature, const String& version) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DFontFeatureSettings.h56 void append(const FontFeature& feature) { m_list.append(feature); } argument
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DLookupProcessor.cpp195 // one feature.
196 for (le_int32 feature = 0; feature < featureCount; feature += 1) {
197 le_uint16 featureIndex = SWAPW(langSysTable->featureIndexArray[feature]);
226 // If this is the required feature, add its lookups
232 // If we added lookups from the required feature, sort them
237 for (le_uint16 feature = 0; feature < featureCount; feature
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dloadhist.el1 ;;; loadhist.el --- lisp functions for working with feature groups
30 ;; Entry points include `unload-feature', `symbol-file', and
31 ;; `feature-file', documented in the Emacs Lisp manual.
37 (defun feature-symbols (feature)
43 (if (member (cons 'provide feature) (cdr x))
48 (defun feature-file (feature)
51 Lisp file without an extension. If the feature came from an `eval-buffer' on
53 (if (not (featurep feature))
[all...]
/macosx-10.9.5/swig-10/Lib/std/
H A Dstd_container.i103 %feature("ignore") std::vector<Type >::vector(size_type size);
104 %feature("ignore") std::vector<Type >::resize(size_type size);
105 %feature("ignore") std::deque<Type >::deque(size_type size);
106 %feature("ignore") std::deque<Type >::resize(size_type size);
107 %feature("ignore") std::list<Type >::list(size_type size);
108 %feature("ignore") std::list<Type >::resize(size_type size);
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/framework/tool/rubycocoa/lib/osx/
H A Dstandaloneify.rb300 dependencies.each do |feature,path|
302 case feature
304 next if feature[0] == ?/
305 if File.exist?(File.join(ruby_cocoa_inc,feature)) then
306 puts "Skipping RubyCocoa file " + feature.inspect
309 if File.exist?(File.join(resources_d,feature)) then
310 puts "Skipping existing Resource file " + feature.inspect
313 dir = File.join(third_party_d,File.dirname(feature))
315 puts "Copying " + feature.inspect
316 FileUtils.cp(path,File.join(dir,File.basename(feature)))
[all...]
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/framework/tool/
H A Dstandaloneify.rb312 dependencies.each do |feature,path|
314 case feature
316 next if feature[0] == ?/
317 if File.exist?(File.join(ruby_cocoa_inc,feature)) then
318 puts "Skipping RubyCocoa file " + feature.inspect
322 puts "Skipping existing Resource file " + feature.inspect
325 dir = File.join(third_party_d,File.dirname(feature))
327 puts "Copying " + feature.inspect
328 FileUtils.cp(path,File.join(dir,File.basename(feature)))
334 puts "Copying bundle " + feature
[all...]

Completed in 279 milliseconds

1234567891011>>