/prebuilts/tools/gcc-sdk/ |
size | 15 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 17 suffix_m32=${options##* -m32 } # suffix after the last -m32 18 suffix_m64=${options##* -m64 } # suffix after the last -m64 20 len_m32=${#suffix_m32} # length of suffix after the last -m32 21 len_m64=${#suffix_m64} # length of suffix after the last -m64
|
strings | 15 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 17 suffix_m32=${options##* -m32 } # suffix after the last -m32 18 suffix_m64=${options##* -m64 } # suffix after the last -m64 20 len_m32=${#suffix_m32} # length of suffix after the last -m32 21 len_m64=${#suffix_m64} # length of suffix after the last -m64
|
strip | 15 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 17 suffix_m32=${options##* -m32 } # suffix after the last -m32 18 suffix_m64=${options##* -m64 } # suffix after the last -m64 20 len_m32=${#suffix_m32} # length of suffix after the last -m32 21 len_m64=${#suffix_m64} # length of suffix after the last -m64
|
/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...] |
/external/libcxx/test/std/re/re.alg/re.alg.search/ |
extended.pass.cpp | 41 assert(!m.suffix().matched); 42 assert(m.suffix().first == m[0].second); 43 assert(m.suffix().second == s+1); 56 assert(!m.suffix().matched); 57 assert(m.suffix().first == m[0].second); 58 assert(m.suffix().second == s+2); 78 assert(!m.suffix().matched); 79 assert(m.suffix().first == m[0].second); 80 assert(m.suffix().second == s+3); 100 assert(m.suffix().matched) [all...] |
basic.pass.cpp | 47 assert(!m.suffix().matched); 48 assert(m.suffix().first == m[0].second); 49 assert(m.suffix().second == s+1); 62 assert(!m.suffix().matched); 63 assert(m.suffix().first == m[0].second); 64 assert(m.suffix().second == s+2); 84 assert(!m.suffix().matched); 85 assert(m.suffix().first == m[0].second); 86 assert(m.suffix().second == s+3); 106 assert(m.suffix().matched) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.search/ |
extended.pass.cpp | 35 assert(!m.suffix().matched); 36 assert(m.suffix().first == m[0].second); 37 assert(m.suffix().second == s+1); 50 assert(!m.suffix().matched); 51 assert(m.suffix().first == m[0].second); 52 assert(m.suffix().second == s+2); 72 assert(!m.suffix().matched); 73 assert(m.suffix().first == m[0].second); 74 assert(m.suffix().second == s+3); 94 assert(m.suffix().matched) [all...] |
basic.pass.cpp | 41 assert(!m.suffix().matched); 42 assert(m.suffix().first == m[0].second); 43 assert(m.suffix().second == s+1); 56 assert(!m.suffix().matched); 57 assert(m.suffix().first == m[0].second); 58 assert(m.suffix().second == s+2); 78 assert(!m.suffix().matched); 79 assert(m.suffix().first == m[0].second); 80 assert(m.suffix().second == s+3); 100 assert(m.suffix().matched) [all...] |
/external/libcxx/test/std/re/re.alg/re.alg.match/ |
egrep.pass.cpp | 35 assert(!m.suffix().matched); 36 assert(m.suffix().first == m[0].second); 37 assert(m.suffix().second == s + std::char_traits<char>::length(s)); 58 assert(!m.suffix().matched); 59 assert(m.suffix().first == m[0].second); 60 assert(m.suffix().second == s + std::char_traits<char>::length(s)); 74 assert(!m.suffix().matched); 75 assert(m.suffix().first == m[0].second); 76 assert(m.suffix().second == s + std::char_traits<char>::length(s));
|
/external/skia/src/ports/ |
SkOSFile_posix.cpp | 109 SkOSFile::Iter::Iter(const char path[], const char suffix[]) { 111 this->reset(path, suffix); 122 void SkOSFile::Iter::reset(const char path[], const char suffix[]) { 132 self.fSuffix.set(suffix); 138 // returns true if suffix is empty, or if str ends with suffix 139 static bool issuffixfor(const SkString& suffix, const char str[]) { 140 size_t suffixLen = suffix.size(); 144 memcmp(suffix.c_str(), str + strLen - suffixLen, suffixLen) == 0;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.match/ |
egrep.pass.cpp | 35 assert(!m.suffix().matched); 36 assert(m.suffix().first == m[0].second); 37 assert(m.suffix().second == s + std::char_traits<char>::length(s)); 58 assert(!m.suffix().matched); 59 assert(m.suffix().first == m[0].second); 60 assert(m.suffix().second == s + std::char_traits<char>::length(s)); 74 assert(!m.suffix().matched); 75 assert(m.suffix().first == m[0].second); 76 assert(m.suffix().second == s + std::char_traits<char>::length(s));
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/ |
Vector3DFormat.java | 32 * <p>The prefix and suffix "{" and "}" and the separator "; " can be replaced by 34 * <p>White space is ignored at parse time, even if it is in the prefix, suffix 51 /** The default suffix: "}". */ 60 /** Suffix. */ 61 private final String suffix; field in class:Vector3DFormat 69 /** Trimmed suffix. */ 80 * <p>The instance uses the default prefix, suffix and separator: 96 * Create an instance with custom prefix, suffix and separator. 98 * @param suffix suffix to use instead of the default "} [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
RealVectorFormat.java | 34 * <p>The prefix and suffix "{" and "}" and the separator "; " can be replaced by 36 * <p>White space is ignored at parse time, even if it is in the prefix, suffix 54 /** The default suffix: "}". */ 63 /** Suffix. */ 64 private final String suffix; field in class:RealVectorFormat 72 /** Trimmed suffix. */ 83 * <p>The instance uses the default prefix, suffix and separator: 99 * Create an instance with custom prefix, suffix and separator. 101 * @param suffix suffix to use instead of the default "} [all...] |
/external/mesa3d/src/mesa/program/ |
program_parse_extra.c | 38 const char *suffix, 47 /* The first possible suffix element is the precision specifier from 51 switch (suffix[0]) { 54 suffix++; 58 suffix++; 62 suffix++; 69 /* The next possible suffix element is the condition code modifier selection 73 if (suffix[0] == 'C') { 75 suffix++; 80 /* The final possible suffix element is the saturation selector fro [all...] |
/prebuilts/go/darwin-x86/src/strings/ |
search.go | 26 // that the suffix pattern[i+1:] matches, but the byte pattern[i] does 29 // 1. The matched suffix occurs elsewhere in pattern (with a different 31 // shift the matching frame to align with the next suffix chunk. For 32 // example, the pattern "mississi" has the suffix "issi" next occurring 34 // shift+len(suffix) == 3+4 == 7. 36 // 2. If the matched suffix does not occur elsewhere in pattern, then the 38 // matching suffix. In this case, goodSuffixSkip[i] will contain how far 40 // suffix. For example, in the pattern "abcxxxabc", when the first 42 // suffix "xxabc" is not found elsewhere in the pattern. However, its 44 // goodSuffixSkip[3] == shift+len(suffix) == 6+5 == 11 [all...] |
/prebuilts/go/linux-x86/src/strings/ |
search.go | 26 // that the suffix pattern[i+1:] matches, but the byte pattern[i] does 29 // 1. The matched suffix occurs elsewhere in pattern (with a different 31 // shift the matching frame to align with the next suffix chunk. For 32 // example, the pattern "mississi" has the suffix "issi" next occurring 34 // shift+len(suffix) == 3+4 == 7. 36 // 2. If the matched suffix does not occur elsewhere in pattern, then the 38 // matching suffix. In this case, goodSuffixSkip[i] will contain how far 40 // suffix. For example, in the pattern "abcxxxabc", when the first 42 // suffix "xxabc" is not found elsewhere in the pattern. However, its 44 // goodSuffixSkip[3] == shift+len(suffix) == 6+5 == 11 [all...] |
/external/icu/android_icu4j/resources/android/icu/impl/duration/impl/data/ |
pfd_ar_EG.xml.escaped | 89 <suffix> \u0628\u0639\u062f \u0627\u0644\u0622\u0646</suffix> 102 <suffix> \u0628\u0639\u062f \u0627\u0644\u0622\u0646</suffix> 115 <suffix> \u0628\u0639\u062f \u0627\u0644\u0622\u0646</suffix>
|
pfd_it.xml | 142 <suffix> fa</suffix> 155 <suffix> fa</suffix> 168 <suffix> fa</suffix>
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/data/ |
pfd_ar_EG.xml.escaped | 89 <suffix> \u0628\u0639\u062f \u0627\u0644\u0622\u0646</suffix> 102 <suffix> \u0628\u0639\u062f \u0627\u0644\u0622\u0646</suffix> 115 <suffix> \u0628\u0639\u062f \u0627\u0644\u0622\u0646</suffix>
|
pfd_it.xml | 142 <suffix> fa</suffix> 155 <suffix> fa</suffix> 168 <suffix> fa</suffix>
|
/external/parameter-framework/ |
TestPlatform.mk | 30 SUFFIX := _host 32 SUFFIX := 35 LOCAL_MODULE := test-platform$(SUFFIX) 43 LOCAL_STATIC_LIBRARIES := libpfw_utility$(SUFFIX) 45 libparameter$(SUFFIX) \ 46 libremote-processor$(PFW_NETWORKING_SUFFIX)$(SUFFIX)
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/ |
RepresentTest.java | 42 private int suffix; field in class:RepresentTest.CustomBean 44 public CustomBean(String prefix, int suffix) { 46 this.suffix = suffix; 54 return suffix; 60 return prefix.equals(bean.getPrefix()) && suffix == bean.getSuffix();
|
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
suffix | 1 $description = "The following test creates a makefile to test the suffix\n" 4 $details = "The suffix function will return the string following the last _._\n" 23 ."\t\@echo \$(suffix \$(string)) \n" 24 ."\t\@echo \$(sort \$(suffix \$(string4))) \n" 25 ."\t\@echo \$(suffix \$(string) a.out) \n" 26 ."\t\@echo \$(sort \$(suffix \$(string3))) \n";
|
/external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/ |
fake_tempfile.py | 56 def _TempFilename(self, suffix='', prefix=None, dir=None): 66 suffix: filename suffix 82 suffix)) 87 suffix='', prefix=None, dir=None): 104 >The dir, prefix and suffix parameters are passed to mkstemp() 109 suffix: optional string, see above 116 # TODO: prefix, suffix, bufsize, dir, mode unused? 124 suffix='', prefix=None, dir=None, delete=True): 135 suffix: optional string, see abov [all...] |
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/ |
file_utils.cpp | 98 const char *const suffix) { 99 return strlen(filePath) + strlen(suffix) + 1 /* terminator */; 103 const char *const suffix, const int filePathBufSize, char *const outFilePath) { 104 snprintf(outFilePath, filePathBufSize, "%s%s", filePath, suffix); 118 const char *const suffix, const int outDirPathBufSize, char *const outDirPath) { 120 const int suffixLength = strlen(suffix); 122 AKLOGE("File path length (%s:%d) is shorter that suffix length (%s:%d).", 123 filePath, filePathLength, suffix, suffixLength); 128 AKLOGE("outDirPathBufSize is too small. filePath: %s, suffix: %s, outDirPathBufSize: %d", 129 filePath, suffix, outDirPathBufSize) [all...] |