Home
last modified time | relevance | path

Searched refs:announce (Results 1 – 25 of 101) sorted by relevance

12345

/external/libevent/test/
Dtest.sh55 announce () { function
71 announce Skipping test
78 announce OKAY ;
80 announce FAILED ;
88 announce OKAY ;
90 announce FAILED ;
95 announce "OKAY (output not checked)" ;
97 announce "FAILED (output not checked)" ;
111 announce OKAY ;
113 announce FAILED ;
[all …]
/external/autotest/client/cros/netprotos/
Dcros_p2p.py40 def add_file(self, file_id, file_size, announce=False): argument
49 self._update_records(announce)
52 def remove_file(self, file_id, announce=False): argument
60 self._update_records(announce)
63 def set_num_connections(self, num_connections, announce=False): argument
74 self._update_records(announce)
77 def _update_records(self, announce): argument
83 self._zeroconf.hostname + '.' + self._p2p_domain, txts, announce)
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/term/
D_term.py96 announce("%%(GREEN)s%s%%(NORMAL)s" % bmt, **kwargs)
101 announce("%%(BOLD)s%%(RED)s%s%%(NORMAL)s" % bmt, **kwargs)
106 announce("%%(BOLD)s%%(YELLOW)s%s%%(NORMAL)s" % fmt, **kwargs)
109 def announce(fmt, **kwargs): function
D__init__.py28 from _setup.term._term import terminfo, write, green, red, yellow, announce
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/term/
D_term.py97 announce("%%(GREEN)s%s%%(NORMAL)s" % bmt, **kwargs)
102 announce("%%(BOLD)s%%(RED)s%s%%(NORMAL)s" % bmt, **kwargs)
107 announce("%%(BOLD)s%%(YELLOW)s%s%%(NORMAL)s" % fmt, **kwargs)
110 def announce(fmt, **kwargs): function
D__init__.py28 from _setup.term._term import terminfo, write, green, red, yellow, announce
/external/python/setuptools/setuptools/command/
Dupload_docs.py73 self.announce('Using upload directory %s' % self.target_dir)
163 self.announce(msg, log.INFO)
189 self.announce(str(e), log.ERROR)
195 self.announce(msg, log.INFO)
201 self.announce(msg, log.INFO)
204 self.announce(msg, log.ERROR)
Dtest.py218 self.announce('skipping "%s" (dry run)' % cmd)
221 self.announce('running "%s"' % cmd)
252 self.announce(msg, log.ERROR)
/external/python/cpython2/Lib/distutils/command/
Dregister.py141 self.announce('''\
169 self.announce('Server response (%s): %s' % (code, result),
179 self.announce(('I can store your PyPI login so future '
181 self.announce('(the login will be stored in %s)' % \
255 self.announce('Registering %s to %s' % (data['name'],
313 self.announce('%s%s%s' % (dashes, data, dashes))
Dupload.py163 self.announce("Submitting %s to %s" % (filename, self.repository), log.INFO)
180 self.announce(msg, log.INFO)
182 self.announce(str(e), log.ERROR)
189 self.announce('Server response (%s): %s' % (status, reason),
193 self.announce(msg, log.ERROR)
/external/python/cpython3/Lib/distutils/command/
Dupload.py181 self.announce(msg, log.INFO)
201 self.announce(str(e), log.ERROR)
205 self.announce('Server response (%s): %s' % (status, reason),
210 self.announce(msg, log.INFO)
213 self.announce(msg, log.ERROR)
Dregister.py140 self.announce('''\
167 self.announce('Server response (%s): %s' % (code, result),
177 self.announce(('I can store your PyPI login so future '
179 self.announce('(the login will be stored in %s)' % \
253 self.announce('Registering %s to %s' % (data['name'],
303 self.announce(msg, log.INFO)
/external/mesa3d/docs/
Dlists.rst19 - `mesa-announce <https://lists.freedesktop.org/mailman/listinfo/mesa-announce>`__
42 `mesa3d-announce <https://sourceforge.net/mailarchive/forum.php?forum_name=mesa3d-announce>`__,
/external/libyuv/files/
Dsetup_links.py131 def announce(self, planning): member in Action
151 def announce(self, planning): member in Remove
172 def announce(self, planning): member in Rmtree
208 def announce(self, planning): member in Symlink
281 action.announce(planning=True)
288 action.announce(planning=True)
323 action.announce(planning=False)
/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/transport/
Dflow_control.cc198 const uint32_t announce = static_cast<uint32_t> GPR_CLAMP( in MaybeSendUpdate() local
200 announced_window_ += announce; in MaybeSendUpdate()
201 return announce; in MaybeSendUpdate()
268 uint32_t announce = static_cast<uint32_t> GPR_CLAMP( in MaybeSendUpdate() local
270 UpdateAnnouncedWindowDelta(tfc_, announce); in MaybeSendUpdate()
271 return announce; in MaybeSendUpdate()
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dflow_control.cc196 const uint32_t announce = static_cast<uint32_t> GPR_CLAMP( in MaybeSendUpdate() local
198 announced_window_ += announce; in MaybeSendUpdate()
199 return announce; in MaybeSendUpdate()
270 uint32_t announce = static_cast<uint32_t> GPR_CLAMP( in MaybeSendUpdate() local
272 UpdateAnnouncedWindowDelta(tfc_, announce); in MaybeSendUpdate()
273 return announce; in MaybeSendUpdate()
/external/python/cpython2/Lib/distutils/
Ddist.py308 self.announce(indent + header)
312 self.announce(indent + "no commands known yet")
318 self.announce(indent +
321 self.announce(indent +
325 self.announce(indent + " " + line)
373 self.announce("using config files: %s" % ', '.join(files))
384 self.announce("Distribution.parse_config_files():")
389 self.announce(" reading %s" % filename)
842 self.announce("Distribution.get_command_obj(): " \
874 self.announce(" setting options for '%s' command:" % command_name)
[all …]
Dcmd.py157 self.announce(indent + header, level=log.INFO)
164 self.announce(indent + "%s = %s" % (option, value),
180 def announce(self, msg, level=1): member in Command
/external/python/cpython3/Lib/distutils/
Ddist.py312 self.announce(indent + header)
316 self.announce(indent + "no commands known yet")
322 self.announce(indent +
325 self.announce(indent +
329 self.announce(indent + " " + line)
377 self.announce("using config files: %s" % ', '.join(files))
400 self.announce("Distribution.parse_config_files():")
405 self.announce(" reading %s" % filename)
854 self.announce("Distribution.get_command_obj(): "
886 self.announce(" setting options for '%s' command:" % command_name)
[all …]
Dcmd.py155 self.announce(indent + header, level=log.INFO)
162 self.announce(indent + "%s = %s" % (option, value),
178 def announce(self, msg, level=1): member in Command
/external/toybox/scripts/
Dmkroot.sh15 announce() { echo -e "\033]2;$CROSS $*\007\n=== $*"; } function
60 announce "airlock"
120 announce toybox
128 announce "$i"; PATH="$PKGDIR:$PATH" source $i; [ $? -ne 0 ] && die $i
213 announce "linux-$KARCH"
248 [ -z "$BUILTIN" ] && announce "${CROSS_BASE}root.cpio.gz" &&
/external/python/setuptools/setuptools/
Dpy36compat.py34 self.announce("Distribution.parse_config_files():")
39 self.announce(" reading %s" % filename)
/external/testng/
DANNOUNCEMENT.txt10 The TestNG team is happy to announce the immediate availability of TestNG 4.5.
27 The TestNG team is happy to announce the immediate availability of TestNG 4.0, with a lot of improv…
41 The TestNG team is happy to announce the availability of TestNG 2.3.
64 I am happy to announce the availability of TestNG 2.1 (http://beust.com/testng).
92 The TestNG team is happy to announce the first release of the TestNG plug-in for Eclipse.
/external/icu/icu4c/source/samples/ustring/
Dustring.cpp49 printUString(const char *announce, const UChar *s, int32_t length) { in printUString() argument
62 printf("%sproblem converting string from Unicode: %s\n", announce, u_errorName(errorCode)); in printUString()
66 printf("%s%s {", announce, out); in printUString()
89 printUnicodeString(const char *announce, const UnicodeString &s) { in printUnicodeString() argument
102 printf("%s%s {", announce, out); in printUnicodeString()
/external/ltp/testcases/open_posix_testsuite/Documentation/
DHOWTO_Release26 6. Craft a release message and send to: posixtest-announce.
30 the announce mailing list.]

12345