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

1 2 3 4 5 6 7 8 91011>>

  /build/kati/testcase/
wildcard_with_var.mk 0 prefix = M
2 pattern = ${prefix}*
1 prefix = M macro
  /external/ipsec-tools/src/racoon/
sockmisc.h 43 unsigned long prefix; member in struct:netaddr
prsa_par.y 150 %type <num> prefix
235 ADDR4 prefix
242 prsaerror ("Invalid IPv4 prefix\n");
246 $$->prefix = $2;
258 ADDR6 prefix
265 prsaerror ("Invalid IPv6 prefix\n");
269 $$->prefix = $2;
280 prefix: label
  /external/v8/tools/gyp/test/win/
gyptest-link-delay-load-dlls.py 22 prefix = 'contains the following delay load imports:' variable
23 shell32_look_for = prefix + '\r\n\r\n SHELL32.dll'
27 if prefix in output:
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
Log_Delegate.java 22 // to replicate prefix visible when using 'adb logcat'
44 String prefix = priorityChar(priority) + "/" + tag + ": "; local
46 System.out.println(prefix + msg);
  /libcore/ojluni/src/main/java/java/net/
DefaultDatagramSocketImplFactory.java 32 * by setting the impl.prefix system property.
41 String prefix = null; typedefs
43 prefix = AccessController.doPrivileged(
44 new sun.security.action.GetPropertyAction("impl.prefix", null));
45 if (prefix != null)
46 prefixImplClass = Class.forName("java.net."+prefix+"DatagramSocketImpl");
49 prefix +
50 "DatagramSocketImpl: check impl.prefix property");
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExpressionVisitor.java 74 String prefix = arg.substring(0,arg.indexOf(":")); local
75 String namespace = this.m_sroot.getNamespaceForPrefix(prefix);
  /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...]
  /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/elfutils/libdwfl/
dwfl_module_register_names.c 59 const char *prefix = NULL; local
63 &prefix, &setname, &bits, &type);
73 result = (*func) (arg, regno, setname, prefix, name, bits, type);
  /external/icu/icu4c/source/i18n/
esctrn.h 24 * Escape forms have a prefix and suffix, either of which may be
49 * The prefix of the escape form; may be empty, but usually isn't.
51 UnicodeString prefix; member in class:EscapeTransliterator
54 * The prefix of the escape form; often empty.
80 * prefix, suffix, radix, and minDigits of this object are used
98 const UnicodeString& prefix, const UnicodeString& suffix,
  /external/icu/icu4c/source/test/intltest/
listformattertest.h 59 const UnicodeString prefix; member in class:ListFormatterTest
  /external/libvpx/libvpx/vp9/common/
vp9_debugmodes.c 31 char prefix = descriptor[0]; local
35 fprintf(file, "%c ", prefix);
  /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 + "\")");
  /external/pdfium/core/src/fxcrt/
fx_basic_utf.cpp 65 static uint8_t prefix[] = {0xc0, 0xe0, 0xf0, 0xf8, 0xfc}; local
68 m_Buffer.AppendChar(prefix[nbytes - 2] | (code / order));
  /frameworks/base/tools/aapt2/java/
ClassDefinition.cpp 33 void ClassDefinition::writeToStream(const StringPiece& prefix, bool final,
39 ClassMember::writeToStream(prefix, final, out);
41 *out << prefix << "public "; local
47 std::string newPrefix = prefix.toString();
55 *out << prefix << "}"; local
  /frameworks/base/tools/aapt2/util/
Util_test.cpp 173 StringPiece16 prefix, entry, suffix; local
174 ASSERT_TRUE(util::extractResFilePathParts(u"res/xml-sw600dp/entry.xml", &prefix, &entry,
176 EXPECT_EQ(prefix, u"res/xml-sw600dp/");
180 ASSERT_TRUE(util::extractResFilePathParts(u"res/xml-sw600dp/entry.9.png", &prefix, &entry,
183 EXPECT_EQ(prefix, u"res/xml-sw600dp/");
187 EXPECT_FALSE(util::extractResFilePathParts(u"AndroidManifest.xml", &prefix, &entry, &suffix));
188 EXPECT_FALSE(util::extractResFilePathParts(u"res/.xml", &prefix, &entry, &suffix));
190 ASSERT_TRUE(util::extractResFilePathParts(u"res//.", &prefix, &entry, &suffix));
191 EXPECT_EQ(prefix, u"res//");
  /libcore/ojluni/src/main/java/sun/security/x509/
X509AttributeName.java 39 private String prefix = null; field in class:X509AttributeName
51 prefix = name;
53 prefix = name.substring(0, i);
59 * Return the prefix of the name.
62 return (prefix);
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
FixTk.py 22 assert isinstance(s, str) # sys.prefix contains only bytes
49 prefix = os.path.join(sys.prefix,"tcl") variable
50 if not os.path.exists(prefix):
52 prefix = os.path.join(sys.prefix, os.path.pardir, "tcltk", "lib") variable
53 prefix = os.path.abspath(prefix) variable
55 if os.path.exists(prefix):
56 prefix = convert_path(prefix variable
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
FixTk.py 22 assert isinstance(s, str) # sys.prefix contains only bytes
49 prefix = os.path.join(sys.prefix,"tcl") variable
50 if not os.path.exists(prefix):
52 prefix = os.path.join(sys.prefix, os.path.pardir, "tcltk", "lib") variable
53 prefix = os.path.abspath(prefix) variable
55 if os.path.exists(prefix):
56 prefix = convert_path(prefix variable
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
FixTk.py 22 assert isinstance(s, str) # sys.prefix contains only bytes
49 prefix = os.path.join(sys.prefix,"tcl") variable
50 if not os.path.exists(prefix):
52 prefix = os.path.join(sys.prefix, os.path.pardir, "tcltk", "lib") variable
53 prefix = os.path.abspath(prefix) variable
55 if os.path.exists(prefix):
56 prefix = convert_path(prefix variable
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
FixTk.py 22 assert isinstance(s, str) # sys.prefix contains only bytes
49 prefix = os.path.join(sys.prefix,"tcl") variable
50 if not os.path.exists(prefix):
52 prefix = os.path.join(sys.prefix, os.path.pardir, "tcltk", "lib") variable
53 prefix = os.path.abspath(prefix) variable
55 if os.path.exists(prefix):
56 prefix = convert_path(prefix variable
    [all...]
  /system/connectivity/shill/
crypto_provider.cc 51 const string prefix = crypto->GetID() + ":"; local
52 return prefix + ciphertext;
61 const string prefix = crypto->GetID() + ":"; local
62 if (base::StartsWith(ciphertext, prefix, base::CompareCase::SENSITIVE)) {
64 to_decrypt.erase(0, prefix.size());
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_LOG.h 34 char prefix[30]; member in struct:xt_log_info
xt_NFLOG.h 34 char prefix[64]; member in struct:xt_nflog_info

Completed in 1183 milliseconds

1 2 3 4 5 6 7 8 91011>>