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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
suffix-bad.s 2 suffix: label
  /external/llvm/test/MC/ARM/
directive-thumb_func.s 13 .thumb_func suffix
14 suffix: label
18 // CHECK-EABI: .thumb_func suffix
  /external/toybox/toys/posix/
basename.c 14 usage: basename string [suffix]
16 Return non-directory portion of a pathname removing suffix
23 char *base = basename(*toys.optargs), *suffix = toys.optargs[1]; local
25 // chop off the suffix if provided
26 if (suffix && *suffix && (suffix = strend(base, suffix))) *suffix = 0;
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/util/
string_utils.cpp 26 std::string suffix; local
28 suffix = "st";
30 suffix = "nd";
32 suffix = "rd";
34 suffix = "th";
36 return ToString(cardinal) + suffix;
  /external/brotli/csharp/org/brotli/dec/
Transform.cs 15 private readonly byte[] suffix; field in class:Org.Brotli.Dec.Transform
17 internal Transform(string prefix, int type, string suffix)
21 this.suffix = ReadUniBytes(suffix);
143 // Copy suffix.
144 @string = transform.suffix;
  /external/easymock/src/org/easymock/internal/matchers/
EndsWith.java 26 private final String suffix; field in class:EndsWith
28 public EndsWith(String suffix) {
29 this.suffix = suffix;
33 return (actual instanceof String) && ((String) actual).endsWith(suffix);
37 buffer.append("endsWith(\"" + suffix + "\")");
  /external/icu/icu4c/source/i18n/
esctrn.h 26 * Escape forms have a prefix and suffix, either of which may be
58 UnicodeString suffix; member in class:EscapeTransliterator
82 * prefix, suffix, radix, and minDigits of this object are used
100 const UnicodeString& prefix, const UnicodeString& suffix,
digitaffixesandpadding.cpp 59 const DigitAffix *suffix = bPositive ? &fPositiveSuffix.getOtherVariant() : &fNegativeSuffix.getOtherVariant(); local
65 return suffix->format(handler, appendTo);
99 const DigitAffix *suffix = NULL; local
106 suffix = &pluralSuffix->getOtherVariant();
110 suffix = &pluralSuffix->getByCategory(count);
116 return formatAffix(suffix, handler, appendTo);
118 int32_t codePointCount = countAffixChar32(prefix) + formatter.countChar32(digits) + countAffixChar32(suffix);
125 return formatAffix(suffix, handler, appendTo);
130 return formatAffix(suffix, handler, appendTo);
135 return formatAffix(suffix, handler, appendTo)
    [all...]
  /external/mesa3d/src/mesa/main/
genmipmap.c 116 const char *suffix = dsa ? "Texture" : ""; local
128 "glGenerate%sMipmap(incomplete cube map)", suffix);
138 "glGenerate%sMipmap(zero size base image)", suffix);
146 "glGenerate%sMipmap(invalid internal format %s)", 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;
  /external/mockito/src/main/java/org/mockito/internal/matchers/
