Searched refs:prefix (Results 276 - 300 of 1992) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dmalloc-tree99 def printNode(self, prefix = ' '):
110 print('%s %s%s' % (byteString(self.totalBytes), prefix[:-1], self.name))
115 newPrefix = prefix + '|'
117 newPrefix = prefix + ' '
122 newPrefix = prefix + ' '
132 print('%s %s%s' % (byteString(self.totalBytes), prefix[:-1], self.name))
/external/chromium_org/third_party/closure_compiler/
H A Dcompile_modules.py72 def _debug(self, msg, prefix="(INFO) ", suffix=""):
74 print prefix + msg.strip() + suffix
77 self._debug("MODULE FILE: " + module_file, prefix="")
97 self._debug("MODULE: " + m.name, prefix="", suffix=os.linesep)
108 self._debug(os.linesep, prefix="")
111 self._debug(os.linesep, prefix="")
/external/chromium_org/third_party/tcmalloc/vendor/packages/deb/
H A Drules42 CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
/external/cmockery/cmockery_0_1_2/packages/deb/
H A Drules42 CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
/external/iproute2/examples/
H A Dgaiconf28 cat $file | while read command prefix label; do
34 run ${IP} -6 addrlabel add prefix $prefix label $label
/external/libpcap/
H A Drunlex.sh114 # write to lex.yy.c, it writes to a lex.{prefix from -P}.c.
211 # Get the name of the prefix; scan the source files for a %option prefix
214 prefix=`sed -n 's/%option[ ][ ]*prefix="\(.*\)".*/\1/p' "$@" | tail -1`
215 if [ ! -z "$prefix" ]
217 prefixline="#define yylex ${prefix}lex"
/external/llvm/test/MC/Mips/
H A Dcpload.s1 # RUN: llvm-mc %s -arch=mips -mcpu=mips32r2 | FileCheck %s -check-prefix=ASM
5 # RUN: FileCheck %s -check-prefix=OBJ
9 # RUN: FileCheck %s -check-prefix=OBJ64
H A Dhilo-addressing.s2 # RUN: | FileCheck %s -check-prefix=CHECK-ENC
5 # RUN: | llvm-objdump -disassemble - | FileCheck %s -check-prefix=CHECK-INSTR
8 # RUN: | llvm-readobj -r | FileCheck %s -check-prefix=CHECK-REL
/external/qemu/util/
H A Dpath.c1 /* Code to mangle pathnames into those matching a given prefix.
142 void init_paths(const char *prefix) argument
146 if (prefix[0] == '\0' ||
147 !strcmp(prefix, "/"))
150 if (prefix[0] != '/') {
158 pstrcat(pref_buf, pref_buf_len, prefix);
161 pstrcpy(pref_buf, sizeof(pref_buf), prefix + 1);
/external/smack/src/com/kenai/jbosh/
H A DComposableBody.java157 * in a namespace prefix definition similar to:
158 * {@code <body xmlns:prefix="uri"/>}
160 * @param prefix prefix to define
161 * @param uri namespace URI to associate with the prefix
165 final String prefix, final String uri) {
167 XMLConstants.XML_NS_URI, prefix,
323 String prefix = name.getPrefix();
324 if (prefix != null && prefix
164 setNamespaceDefinition( final String prefix, final String uri) argument
[all...]
/external/chromium_org/chrome/browser/safe_browsing/
H A Dprefix_set_unittest.cc58 const SBPrefix prefix = static_cast<SBPrefix>(base + delta); local
59 shared_prefixes_.push_back(prefix);
66 const SBPrefix prefix = static_cast<SBPrefix>(base::RandUint64()); local
67 shared_prefixes_.push_back(prefix);
198 unsigned prefix; local
199 if (!base::StringToUint(trimmed, &prefix))
201 prefixes->push_back(prefix);
280 for (SBPrefix prefix = kHighBitSet;
281 prefix < kHighBitClear; prefix
308 SBPrefix prefix = kHighBitSet; local
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DExtendedContentHandler.java52 * @param localName the local name of the attribute (without prefix)
76 * attribute will be calculated from the prefix of qName. The local name
120 * @param localName the local name (without prefix) of the element
135 * This method is used to notify that a prefix mapping is to start, but
138 * startPrefixMapping(prefix,uri)
149 * @param prefix the prefix that maps to the given namespace
152 public void namespaceAfterStartElement(String uri, String prefix) argument
156 * This method is used to notify that a prefix maping is to start, which can
158 * @param prefix th
168 startPrefixMapping( String prefix, String uri, boolean shouldFlush) argument
211 getNamespaceURIFromPrefix(String prefix) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOMBuilder.java305 * <p>If the element name has a namespace prefix, the prefix will
374 String prefix, declURL;
378 prefix = (String) m_prefixMappings.elementAt(i);
380 if (prefix == null)
385 elem.setAttributeNS("http://www.w3.org/2000/xmlns/", prefix, declURL);
417 * <p>If the element name has a namespace prefix, the prefix will
728 * Begin the scope of a prefix-URI Namespace mapping.
750 * @param prefix Th
755 startPrefixMapping(String prefix, String uri) argument
777 endPrefixMapping(String prefix) argument
[all...]
/external/chromium_org/chrome/test/ispy/client/
H A Dboto_bucket.py87 def GetAllPaths(self, prefix):
88 return (key.key for key in self.bucket.get_all_keys(prefix=prefix))
/external/chromium_org/chrome/test/ispy/server/
H A Dgs_bucket.py70 def GetAllPaths(self, prefix, max_keys=None, marker=None, delimiter=None):
72 cloudstorage.listbucket(self.bucket, prefix=prefix,
/external/chromium_org/net/spdy/fuzzing/
H A Dhpack_fuzz_mutator.cc72 string prefix = HpackFuzzUtil::HeaderBlockPrefix(block.size()); local
74 CHECK_LT(0, file_out.WriteAtCurrentPos(prefix.data(), prefix.size()));
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
H A Dlayouttestresults.py41 def for_each_test(tree, handler, prefix=''):
43 new_prefix = (prefix + '/' + key) if prefix else key
/external/chromium_org/tools/emacs/
H A Dflymake-chromium.el33 (defun cr-flymake-string-prefix-p (prefix str)
34 "Return non-nil if PREFIX is a prefix of STR (23.2 has string-prefix-p but
36 (string= prefix (substring str 0 (length prefix))))
43 (cr-flymake-string-prefix-p
53 (file-truename (or (and (cr-flymake-string-prefix-p
/external/clang/utils/
H A DCaptureCmd24 def saveCaptureData(prefix, dir, object):
28 prefix + key)
33 return prefix + key
/external/dhcpcd/
H A Dplatform-linux.c124 static const char *prefix = "/proc/sys/net/ipv6/conf"; variable
135 snprintf(path, sizeof(path), "%s/%s/accept_ra", prefix, ifname);
145 prefix, ifname);
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/
H A DDefaultMapStorage.java25 * Default phone prefix map storage strategy that is used for data not containing description
54 for (int prefix : sortedPhonePrefixMap.keySet()) {
55 phoneNumberPrefixes[index++] = prefix;
56 possibleLengths.add((int) Math.log10(prefix) + 1);
/external/lzma/CPP/Common/
H A DWildcard.h63 CPair(const UString &prefix): Prefix(prefix) { }; argument
68 int FindPrefix(const UString &prefix) const;
/external/qemu/android/
H A Dhw-control.c83 if_starts_with( uint8_t* buf, int buflen, const char* prefix )
85 int prefixlen = strlen(prefix);
87 if (buflen < prefixlen || memcmp(buf, prefix, prefixlen))
/external/qemu/distrib/sdl-1.2.15/acinclude/
H A Dalsa.m49 dnl enables arguments --with-alsa-prefix=
10 dnl --with-alsa-enc-prefix=
26 AC_ARG_WITH(alsa-prefix,
27 [ --with-alsa-prefix=PFX Prefix where Alsa library is installed(optional)],
30 AC_ARG_WITH(alsa-inc-prefix,
31 [ --with-alsa-inc-prefix=PFX Prefix where include libraries are (optional)],
/external/bison/build-aux/
H A Dinstall-sh394 /*) prefix='/';;
395 [-=\(\)!]*) prefix='./';;
396 *) prefix='';;
415 prefix=$prefix$d
416 if test -d "$prefix"; then
423 test -d "$prefix" || exit 1
425 case $prefix in
426 *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
427 *) qprefix=$prefix;;
[all...]

Completed in 2191 milliseconds

<<11121314151617181920>>