Lines Matching refs:name

95         # macro definition is a 2-tuple (name, value), where the value is
97 # undefinition is a 1-tuple (name,).
132 is a string that will be split into executable name and (optional)
159 def _find_macro(self, name):
162 if defn[0] == name:
169 definition, ie. either (name,value) 2-tuple or a (name,) tuple. Do
184 def define_macro(self, name, value=None):
193 i = self._find_macro (name)
197 self.macros.append((name, value))
199 def undefine_macro(self, name):
210 i = self._find_macro (name)
214 undefn = (name,)
238 should *not* be the name of a file containing a library, but the
239 name of the library itself: the actual filename will be inferred by
532 definition is either a (name, value) 2-tuple or a (name,) 1-tuple.
594 'output_libname' should be a library name, not a filename; the
595 filename will be inferred from the library name. 'output_dir' is
820 # library name and extension into a format string, eg.
823 # empty) to the program name: eg. progname + ".exe" for
915 def mkpath (self, name, mode=0o777):
916 mkpath(name, mode, dry_run=self.dry_run)
919 # Map a sys.platform/os.name ('posix', 'nt') to the default compiler
931 # OS name mappings
941 ones returned by os.name) and platform the common value
944 The default values are os.name and sys.platform in case the
948 osname = os.name
992 platform/compiler combination. 'plat' defaults to 'os.name'
1002 plat = os.name
1038 'macros' is the usual thing, a list of 1- or 2-tuples, where (name,)
1039 means undefine (-U) macro 'name', and (name,value) means define (-D)
1040 macro 'name' to 'value'. 'include_dirs' is just a list of directory