Searched refs:prefix (Results 26 - 50 of 1992) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorNamespaceAlias.java34 * stylesheet-prefix CDATA #REQUIRED
35 * result-prefix CDATA #REQUIRED
52 * @param localName The local name (without prefix), or the
55 * @param rawName The raw XML 1.0 name (with prefix), or the
69 String prefix = na.getStylesheetPrefix();
70 if(prefix.equals("#default"))
72 prefix = "";
73 na.setStylesheetPrefix(prefix);
75 String stylesheetNS = handler.getNamespaceForPrefix(prefix);
77 prefix
[all...]
/external/chromium_org/media/cdm/
H A Dkey_system_names.cc16 std::string prefix = parent_key_system + '.'; local
17 return key_system.substr(0, prefix.size()) == prefix;
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DNativeXPathNSResolver.cpp40 AtomicString NativeXPathNSResolver::lookupNamespaceURI(const String& prefix) argument
44 if (prefix == "xml")
47 return m_node ? m_node->lookupNamespaceURI(prefix) : nullAtom;
/external/libcxx/test/re/re.results/re.results.acc/
H A Dprefix.pass.cpp14 // const_reference prefix() const;
26 assert(m.prefix().first == s);
27 assert(m.prefix().second == s+2);
28 assert(m.prefix().matched == true);
/external/guava/guava/src/com/google/common/collect/
H A DBstPath.java35 private final P prefix; field in class:BstPath
37 BstPath(N tip, @Nullable P prefix) { argument
39 this.prefix = prefix;
50 * Returns {@code true} if this path has a prefix.
53 return prefix != null;
57 * Returns the prefix of this path, which reaches to the parent of the end of this path. Returns
58 * {@code null} if this path has no prefix.
62 return prefix;
66 * Returns the prefix o
[all...]
/external/chromium_org/third_party/libxslt/linux/
H A Dxslt-config3 prefix=/usr/local
4 exec_prefix=${prefix}
6 includedir=${prefix}/include
16 --prefix=DIR change XSLT prefix [default $prefix]
17 --exec-prefix=DIR change XSLT executable prefix [default $exec_prefix]
42 --prefix=*)
43 prefix
[all...]
/external/qemu/distrib/sdl-1.2.15/
H A Dsdl-config.in4 prefix=`dirname $curdir`
10 @ENABLE_STATIC_FALSE@Usage: sdl-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs]"
12 @ENABLE_STATIC_TRUE@Usage: sdl-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs] [--static-libs]"
26 --prefix=*)
27 prefix=$optarg
32 --prefix)
33 echo $prefix
35 --exec-prefix
[all...]
/external/elfutils/0.153/backends/
H A Dia64_regs.c39 const char **prefix, const char **setname,
48 *prefix = "ar.";
59 *prefix = "";
68 *prefix = "";
78 *prefix = "";
88 *prefix = "";
97 *prefix = "";
109 *prefix = "";
118 *prefix = "";
128 *prefix
37 ia64_register_info(Ebl *ebl __attribute__ ((unused)), int regno, char *name, size_t namelen, const char **prefix, const char **setname, int *bits, int *type) argument
[all...]
/external/chromium_org/third_party/libxslt/
H A Dxslt-config.in3 prefix=@prefix@
16 --prefix=DIR change XSLT prefix [default $prefix]
17 --exec-prefix=DIR change XSLT executable prefix [default $exec_prefix]
42 --prefix=*)
43 prefix=$optarg
49 --prefix)
[all...]
/external/elfutils/0.153/libebl/
H A Deblreginfo.c59 ebl_register_info (ebl, regno, name, namelen, prefix, setname, bits, type)
64 const char **prefix;
70 prefix, setname, bits, type);
/external/chromium_org/components/omnibox/
H A Durl_prefix.h15 // A URL prefix; combinations of schemes and (least significant) domain labels
18 URLPrefix(const base::string16& prefix, size_t num_components);
23 // Returns if the argument is a valid URL prefix.
24 static bool IsURLPrefix(const base::string16& prefix);
26 // Returns the URL prefix of |text| with the most components, or NULL.
27 // |prefix_suffix| (which may be empty) is appended to every attempted prefix,
34 // with |prefix| which is then followed by |prefix_suffix|.
36 static bool PrefixMatch(const URLPrefix& prefix,
48 // inlineable. ("www." is not otherwise on the default prefix list.)
55 base::string16 prefix; member in struct:URLPrefix
[all...]
/external/proguard/src/proguard/gui/
H A DFilterBuilder.java65 * Builds two versions of the filter for the given prefix.
66 * @param prefix the prefix.
72 private void buildFilter(String prefix, argument
79 // Count all selected and unselected check boxes with the prefix.
85 if (name.startsWith(prefix))
106 positive.append('!').append(prefix);
107 if (prefix.length() == 0 ||
108 prefix.charAt(prefix
[all...]
/external/yaffs2/yaffs2/direct/
H A Dyaffscfg.h17 const char *prefix; member in struct:__anon34305
/external/chromium_org/build/linux/
H A Drewrite_dirs.py23 """Rewrites a path by stripping the prefix and prepending the sysroot."""
25 prefix = opts.strip_prefix
27 if path.startswith(prefix):
28 path = path[len(prefix):]
41 for prefix in REWRITE_PREFIX:
44 if args[i] == prefix:
49 sys.stderr.write('Missing argument following %s\n' % prefix)
51 elif args[i].startswith(prefix):
52 args[i] = prefix + RewritePath(args[i][len(prefix)
[all...]
H A Dpkg-config-wrapper53 # relative to /path/to/chroot (i.e. prefix=/build/x86-generic/usr) instead of
54 # relative to /path/to/chroot/build/x86-generic (i.e prefix=/usr).
55 # To support this correctly, it's necessary to extract the prefix to strip from
56 # pkg-config's |prefix| variable.
57 prefix=`PKG_CONFIG_PATH=$config_path pkg-config --variable=prefix "$package" | sed -e 's|/usr$||'`
59 echo "$result"| $rewrite --sysroot "$root" --strip-prefix "$prefix"
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
H A DRequestJSONView.js50 var prefix = "";
55 prefix = text.substring(0, start.index);
60 return new WebInspector.ParsedJSON(JSON.parse(text), prefix, "");
78 var prefix = text.substring(0, start + 1);
83 return new WebInspector.ParsedJSON(JSON.parse(text), prefix, suffix);
110 var title = this._parsedJSON.prefix + obj.description + this._parsedJSON.suffix;
123 WebInspector.ParsedJSON = function(data, prefix, suffix)
126 this.prefix = prefix;
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemElement.java163 * Resolve the namespace into a prefix. Meant to be
167 * @param prefix The probable prefix if already known.
170 * @return The prefix to be used.
173 String prefix, String nodeNamespace)
177 // if (null != prefix && prefix.length() == 0)
185 return prefix;
212 String prefix = null;
227 prefix
172 resolvePrefix(SerializationHandler rhandler, String prefix, String nodeNamespace) argument
305 constructNode( String nodeName, String prefix, String nodeNamespace, TransformerImpl transformer) argument
[all...]
H A DElemAttribute.java115 * Resolve the namespace into a prefix. At this level, if no prefix exists,
116 * then return a manufactured prefix.
119 * @param prefix The probable prefix if already known.
122 * @return The prefix to be used.
125 String prefix, String nodeNamespace)
129 if (null != prefix && (prefix.length() == 0 || prefix
124 resolvePrefix(SerializationHandler rhandler, String prefix, String nodeNamespace) argument
179 constructNode( String nodeName, String prefix, String nodeNamespace, TransformerImpl transformer) argument
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
H A DJPDALogWriter.java52 * @param prefix
53 * prefix for messages or null
57 public JPDALogWriter(PrintStream outputStream, String prefix, argument
59 super(prefix);
69 * @param prefix
70 * prefix for messages or null
72 public JPDALogWriter(PrintStream outputStream, String prefix) { argument
73 this(outputStream, prefix, true);
81 * @param prefix
82 * prefix fo
84 JPDALogWriter(JPDALogWriter logWriter, String prefix) argument
95 setPrefix(String prefix) argument
[all...]
/external/iproute2/ip/
H A Dipprefix.c32 /* prefix flags; see kernel's net/ipv6/addrconf.c and include/net/if_inet6.h */
39 struct prefixmsg *prefix = NLMSG_DATA(n); local
45 fprintf(stderr, "Not a prefix: %08x %08x %08x\n",
50 len -= NLMSG_LENGTH(sizeof(*prefix));
61 if (prefix->prefix_family != AF_INET6) {
62 fprintf(stderr, "wrong family %d\n", prefix->prefix_family);
65 if (prefix->prefix_type != ND_OPT_PREFIX_INFORMATION) {
66 fprintf(stderr, "wrong ND type %d\n", prefix->prefix_type);
70 parse_rtattr(tb, RTA_MAX, RTM_RTA(prefix), len);
72 fprintf(fp, "prefix ");
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DNameSpace.java51 * @param prefix Prefix of this element
54 public NameSpace(String prefix, String uri) argument
56 m_prefix = prefix;
H A DPrefixResolver.java26 * prefix at a particular point in a document, or mapping the prefixes
34 * Given a namespace, get the corrisponding prefix. This assumes that
38 * @param prefix The prefix to look up, which may be an empty string ("") for the default Namespace.
40 * @return The associated Namespace URI, or null if the prefix
43 String getNamespaceForPrefix(String prefix); argument
46 * Given a namespace, get the corresponding prefix, based on the context node.
48 * @param prefix The prefix to look up, which may be an empty string ("") for the default Namespace.
51 * @return The associated Namespace URI as a string, or null if the prefix
54 getNamespaceForPrefix(String prefix, org.w3c.dom.Node context) argument
[all...]
/external/chromium_org/chrome/browser/mac/
H A Dmac_startup_profiler.cc45 std::string prefix("Startup.OSX.");
48 return prefix + "PreMainMessageLoopStart";
50 return prefix + "AwakeFromNib";
52 return prefix + "PostMainMessageLoopStart";
54 return prefix + "PreProfileInit";
56 return prefix + "PostProfileInit";
58 return prefix + "WillFinishLaunching";
60 return prefix + "DockIconWillFinishBouncing";
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternalProfilers.idl34 void startHeapProfiling(DOMString prefix);
/external/qemu/util/
H A Dhexdump.c18 void qemu_hexdump(const char *buf, FILE *fp, const char *prefix, size_t size) argument
24 fprintf(fp, "%s: %04x:", prefix, b);

Completed in 3695 milliseconds

1234567891011>>