Searched defs:prefix (Results 26 - 50 of 994) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/i18n/
H A Desctrn.h26 * Escape forms have a prefix and suffix, either of which may be
51 * The prefix of the escape form; may be empty, but usually isn't.
53 UnicodeString prefix; member in class:EscapeTransliterator
56 * The prefix of the escape form; often empty.
82 * prefix, suffix, radix, and minDigits of this object are used
100 const UnicodeString& prefix, const UnicodeString& suffix,
/external/icu/icu4c/source/test/intltest/
H A Dlistformattertest.h64 const UnicodeString prefix; member in class:ListFormatterTest
/external/ipsec-tools/src/racoon/
H A Dprsa_par.y150 %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/iptables/extensions/
H A Dtos_values.c26 static bool tos_try_print_symbolic(const char *prefix, argument
36 printf(" %s%s", prefix, symbol->name);
/external/mockito/src/main/java/org/mockito/internal/matchers/
H A DStartsWith.java14 private final String prefix; field in class:StartsWith
16 public StartsWith(String prefix) { argument
17 this.prefix = prefix;
21 return actual != null && actual.startsWith(prefix);
25 return "startsWith(\"" + prefix + "\")";
/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/python/cpython2/PC/VS9.0/
H A Drt.bat31 set prefix=%pcbuild% variable
41 if "%1"=="-x64" (set prefix=%prefix%amd64) & (set tcltk=tcltk64) & shift & goto CheckOpts variable
44 set exe="%prefix%\python%suffix%"
/external/python/cpython2/PCbuild/
H A Drt.bat31 set prefix=%pcbuild% variable
41 if "%1"=="-x64" (set prefix=%pcbuild%amd64\) & shift & goto CheckOpts variable
44 set exe=%prefix%python%suffix%
/external/python/cpython3/PCbuild/
H A Drt.bat31 set prefix=%pcbuild%win32\ variable
41 if "%1"=="-x64" (set prefix=%pcbuild%amd64\) & shift & goto CheckOpts variable
44 set exe=%prefix%python%suffix%.exe
52 if exist %prefix%*._pth del %prefix%*._pth
/external/skia/gn/
H A Dcodesign_ios.py44 # Extract the appliciation identitifer prefix from the .mobileprovision.
48 prefix = m.group(1) variable
57 <key>application-identifier</key> <string>{prefix}.com.google.{app}</string>
61 '''.format(prefix=prefix, app=app))
/external/skqp/gn/
H A Dcodesign_ios.py44 # Extract the appliciation identitifer prefix from the .mobileprovision.
48 prefix = m.group(1) variable
57 <key>application-identifier</key> <string>{prefix}.com.google.{app}</string>
61 '''.format(prefix=prefix, app=app))
/external/swiftshader/src/OpenGL/compiler/
H A DInfoSink.cpp17 void TInfoSinkBase::prefix(TPrefixType message) { function in class:TInfoSinkBase
56 prefix(message);
62 prefix(message);
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dtuple_util_test.cc57 HloInstruction* prefix = TupleUtil::ExtractPrefix(param0, 2); local
59 EXPECT_THAT(prefix, op::Tuple(op::GetTupleElement(op::Parameter(0), 0),
/external/tensorflow/tensorflow/core/kernels/
H A Dsave_v2_op_test.cc40 .Input(FakeInput()) // prefix
53 const string prefix = io::JoinPath(testing::TmpDir(), "tensor_simple"); local
63 [&prefix](int x) -> string { return prefix; });
126 BundleReader reader(Env::Default(), prefix); local
/external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
H A DGraphTest.java54 private static void validateImportedGraph(Graph g, String prefix) { argument
55 Operation op = g.operation(prefix + "A");
57 assertEquals(prefix + "A", op.name());
62 op = g.operation(prefix + "X");
64 assertEquals(prefix + "X", op.name());
69 op = g.operation(prefix + "Y");
71 assertEquals(prefix + "Y", op.name());
/external/annotation-tools/asmx/test/conform/org/objectweb/asm/commons/
H A DAdviceAdapterTest2$AdvisingClassLoader.class ... $AdvisingClassLoader extends java.lang.ClassLoader { private String prefix public void " href="/9.0.0_r3/s? ...
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
H A DLogWriter.java33 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) { argument
42 setPrefix(prefix);
46 * Returns prefix for messages.
48 * @return prefix for messages
51 return prefix;
55 * Sets prefix fo
59 setPrefix(String prefix) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DXMLNSDecl.java34 * @param prefix non-null reference to prefix, using "" for default namespace.
38 public XMLNSDecl(String prefix, String uri, boolean isExcluded) argument
41 m_prefix = prefix;
46 /** non-null reference to prefix, using "" for default namespace.
51 * Return the prefix.
52 * @return The prefix that is associated with this URI, or null
/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 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...]
/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/blktrace/
H A DMakefile56 prefix = /usr/local macro
57 bindir = $(prefix)/bin
58 mandir = $(prefix)/man
62 export prefix INSTALL TAR
/external/brotli/c/enc/
H A Dprefix.h7 /* Functions for encoding of integers into prefix codes the amount of extra
39 size_t prefix = (dist >> bucket) & 1; local
40 size_t offset = (2 + prefix) << bucket;
44 ((2 * (nbits - 1) + prefix) << postfix_bits) + postfix));
/external/capstone/bindings/vb6/
H A Dmx86.bas335 'Instruction prefixes - to be used in cs_x86.prefix[]
337 X86_PREFIX_LOCK = &HF0 ' lock (cs_x86.prefix[0]
338 X86_PREFIX_REP = &HF3 ' rep (cs_x86.prefix[0]
339 X86_PREFIX_REPNE = &HF2 ' repne (cs_x86.prefix[0]
340 X86_PREFIX_CS = &H2E ' segment override CS (cs_x86.prefix[1]
341 X86_PREFIX_SS = &H36 ' segment override SS (cs_x86.prefix[1]
342 X86_PREFIX_DS = &H3E ' segment override DS (cs_x86.prefix[1]
343 X86_PREFIX_ES = &H26 ' segment override ES (cs_x86.prefix[1]
344 X86_PREFIX_FS = &H64 ' segment override FS (cs_x86.prefix[1]
345 X86_PREFIX_GS = &H65 ' segment override GS (cs_x86.prefix[
[all...]
/external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/
H A DCaptureLambda.java27 public List<String> prefixed(String prefix) { argument
30 .filter(n -> n.startsWith(prefix))

Completed in 1364 milliseconds

1234567891011>>