HomeSort by relevance Sort by last modified time
    Searched refs:suffix (Results 26 - 50 of 3048) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/sun/security/x509/
X509AttributeName.java 40 private String suffix = null; field in class:X509AttributeName
54 suffix = name.substring(i + 1);
66 * Return the suffix of the name.
69 return (suffix);
  /external/jemalloc/
coverage.sh 6 suffix=$2
15 mv "${f}" "${f}.${suffix}"
  /test/vts/drivers/hal/common/utils/
StringUtil.cpp 26 bool endsWith(const string& s, const string& suffix) {
27 return s.size() >= suffix.size() && s.rfind(suffix) == (s.size() - suffix.size());
  /art/runtime/interpreter/mterp/mips64/
fcvtFooter.S 17 SET_VREG$suffix $valreg, a1
  /external/doclava/src/com/google/doclava/
ContainerInfo.java 22 public default boolean qualifiedNameMatches(String prefix, String suffix) {
24 return (qualifiedName.startsWith(prefix) && qualifiedName.endsWith(suffix));
  /external/junit/src/main/java/org/junit/internal/runners/rules/
ValidationError.java 8 public ValidationError(FrameworkMember<?> member, Class<? extends Annotation> annotation, String suffix) {
9 super(String.format("The @%s '%s' %s", annotation.getSimpleName(), member.getName(), suffix));
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
StouCommandHandler.java 51 String suffix = Long.toString(System.currentTimeMillis()); local
52 return baseName + suffix;
  /libcore/support/src/test/java/libcore/sun/security/x509/
Utils.java 31 * @param suffix suffix in all toString results
37 String suffix) {
38 testWithEachSinglePart(parts, objectCreator, prefix, suffix);
39 testWithAllParts(parts, objectCreator, prefix, suffix);
40 testWithNoParts(parts, objectCreator, prefix, suffix);
41 testWithEveryOtherPart(parts, objectCreator, prefix, suffix);
45 String[] parts, Function<byte[], Object> objectCreator, String prefix, String suffix) {
56 assertEquals(prefix + parts[i] + suffix, o.toString());
61 String[] parts, Function<byte[], Object> objectCreator, String prefix, String suffix) {
    [all...]
  /art/runtime/interpreter/mterp/x86_64/
bindiv.S 1 %default {"result":"","second":"","wide":"","suffix":"","rem":"0","ext":"cdq"}
15 test${suffix} $second, $second
17 cmp${suffix} $$-1, $second
20 idiv${suffix} $second
30 xor${suffix} $result, $result
32 neg${suffix} $result
bindiv2addr.S 1 %default {"result":"","second":"","wide":"","suffix":"","rem":"0","ext":"cdq"}
16 test${suffix} $second, $second
18 cmp${suffix} $$-1, $second
21 idiv${suffix} $second
31 xor${suffix} $result, $result
33 neg${suffix} $result
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-sh/
sh-vxworks.exp 27 foreach { gas_option ld_option suffix } $endians {
32 {objdump -dr vxworks1-lib$suffix.dd}
38 {{readelf --relocs vxworks1.rd} {objdump -dr vxworks1$suffix.dd}}
52 {{objdump -dr vxworks3-lib$suffix.dd}}
57 {{objdump -d vxworks3$suffix.dd}}
  /external/swiftshader/third_party/subzero/crosstest/
test_strengthreduce_main.cpp 39 #define X(constant, suffix) \
40 ResultLlcS = multiplyByConst##suffix(UVal); \
41 ResultSzS = Subzero_::multiplyByConst##suffix(UVal); \
46 std::cout << "multiplyByConstS" STR(suffix) "(" << SVal \
49 ResultLlcU = multiplyByConst##suffix(UVal); \
50 ResultSzU = Subzero_::multiplyByConst##suffix(UVal); \
55 std::cout << "multiplyByConstU" STR(suffix) "(" << UVal \
  /frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/
ConfigFactory.java 154 * except that the names are appended with the provided suffix.
157 List<MetricConditionLink> links, int suffix) {
161 .setCondition(link.getCondition() + suffix)
169 * with the provided suffix. Then adds that metric to the config.
171 private void addEventMetric(EventMetric template, int suffix, StatsdConfig.Builder config) {
173 .setId(template.getId() + suffix)
174 .setWhat(template.getWhat() + suffix);
176 metric.setCondition(template.getCondition() + suffix);
179 List<MetricConditionLink> links = getLinks(template.getLinksList(), suffix);
188 * with the provided suffix, and overrides the bucket size. Then adds that metric to the config
    [all...]
  /libcore/ojluni/src/main/java/java/util/
StringJoiner.java 30 * and ending with a supplied suffix.
33 * {@code sj.toString()} method will, by default, return {@code prefix + suffix}.
38 * {@code suffix} is <code>"}"</code> and nothing has been added to the
68 private final String suffix; field in class:StringJoiner
73 * suffix, so that we can more easily add elements without having to jigger
74 * the suffix each time.
79 * By default, the string consisting of prefix+suffix, returned by
88 * {@code prefix} or {@code suffix}, and a copy of the supplied
92 * {@code prefix} or {@code suffix} (or properties thereof) in the result,
105 * of the supplied {@code prefix}, {@code delimiter} and {@code suffix}
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
file_utils.h 34 static int getFilePathWithSuffixBufSize(const char *const filePath, const char *const suffix);
36 static void getFilePathWithSuffix(const char *const filePath, const char *const suffix,
44 // Returns whether the filePath have the suffix.
45 static bool getFilePathWithoutSuffix(const char *const filePath, const char *const suffix,
  /external/libjpeg-turbo/
CMakeLists.txt 516 set(suffix -static)
519 add_test(tjunittest${suffix} tjunittest${suffix})
520 add_test(tjunittest${suffix}-alloc tjunittest${suffix} -alloc)
521 add_test(tjunittest${suffix}-yuv tjunittest${suffix} -yuv)
522 add_test(tjunittest${suffix}-yuv-alloc tjunittest${suffix} -yuv -alloc)
523 add_test(tjunittest${suffix}-yuv-nopad tjunittest${suffix} -yuv -noyuvpad
    [all...]
  /external/harfbuzz_ng/src/
check-libstdc++.sh 18 for suffix in so dylib; do
19 so=.libs/libharfbuzz.$suffix
  /external/python/cpython2/Lib/ctypes/macholib/
dylib.py 14 (?:_(?P<suffix>[^._]+))?
33 suffix='Suffix',
36 Note that SomeVersion and Suffix are optional and may be None
46 def d(location=None, name=None, shortname=None, version=None, suffix=None):
52 suffix=suffix
57 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
  /external/python/cpython3/Lib/ctypes/macholib/
dylib.py 14 (?:_(?P<suffix>[^._]+))?
33 suffix='Suffix',
36 Note that SomeVersion and Suffix are optional and may be None
46 def d(location=None, name=None, shortname=None, version=None, suffix=None):
52 suffix=suffix
57 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
  /frameworks/base/libs/hwui/utils/
StringUtils.h 45 size_t suffix = 0; local
47 while (temp > 1024 && suffix < 2) {
49 suffix++;
51 stream << std::fixed << std::setprecision(2) << temp << SUFFIXES[suffix];
  /hardware/interfaces/drm/1.0/vts/functional/
vendor_modules.h 63 inline bool endsWith(const std::string& str, const std::string& suffix) const {
64 if (suffix.size() > str.size()) return false;
65 return std::equal(suffix.rbegin(), suffix.rend(), str.rbegin());
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/macholib/
dylib.py 17 (?:_(?P<suffix>[^._]+))?
36 suffix='Suffix',
39 Note that SomeVersion and Suffix are optional and may be None
49 def d(location=None, name=None, shortname=None, version=None, suffix=None):
55 suffix=suffix
60 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/macholib/
dylib.py 17 (?:_(?P<suffix>[^._]+))?
36 suffix='Suffix',
39 Note that SomeVersion and Suffix are optional and may be None
49 def d(location=None, name=None, shortname=None, version=None, suffix=None):
55 suffix=suffix
60 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/macholib/
dylib.py 17 (?:_(?P<suffix>[^._]+))?
36 suffix='Suffix',
39 Note that SomeVersion and Suffix are optional and may be None
49 def d(location=None, name=None, shortname=None, version=None, suffix=None):
55 suffix=suffix
60 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/macholib/
dylib.py 17 (?:_(?P<suffix>[^._]+))?
36 suffix='Suffix',
39 Note that SomeVersion and Suffix are optional and may be None
49 def d(location=None, name=None, shortname=None, version=None, suffix=None):
55 suffix=suffix
60 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')

Completed in 658 milliseconds

12 3 4 5 6 7 8 91011>>