HomeSort by relevance Sort by last modified time
    Searched refs:prefix (Results 1 - 25 of 5987) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/ril/reference-ril/
misc.c 18 /** returns 1 if line starts with prefix, 0 if it does not */
19 int strStartsWith(const char *line, const char *prefix)
21 for ( ; *line != '\0' && *prefix != '\0' ; line++, prefix++) {
22 if (*line != *prefix) {
27 return *prefix == '\0';
misc.h 18 /** returns 1 if line starts with prefix, 0 if it does not */
19 int strStartsWith(const char *line, const char *prefix);
  /external/icu/icu4c/source/config/
icu-config-top 17 ## Zero out prefix.
19 prefix=
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/trie/
_base.py 9 def keys(self, prefix=None):
12 if prefix is None:
16 return set([x for x in keys if x.startswith(prefix)])
18 def has_keys_with_prefix(self, prefix):
20 if key.startswith(prefix):
25 def longest_prefix(self, prefix):
26 if prefix in self:
27 return prefix
29 for i in range(1, len(prefix) + 1):
30 if prefix[:-i] in self
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
LogWriter.java 33 protected String prefix; field in class:LogWriter
36 * Creates instance of the class with given prefix for log messages.
38 * @param prefix - specifies a prefix string
40 public LogWriter(String prefix) {
42 setPrefix(prefix);
46 * Returns prefix for messages.
48 * @return prefix for messages
51 return prefix;
55 * Sets prefix for messages
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
QName.java 17 /** XML namespace prefix */
18 private String prefix; field in class:QName
24 * Splits a qname into prefix and localname.
33 prefix = qname.substring(0, colon);
38 prefix = "";
45 * @param prefix the prefix
48 public QName(String prefix, String localName)
50 this.prefix = prefix;
    [all...]
  /external/easymock/src/org/easymock/internal/matchers/
StartsWith.java 26 private final String prefix; field in class:StartsWith
28 public StartsWith(String prefix) {
29 this.prefix = prefix;
34 && ((String) actual).startsWith(prefix);
38 buffer.append("startsWith(\"" + prefix + "\")");
  /external/libvncserver/
libvncserver-config.in 3 prefix=@prefix@
12 prefix="`cd "$dir"; pwd`"
13 includedir="$prefix"
14 libdir="$prefix/libvncserver/.libs $prefix/libvncclient/.libs"
18 Usage: @PACKAGE@-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--link] [--libs] [--cflags]"
32 --prefix=*)
33 prefix=$optar
    [all...]
  /external/mockito/src/org/mockito/internal/matchers/
StartsWith.java 17 private final String prefix; field in class:StartsWith
19 public StartsWith(String prefix) {
20 this.prefix = prefix;
24 return actual != null && ((String) actual).startsWith(prefix);
28 description.appendText("startsWith(\"" + prefix + "\")");
  /frameworks/base/core/java/android/util/
PrefixPrinter.java 21 * prefix.
32 * <p>If prefix is null or empty, the provided printer is returned, rather
35 public static Printer create(Printer printer, String prefix) {
36 if (prefix == null || prefix.equals("")) {
39 return new PrefixPrinter(printer, prefix);
42 private PrefixPrinter(Printer printer, String prefix) {
44 mPrefix = prefix;
  /external/libxml2/
xml2-config.in 3 prefix=@prefix@
15 --prefix=DIR change libxml prefix [default $prefix]
16 --exec-prefix=DIR change libxml exec prefix [default $exec_prefix]
41 --prefix=*)
42 prefix=$optarg
43 includedir=$prefix/includ
    [all...]
  /external/android-clat/
dns64.h 16 * dns64.h - find the nat64 prefix with a dns64 lookup
21 int plat_prefix(const char *ipv4_name, unsigned net_id, struct in6_addr *prefix);
  /external/jemalloc/bin/
jemalloc.sh.in 3 prefix=@prefix@
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DefaultNamingPolicy.java 24 * This is composed of a prefix based on the name of the superclass, a fixed
33 public String getClassName(String prefix, String source, Object key, Predicate names) {
34 if (prefix == null) {
35 prefix = "org.mockito.cglib.empty.Object";
36 } else if (prefix.startsWith("java")) {
37 prefix = "$" + prefix;
40 prefix + "$$" +
  /external/libusb-compat/
libusb-config.in 3 prefix=@prefix@
14 [--prefix[=DIR]]
15 [--exec-prefix[=DIR]]
34 --prefix=*)
35 prefix=$optarg
40 --prefix)
43 --exec-prefix=*)
47 --exec-prefix)
71 echo $prefix
    [all...]
  /external/eigen/bench/btl/data/
go_mean 4 echo "Usage: $0 working_directory [tiny|large [prefix]]"
15 prefix=$3
34 source mk_mean_script.sh axpy $1 11 2500 100000 250000 $mode $prefix
35 source mk_mean_script.sh axpby $1 11 2500 100000 250000 $mode $prefix
36 source mk_mean_script.sh matrix_vector $1 11 50 300 1000 $mode $prefix
37 source mk_mean_script.sh atv $1 11 50 300 1000 $mode $prefix
38 source mk_mean_script.sh matrix_matrix $1 11 100 300 1000 $mode $prefix
39 source mk_mean_script.sh aat $1 11 100 300 1000 $mode $prefix
40 # source mk_mean_script.sh ata $1 11 100 300 1000 $mode $prefix
41 source mk_mean_script.sh trmm $1 11 100 300 1000 $mode $prefix
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_ws_comma.py 29 prefix = child.prefix
30 if prefix.isspace() and u"\n" not in prefix:
31 child.prefix = u""
35 prefix = child.prefix
36 if not prefix:
37 child.prefix = u" "
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_ws_comma.py 29 prefix = child.prefix
30 if prefix.isspace() and u"\n" not in prefix:
31 child.prefix = u""
35 prefix = child.prefix
36 if not prefix:
37 child.prefix = u" "
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_ws_comma.py 29 prefix = child.prefix
30 if prefix.isspace() and u"\n" not in prefix:
31 child.prefix = u""
35 prefix = child.prefix
36 if not prefix:
37 child.prefix = u" "
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_ws_comma.py 29 prefix = child.prefix
30 if prefix.isspace() and u"\n" not in prefix:
31 child.prefix = u""
35 prefix = child.prefix
36 if not prefix:
37 child.prefix = u" "
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/bin/
sdl2-config 3 prefix=/usr/local/cross-tools/i686-w64-mingw32
4 exec_prefix=${prefix}
9 #Usage: $0 [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs]"
11 Usage: $0 [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs] [--static-libs]"
25 --prefix=*)
26 prefix=$optarg
31 --prefix)
32 echo $prefix
    [all...]
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/bin/
sdl2-config 3 prefix=/usr/local/cross-tools/x86_64-w64-mingw32
4 exec_prefix=${prefix}
9 #Usage: $0 [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs]"
11 Usage: $0 [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs] [--static-libs]"
25 --prefix=*)
26 prefix=$optarg
31 --prefix)
32 echo $prefix
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
CompactData.java 24 private String prefix; field in class:CompactData
28 public CompactData(String prefix) {
29 this.prefix = prefix;
33 return prefix;
46 return "CompactData: " + prefix + " " + properties;
  /external/e2fsprogs/util/
libecho.c 7 * Syntax: libecho [-p prefix] list...
19 char *prefix; local
21 prefix = "";
24 fprintf(stderr, "Usage: libecho [-p prefix] list...\n");
30 prefix = argv[++i];
32 echo_files(prefix, argv[i]);
38 echo_files(char *prefix, char *f)
66 printf("%s%s\n", prefix, f);
70 printf("%s%s%s\n", prefix, filepath, fdt.name);
75 printf("%s%s%s\n", prefix, filepath, fdt.name)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/facilities/
overload.hpp 22 # define BOOST_PP_OVERLOAD(prefix, ...) BOOST_PP_CAT(prefix, BOOST_PP_VARIADIC_SIZE(__VA_ARGS__))

Completed in 1369 milliseconds

1 2 3 4 5 6 7 8 91011>>