Searched refs:prefix (Results 76 - 100 of 1992) sorted by relevance

1234567891011>>

/external/kernel-headers/original/uapi/linux/netfilter_ipv4/
H A Dipt_ULOG.h31 char prefix[ULOG_PREFIX_LEN]; member in struct:ipt_ulog_info
43 char prefix[ULOG_PREFIX_LEN]; member in struct:ulog_packet_msg
/external/llvm/test/MC/ARM/
H A Ddirective-arch_extension-sec.s2 @ RUN: | FileCheck %s -check-prefix CHECK-ARMv6 -check-prefix CHECK-V6
4 @ RUN: | FileCheck %s -check-prefix CHECK-ARMv7 -check-prefix CHECK-V7
6 @ RUN: | FileCheck %s -check-prefix CHECK-THUMBv6 -check-prefix CHECK-V6
8 @ RUN: | FileCheck %s -check-prefix CHECK-THUMBv7 -check-prefix CHECK-V7
/external/smack/asmack-master/static-src/custom/com/kenai/jbosh/
H A DQName.java66 * The value of a QName contains a <b>namespaceURI</b>, a <b>localPart</b> and a <b>prefix</b>.
83 /** Field prefix */
84 private String prefix; field in class:QName
110 * @param prefix Prefix of the QName.
112 public QName(String namespaceURI, String localPart, String prefix) { argument
122 if (prefix == null) {
123 throw new IllegalArgumentException("invalid QName prefix");
125 this.prefix = prefix.intern();
153 return prefix;
[all...]
/external/smack/src/com/kenai/jbosh/
H A DQName.java66 * The value of a QName contains a <b>namespaceURI</b>, a <b>localPart</b> and a <b>prefix</b>.
83 /** Field prefix */
84 private String prefix; field in class:QName
110 * @param prefix Prefix of the QName.
112 public QName(String namespaceURI, String localPart, String prefix) { argument
122 if (prefix == null) {
123 throw new IllegalArgumentException("invalid QName prefix");
125 this.prefix = prefix.intern();
153 return prefix;
[all...]
/external/smali/util/src/main/java/ds/tree/
H A DRadixTree.java90 * Search for all the keys that start with given prefix. limiting the results based on the supplied limit.
92 * @param prefix The prefix for which keys need to be search
94 * @return The list of values those key start with the given prefix
96 public ArrayList<T> searchPrefix(String prefix, int recordLimit); argument
105 * Complete the a prefix to the point where ambiguity starts.
111 * @param prefix The prefix we want to complete
114 public String complete(String prefix); argument
/external/smali/util/src/main/java/org/jf/util/
H A DWrappedIndentingWriter.java45 /** null-ok; optional prefix for every line */
46 private final String prefix; field in class:WrappedIndentingWriter
68 * <code>prefix</code>), or <code>0</code> for no maximum
69 * @param prefix non-null; the prefix for each line
71 public WrappedIndentingWriter(Writer out, int width, String prefix) { argument
82 if (prefix == null) {
83 throw new NullPointerException("prefix == null");
88 this.prefix = (prefix
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DPrefixResolverDefault.java28 * can be used to perform prefix-to-namespace lookup
36 * The context to resolve the prefix from, if the context
54 * Given a namespace, get the corrisponding prefix. This assumes that
57 * @param prefix Prefix to resolve.
58 * @return Namespace that prefix resolves to, or null if prefix
61 public String getNamespaceForPrefix(String prefix) argument
63 return getNamespaceForPrefix(prefix, m_context);
67 * Given a namespace, get the corrisponding prefix.
70 * @param prefix Prefi
76 getNamespaceForPrefix(String prefix, org.w3c.dom.Node namespaceContext) argument
[all...]
H A DNamespaceSupport2.java63 * to the "xml" prefix.</p>
113 * already in force: in this context, only the "xml" prefix is
142 * XML element. After popping the context, all Namespace prefix
168 * Declare a Namespace prefix.
170 * <p>This method declares a prefix in the current Namespace
171 * context; the prefix will remain in force until this context
175 * prefix must not be "xml" or "xmlns".</p>
177 * <p>Note that you must <em>not</em> declare a prefix after
181 * #getPrefix getPrefix} will not return the default "" prefix,
182 * even if you have declared one; to check for a default prefix,
195 declarePrefix(String prefix, String uri) argument
270 getURI(String prefix) argument
535 declarePrefix(String prefix, String uri) argument
646 getURI(String prefix) argument
[all...]
/external/eigen/bench/btl/data/
H A Dmk_mean_script.sh8 prefix=$8
42 echo '<hr/><a href="'$prefix$1'.pdf"><img src="'$prefix$1'.png" alt="'${WHAT}'" /></a><br/>' >> $webpagefilename
/external/libcxx/test/re/re.alg/re.alg.search/
H A Dgrep.pass.cpp32 assert(!m.prefix().matched);
33 assert(m.prefix().first == s);
34 assert(m.prefix().second == m[0].first);
48 assert(!m.prefix().matched);
49 assert(m.prefix().first == s);
50 assert(m.prefix().second == m[0].first);
/external/strace/
H A Dgit-set-file-times11 my $prefix = @ARGV && $ARGV[0] =~ s/^--prefix=// ? shift : '';
31 map { s/^/$prefix/ } @files;
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DUtilityCode.py8 def __init__(self, prefix, *args, **kw):
9 self.prefix = prefix
18 def mangle(self, prefix, name=None):
20 if prefix in (Naming.typeobj_prefix, Naming.func_prefix, Naming.var_prefix, Naming.pyfunc_prefix):
21 # Functions, classes etc. gets a manually defined prefix easily
23 prefix = self.prefix
24 return "%s%s" % (prefix, name)
26 return Symtab.ModuleScope.mangle(self, prefix)
[all...]
/external/tcpdump/
H A Dprint-babel.c114 format_prefix(const u_char *prefix, unsigned char plen) argument
117 if(plen >= 96 && memcmp(prefix, v4prefix, 12) == 0)
118 snprintf(buf, 50, "%s/%u", ipaddr_string(prefix + 12), plen - 96);
121 snprintf(buf, 50, "%s/%u", ip6addr_string(prefix), plen);
130 format_address(const u_char *prefix) argument
132 if(memcmp(prefix, v4prefix, 12) == 0)
133 return ipaddr_string(prefix + 12);
136 return ip6addr_string(prefix);
159 /* Return number of octets consumed from the input buffer (not the prefix length
167 unsigned char prefix[1 local
446 u_char prefix[16]; local
482 u_char prefix[16], plen; local
502 u_char prefix[16], plen; local
[all...]
/external/chromium_org/components/omnibox/
H A Durl_prefix.cc13 // Like URLPrefix::BestURLPrefix() except also handles the prefix of
31 URLPrefix::URLPrefix(const base::string16& prefix, size_t num_components) argument
32 : prefix(prefix),
52 bool URLPrefix::IsURLPrefix(const base::string16& prefix) { argument
55 if (i->prefix == prefix)
71 bool URLPrefix::PrefixMatch(const URLPrefix& prefix, argument
74 return StartsWith(text, prefix.prefix
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dclean-header-guards10 opts.on("--prefix [PREFIX]", "Append a header prefix to all guards") do |prefix|
11 options[:prefix] = prefix
42 new_guard = options[:prefix] + '_' + new_guard if options[:prefix]
/external/chromium_org/third_party/polymer/components-chromium/core-layout/
H A Dcore-layout-extracted.js86 setLayoutClass: function(prefix, old, newValue) {
88 prefix = this.layoutPrefix + prefix;
90 this.layoutContainer.classList.remove(prefix + old);
93 this.layoutContainer.classList.add(prefix + newValue);
/external/zlib/src/contrib/minizip/
H A Dmake_vms.com13 $ cc/include=[--]/prefix=all ioapi.c
14 $ cc/include=[--]/prefix=all miniunz.c
15 $ cc/include=[--]/prefix=all unzip.c
16 $ cc/include=[--]/prefix=all minizip.c
17 $ cc/include=[--]/prefix=all zip.c
/external/chromium_org/chrome/browser/extensions/activity_log/
H A Duma_policy.cc226 std::string prefix = "ExtensionActivity."; local
228 UMA_HISTOGRAM_COUNTS_100(prefix + GetHistogramName(CONTENT_SCRIPT),
230 UMA_HISTOGRAM_COUNTS_100(prefix + GetHistogramName(READ_DOM),
232 UMA_HISTOGRAM_COUNTS_100(prefix + GetHistogramName(MODIFIED_DOM),
234 UMA_HISTOGRAM_COUNTS_100(prefix + GetHistogramName(DOM_METHOD),
236 UMA_HISTOGRAM_COUNTS_100(prefix + GetHistogramName(DOCUMENT_WRITE),
238 UMA_HISTOGRAM_COUNTS_100(prefix + GetHistogramName(INNER_HTML),
240 UMA_HISTOGRAM_COUNTS_100(prefix + GetHistogramName(CREATED_SCRIPT),
242 UMA_HISTOGRAM_COUNTS_100(prefix + GetHistogramName(CREATED_IFRAME),
244 UMA_HISTOGRAM_COUNTS_100(prefix
[all...]
/external/chromium_org/tools/deep_memory_profiler/lib/
H A Dsubcommand.py35 prefix = SubCommand._find_prefix(dump_path)
40 alternative_dirs = SubCommand._estimate_alternative_dirs(prefix)
44 symbol_data_sources = SymbolDataSources(prefix, alternative_dirs)
47 bucket_set.load(prefix)
53 with open(prefix + '.cache.function', 'a+') as cache_f:
57 with open(prefix + '.cache.typeinfo', 'a+') as cache_f:
61 with open(prefix + '.cache.sourcefile', 'a+') as cache_f:
76 def _estimate_alternative_dirs(prefix):
93 with open(prefix + '.maps') as maps_f:
108 prefix
[all...]
/external/chromium_org/build/config/linux/
H A Dpkg-config.py66 """Returns the prefix from pkg-config where packages are installed.
67 This returned prefix is the one that should be stripped from the beginning of
72 # paths relative to /path/to/chroot (i.e. prefix=/build/x86-generic/usr)
73 # instead of relative to /path/to/chroot/build/x86-generic (i.e prefix=/usr).
74 # To support this correctly, it's necessary to extract the prefix to strip
75 # from pkg-config's |prefix| variable.
76 prefix = subprocess.check_output(["pkg-config", "--variable=prefix"] + args,
78 if prefix[-4] == '/usr':
79 return prefix[
119 prefix = GetPkgConfigPrefixToStrip(args) variable
121 prefix = '' variable
[all...]
/external/libcxx/test/re/re.alg/re.alg.match/
H A Degrep.pass.cpp32 assert(!m.prefix().matched);
33 assert(m.prefix().first == s);
34 assert(m.prefix().second == m[0].first);
55 assert(!m.prefix().matched);
56 assert(m.prefix().first == s);
57 assert(m.prefix().second == m[0].first);
71 assert(!m.prefix().matched);
72 assert(m.prefix().first == s);
73 assert(m.prefix().second == m[0].first);
/external/smack/src/org/xbill/DNS/
H A DMnemonic.java37 private String prefix; field in class:Mnemonic
64 * Sets the prefix to use when converting to and from values that don't
68 setPrefix(String prefix) { argument
69 this.prefix = sanitize(prefix);
179 if (prefix != null)
180 return prefix + str;
196 if (prefix != null) {
197 if (str.startsWith(prefix)) {
198 int val = parseNumeric(str.substring(prefix
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/
H A DJAXPPrefixResolver.java31 * can be used to perform prefix-to-namespace lookup
46 public String getNamespaceForPrefix( String prefix ) {
47 return namespaceContext.getNamespaceURI( prefix );
77 * Given a prefix and a Context Node, get the corresponding namespace.
80 * @param prefix Prefix to resolve.
82 * xmlns attribute that binds a prefix to a namespace.
83 * @return Namespace that prefix resolves to, or null if prefix
86 public String getNamespaceForPrefix(String prefix, argument
91 if (prefix
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_dump_defines.c37 const char *prefix)
41 assert(prefix);
43 while(*prefix) {
44 if(*stripped != *prefix)
48 ++prefix;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_dump_defines.c37 const char *prefix)
41 assert(prefix);
43 while(*prefix) {
44 if(*stripped != *prefix)
48 ++prefix;

Completed in 4892 milliseconds

1234567891011>>