Searched refs:subset (Results 1 - 25 of 62) sorted by relevance

123

/macosx-10.10.1/ncurses-44/ncurses/
H A Dmk-2nd.awk42 # subset ("none", "base", "base+ext_funcs" or "termlib")
61 if (subset == "none") {
63 } else if (index(subset,$2) > 0) {
71 printf "# subset: %s\n", subset
120 if ( subset ~ /base/ ) {
122 } else if ( subset ~ /termlib/ ) {
H A Dmk-hdr.awk34 # subset ("none", "base", "base+ext_funcs" or "termlib", etc.)
48 if (subset == "none") {
50 } else if (index(subset,$2) > 0) {
64 printf "# subset: %s\n", subset
H A Dmk-1st.awk40 # subset ("none", "base", "base+ext_funcs" or "termlib", etc.)
59 return ( subset ~ /^ticlib$/ );
62 return ( subset ~ /^(ticlib\+)?termlib(\+ext_tinfo)?$/ );
180 if (subset ~ /^base/ || subset == "ticlib" ) {
227 if (subset == "none") {
229 } else if (index(subset,$2) > 0) {
233 printf "# generated by mk-1st.awk (subset=%s)\n", subset
240 printf "# subset
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/python/
H A DPyView.h63 void map(const PWOCallable &func, const PyView &subset);
67 PyView *indices(const PyView &subset);
H A DPyView.cpp746 "map(func, subset=None) -- apply func to each row of view,\n"
747 "or (if subset specified) to each row in view that is also in subset.\n"
750 "subset must be a subset of view: eg, customers.map(func, customers.select(....)).\n";
760 PyView &subset = *(PyView*)(PyObject*)args[1]; local
762 o->map(func, subset);
803 "remove(indices) -- remove all rows whose indices are in subset from view\n"
811 PyView &subset = *(PyView*)(PyObject*)args[0]; local
812 o->remove(subset);
828 PyView &subset = *(PyView*)(PyObject*)args[0]; local
1548 map(const PWOCallable &func, const PyView &subset) argument
1562 indices(const PyView &subset) argument
[all...]
/macosx-10.10.1/ruby-106/ruby/test/
H A Dtest_set.rb251 set.subset?()
255 set.subset?(2)
259 set.subset?([2])
262 assert_equal(true, set.subset?(Set[1,2,3,4]))
263 assert_equal(true, set.subset?(Set[1,2,3]))
264 assert_equal(false, set.subset?(Set[1,2]))
265 assert_equal(false, set.subset?(Set[]))
270 assert_equal(true, Set[].subset?(Set[1]))
271 assert_equal(true, Set[].subset?(Set[]))
/macosx-10.10.1/ICU-531.30/icuSources/data/misc/
H A Dmiscfiles.mk19 # * To REPLACE the default list and only build a subset of files:
/macosx-10.10.1/ICU-531.30/icuSources/data/sprep/
H A Dsprepfiles.mk19 # * To REPLACE the default list and only build a subset of files:
/macosx-10.10.1/configd-699.1.5/Plugins/PreferencesMonitor/
H A Dprefsmon.c373 CFDictionaryRef subset; local
384 subset = base;
387 subset = SCPreferencesPathGetValue(prefs, link);
388 if (!subset) {
398 if (CFDictionaryContainsKey(subset, kSCResvInactive)) {
421 nKeys = CFDictionaryGetCount(subset);
425 CFDictionaryGetKeysAndValues(subset, keys, vals);
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Dcpu-m68k.c160 int superset = 0, subset = 0; local
186 return superset ? superset : subset;
/macosx-10.10.1/libxml2-26/libxml2/include/libxml/
H A Dxmlregexp.h179 xmlExpNodePtr subset,
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/include/libxml/
H A Dxmlregexp.h179 xmlExpNodePtr subset,
/macosx-10.10.1/libxml2-26/libxml2/
H A Dtestrecurse.c929 int subset = 0; local
942 subset++;
947 if (subset == 0) {
H A Dtestlimits.c719 * Does this document has an internal subset
734 * Does this document has an external subset
749 * Does this document has an internal subset
765 * Does this document has an external subset
1602 int subset = 0; local
1613 subset = 1;
1615 if (subset == 0) {
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dtestrecurse.c937 int subset = 0; local
950 subset++;
955 if (subset == 0) {
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dset.rb41 # shorthand for the {proper_,}{subset?,superset?} methods. However,
53 # s1.subset? s2 # -> false
54 # s2.subset? s1 # -> true
211 # Returns true if the set is a subset of the given set.
212 def subset?(set)
217 alias <= subset?
219 # Returns true if the set is a proper subset of the given set.
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dsqlj.vim6 " a subset of whatever standard
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dmach++.h184 Bootstrap subset(Port requestor);
H A Dmach++.cpp264 Bootstrap Bootstrap::subset(Port requestor) function in class:Security::MachPlusPlus::Bootstrap
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dmach++.h184 Bootstrap subset(Port requestor);
H A Dmach++.cpp264 Bootstrap Bootstrap::subset(Port requestor) function in class:Security::MachPlusPlus::Bootstrap
/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/python/test/
H A Dtest_unittest.py235 u1 = self.p0.union(self.f1) # strict subset
246 i1 = self.p0.intersect(self.f1) # strict subset
255 d1 = self.p0.different(self.f1) # strict subset
266 m1 = self.p0.minus(self.f1) # strict subset
294 subset = self.p0.select(s='a')
295 iv = self.p0.indices(subset)
296 self.assertEqual(len(iv), len(subset))
303 subset = self.p0.select(s='a')
304 iv = self.p0.indices(subset)
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/lib/HTTP/Proxy/
H A DFilterStack.pm183 to select the subset of filters that will be applied on the
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A Dregexec.c135 static VOID subset(struct vars *, struct subre *, chr *, chr *);
595 - subset - set any subexpression relevant to a successful subre
596 ^ static VOID subset(struct vars *, struct subre *, chr *, chr *);
599 subset(
647 subset(v, t, begin, end);
825 subset(v, t, begin, end);
591 subset( function
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A Dregexec.c132 static VOID subset _ANSI_ARGS_((struct vars *, struct subre *, chr *, chr *));
510 - subset - set any subexpression relevant to a successful subre
511 ^ static VOID subset(struct vars *, struct subre *, chr *, chr *);
514 subset(v, sub, begin, end) function
564 subset(v, t, begin, end);
725 subset(v, t, begin, end);

Completed in 302 milliseconds

123