Home
last modified time | relevance | path

Searched refs:dfn (Results 1 – 25 of 114) sorted by relevance

12345

/external/libvpx/libvpx/build/make/
Drtcd.pl140 my $dfn = eval "\$${fn}_default";
141 $dfn = eval "\$${dfn}";
162 my $dfn = eval "\$${fn}_default";
163 $dfn = eval "\$${dfn}";
170 print "#define ${fn} ${dfn}\n";
183 my $dfn = eval "\$${fn}_default";
184 $dfn = eval "\$${dfn}";
186 print " $fn = $dfn;\n";
190 next if "$ofn" eq "$dfn";
/external/libaom/libaom/build/cmake/
Drtcd.pl149 my $dfn = eval "\$${fn}_default";
150 $dfn = eval "\$${dfn}";
171 my $dfn = eval "\$${fn}_default";
172 $dfn = eval "\$${dfn}";
179 print "#define ${fn} ${dfn}\n";
192 my $dfn = eval "\$${fn}_default";
193 $dfn = eval "\$${dfn}";
195 print " $fn = $dfn;\n";
199 next if "$ofn" eq "$dfn";
/external/libpng/scripts/
DREADME.txt62 pngwin.dfn => Used to maintain pngwin.def
66 def.dfn => Used for maintaining pnglibconf.h
70 sym.dfn => Used for symbol versioning
72 symbols.dfn => Used for symbol versioning
73 vers.dfn => Used for symbol versioning
81 intprefix.dfn => Used by autoconf tools
83 prefix.dfn => Used by autoconf tools
Dpnglibconf.mak33 pnglibconf.h: pnglibconf.dfn
41 pnglibconf.dfn: $(srcdir)/scripts/pnglibconf.dfa $(srcdir)/scripts/options.awk $(srcdir)/pngconf.h …
53 pnglibconf.dfn
Dmakefile.std63 pnglibconf.h: pnglibconf.dfn
71 pnglibconf.dfn: scripts/pnglibconf.dfa scripts/options.awk pngconf.h pngusr.dfa $(DFA_XTRA)
Dgenout.cmake.in81 execute_process(COMMAND "${AWK}" -f "${SRCDIR}/scripts/dfn.awk"
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
DDecimalFormatTest.java27 DecimalFormat dfn = new DecimalFormat("#,#0.00"); in testClone() local
28 dfn.setNegativePrefix(dfn.getNegativePrefix() + '!'); in testClone()
29 testEHCS(df, df2, dfn); in testClone()
/external/libpng/projects/owatcom/
Dpngconfig.mak41 pnglibconf.h: pnglibconf.dfn
42 $(DELETE) $@ dfn.c dfn1.out dfn2.out
43 $(ECHO) $#include "pnglibconf.dfn" >dfn.c
44 $(CPP) $(DFNFLAGS) dfn.c >dfn1.out
58 $(DELETE) dfn.c dfn1.out dfn2.out
60 pnglibconf.dfn: ..\..\scripts\pnglibconf.dfa ..\..\scripts\options.awk pngconfig.dfa ..\..\pngconf.h
153 $(DELETE) ..\..\pnglibconf.h pnglibconf.* dfn.c *.out pngconfig.inf
/external/python/cpython2/Lib/logging/
Dhandlers.py131 dfn = "%s.%d" % (self.baseFilename, i + 1)
134 if os.path.exists(dfn):
135 os.remove(dfn)
136 os.rename(sfn, dfn)
137 dfn = self.baseFilename + ".1"
138 if os.path.exists(dfn):
139 os.remove(dfn)
142 os.rename(self.baseFilename, dfn)
345 dfn = self.baseFilename + "." + time.strftime(self.suffix, timeTuple)
346 if os.path.exists(dfn):
[all …]
/external/python/cpython3/Lib/logging/
Dhandlers.py161 dfn = self.rotation_filename("%s.%d" % (self.baseFilename,
164 if os.path.exists(dfn):
165 os.remove(dfn)
166 os.rename(sfn, dfn)
167 dfn = self.rotation_filename(self.baseFilename + ".1")
168 if os.path.exists(dfn):
169 os.remove(dfn)
170 self.rotate(self.baseFilename, dfn)
389 dfn = self.rotation_filename(self.baseFilename + "." +
391 if os.path.exists(dfn):
[all …]
/external/python/cpython3/Parser/
Dasdl_c.py104 for dfn in mod.dfns:
105 self.visit(dfn)
144 for dfn in mod.dfns:
145 self.visit(dfn)
216 for dfn in mod.dfns:
217 self.visit(dfn)
342 for dfn in mod.dfns:
343 self.visit(dfn)
963 for dfn in mod.dfns:
964 self.visit(dfn)
[all …]
Dasdl.py146 for dfn in mod.dfns:
147 self.visit(dfn)
/external/python/cpython2/Parser/
Dasdl_c.py102 for dfn in mod.dfns:
103 self.visit(dfn)
142 for dfn in mod.dfns:
143 self.visit(dfn)
212 for dfn in mod.dfns:
213 self.visit(dfn)
336 for dfn in mod.dfns:
337 self.visit(dfn)
888 for dfn in mod.dfns:
889 self.visit(dfn)
[all …]
Dasdl.py338 for dfn in mod.dfns:
339 self.visit(dfn)
412 for dfn in mod.dfns:
413 print dfn.type
/external/python/cpython3/Doc/reference/
Dexecutionmodel.rst20 A :dfn:`block` is a piece of Python program text that is executed as a unit.
31 A code block is executed in an :dfn:`execution frame`. A frame contains some
53 :dfn:`Names` refer to objects. Names are introduced by name binding operations.
79 defined there, it is a :dfn:`free variable`.
81 Each occurrence of a name in the program text refers to the :dfn:`binding` of
91 A :dfn:`scope` defines the visibility of a name within a block. If a local
101 :dfn:`environment`.
/external/python/cpython2/Doc/reference/
Dexecutionmodel.rst25 :dfn:`Names` refer to objects. Names are introduced by name binding operations.
26 Each occurrence of a name in the program text refers to the :dfn:`binding` of
31 A :dfn:`block` is a piece of Python program text that is executed as a unit.
44 A code block is executed in an :dfn:`execution frame`. A frame contains some
50 A :dfn:`scope` defines the visibility of a name within a block. If a local
67 :dfn:`environment`.
74 but not defined there, it is a :dfn:`free variable`.
/external/python/cpython3/Lib/test/
Dtest_asdl_parser.py101 for dfn in mod.dfns:
102 self.visit(dfn)
/external/python/cpython2/Doc/library/
Dthread.rst21 (also called :dfn:`light-weight processes` or :dfn:`tasks`) --- multiple threads of
23 (also called :dfn:`mutexes` or :dfn:`binary semaphores`) are provided.
Dcd.rst26 An audio CD is divided into :dfn:`tracks` or :dfn:`programs` (the terms are used
27 interchangeably). Tracks can be subdivided into :dfn:`indices`. An audio CD
28 contains a :dfn:`table of contents` which gives the starts of the tracks on the
Dal.rst44 :dfn:`audio port object`; methods of audio port objects are described below.
49 The return value is a new :dfn:`audio configuration object`; methods of audio
/external/python/cpython3/Doc/library/
D_thread.rst16 (also called :dfn:`light-weight processes` or :dfn:`tasks`) --- multiple threads of
18 (also called :dfn:`mutexes` or :dfn:`binary semaphores`) are provided.
/external/python/cpython2/Modules/_ctypes/libffi/doc/
Dlibffi.texi68 compilation to work. One such convention is the @dfn{calling
73 sometimes called the @dfn{ABI} or @dfn{Application Binary Interface}.
123 single @code{ffi_cif}. The @dfn{cif} in @code{ffi_cif} stands for
453 This facility is called the @dfn{closure API}. Closures are not
/external/libpng/contrib/pngminim/encoder/
Dmakefile101 $(RM) pnglibconf.h pnglibconf.dfn
/external/libpng/contrib/pngminim/decoder/
Dmakefile102 $(RM) pnglibconf.h pnglibconf.dfn
/external/libpng/contrib/pngminim/preader/
Dmakefile117 $(RM) pnglibconf.h pnglibconf.dfn

12345