EndsWith.java 14 private final String suffix; field in class:EndsWith
16 public EndsWith(String suffix) {
17 this.suffix = suffix;
21 return actual != null && actual.endsWith(suffix);
25 return "endsWith(\"" + suffix + "\")";
  /external/python/cpython2/PC/VS9.0/
rt.bat 32 set suffix= variable
40 if "%1"=="-d" (set suffix=_d) & shift & goto CheckOpts variable
44 set exe="%prefix%\python%suffix%"
  /external/python/cpython2/PCbuild/
rt.bat 32 set suffix= variable
40 if "%1"=="-d" (set suffix=_d) & shift & goto CheckOpts variable
44 set exe=%prefix%python%suffix%
  /external/python/cpython3/PCbuild/
rt.bat 32 set suffix= variable
40 if "%1"=="-d" (set suffix=_d) & shift & goto CheckOpts variable
44 set exe=%prefix%python%suffix%.exe
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
TagTuple.java 20 private final String suffix; field in class:TagTuple
22 public TagTuple(String handle, String suffix) {
23 if (suffix == null) {
24 throw new NullPointerException("Suffix must be provided.");
27 this.suffix = suffix;
35 return suffix;
  /frameworks/base/tools/aapt2/util/
Util_test.cpp 132 StringPiece prefix, entry, suffix; local
133 ASSERT_TRUE(util::ExtractResFilePathParts("res/xml-sw600dp/entry.xml", &prefix, &entry, &suffix));
136 EXPECT_THAT(suffix, Eq(".xml"));
138 ASSERT_TRUE(util::ExtractResFilePathParts("res/xml-sw600dp/entry.9.png", &prefix, &entry, &suffix));
141 EXPECT_THAT(suffix, Eq(".9.png"));
143 ASSERT_TRUE(util::ExtractResFilePathParts("res//.", &prefix, &entry, &suffix));
146 EXPECT_THAT(suffix, Eq("."));
148 EXPECT_FALSE(util::ExtractResFilePathParts("AndroidManifest.xml", &prefix, &entry, &suffix));
149 EXPECT_FALSE(util::ExtractResFilePathParts("res/.xml", &prefix, &entry, &suffix));
  /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);
  /system/bt/service/
settings.cc 50 const std::string& suffix = iter.second; local
51 if (suffix.empty()) {
52 LOG(ERROR) << "Invalid Android socket suffix";
56 android_ipc_socket_suffix_ = suffix;
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OutputCollector.java 24 * list and a suffix (generally consisting of adjunct data referred to
37 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
40 private ArrayList<DalvInsn> suffix; field in class:OutputCollector
47 * suffix
53 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity);
80 * Adds an instruction to the output suffix.
85 suffix.add(insn);
97 if (suffix == null) {
106 * Helper for {@link #getFinisher}, which appends the suffix t
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
OutputCollector.java 25 * list and a suffix (generally consisting of adjunct data referred to
38 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
41 private ArrayList<DalvInsn> suffix; field in class:OutputCollector
49 * suffix
56 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity);
83 * Adds an instruction to the output suffix.
88 suffix.add(insn);
100 if (suffix == null) {
109 * Helper for {@link #getFinisher}, which appends the suffix t
    [all...]
  /bionic/tests/
dlfcn_symlink_support.cpp 39 const std::string suffix = std::string("/") + source_file_name; local
47 if (android::base::EndsWith(info->dlpi_name, suffix)) {
56 void create_dlfcn_test_symlink(const char* suffix, std::string* result) {
70 std::string link_path = path_dir + "/" + symlink_name_prefix + suffix + ".so";
system_properties_test2.cpp 76 char suffix[1024]; local
77 for (size_t i = 0; i < sizeof(suffix); i++) {
78 suffix[i] = 'x';
81 suffix[sizeof(suffix)-1] = '\0';
82 const std::string long_property_name = property_prefix + suffix;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
ConstantAffixModifier.java 9 * The canonical implementation of {@link Modifier}, containing a prefix and suffix string.
14 // TODO: Avoid making a new instance by default if prefix and suffix are empty
18 private final String suffix; field in class:ConstantAffixModifier
30 * @param suffix
31 * The suffix string.
38 public ConstantAffixModifier(String prefix, String suffix, Field field, boolean strong) {
40 // TODO: Consider returning a null modifier if both prefix and suffix are empty.
42 this.suffix = (suffix == null ? "" : suffix);
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
pkg_icu.cpp 27 const char *suffix; member in struct:__anon21820
39 const char *suffix; local
42 suffix=listFileSuffixes[i].suffix;
44 if((listNameEnd-listname)>length && 0==memcmp(listNameEnd-length, suffix, length)) {
  /external/nanopb-c/tests/site_scons/site_tools/
nanopb.py 108 suffix = '.pb.c', variable

Completed in 1680 milliseconds

1 2 3 4 5 6 7 8 91011>>