HomeSort by relevance Sort by last modified time
    Searched full:suffix (Results 776 - 800 of 3940) sorted by null

<<31323334353637383940>>

  /external/autotest/client/bin/
kernelexpand.py 41 (suffix, becomes, is_full, patch_templates) = mapping
45 match = re.search(r'^(.*)' + suffix, kernel)
51 # base => all but the matches suffix
  /external/autotest/site_utils/chromeos_proxy/
bot_config.py 65 suffix = ''
67 suffix = '-'+ m.group(1)
68 d[u'id'] = [os_utilities.get_hostname_short() + suffix]
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/
jquery.timeago.js 50 var suffix = $l.suffixAgo;
54 suffix = $l.suffixFromNow;
83 return $.trim([prefix, words, suffix].join(" "));
  /external/clang/lib/Analysis/
CocoaConventions.cpp 123 StringRef suffix = functionName.substr(it - start);
124 if (suffix.startswith("reate")) {
127 else if (suffix.startswith("opy")) {
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
FrameworkField.java 48 String suffix = frameworkClass.getSimpleName(); local
53 name.endsWith(suffix) ? name : name + suffix);
  /external/elfutils/src/
objdump.c 95 const char *suffix);
99 const char *suffix);
300 const char *suffix)
305 size_t suffix_len = suffix != NULL ? strlen (suffix) : 0;
318 if (suffix != NULL)
319 cp = stpcpy (cp, suffix);
763 const char *suffix)
775 size_t suffix_len = suffix == NULL ? 0 : strlen (suffix);
    [all...]
  /external/icu/icu4c/source/config/
mh-os400 66 ## object suffix
69 ## Shared object suffix
71 ## Non-shared intermediate object suffix
  /external/libdivsufsort/
README.md 3 libdivsufsort is a software library that implements a lightweight suffix array construction algorithm.
9 This library provides a simple and an efficient C API to construct a suffix array and a Burrows-Wheeler transformed string from a given string over a constant-size alphabet.
54 * Constructs the suffix array of a given string.
  /external/libdivsufsort/examples/
mksary.c 62 "mksary, a simple suffix array builder, version %s.\n",
170 /* Construct the suffix array. */
180 /* Write the suffix array. */
  /external/skia/gm/
drawbitmaprect.cpp 121 DrawBitmapRectGM(DrawRectRectProc proc, const char suffix[]) : fProc(proc) {
123 if (suffix) {
124 fName.append(suffix);
  /external/v8/
Makefile.nacl 82 BUILDTYPE=$(shell echo $(subst .,,$(suffix $@)) | \
96 -S$(suffix $(basename $@))$(suffix $@) $(GYPFLAGS) \
  /frameworks/compile/libbcc/include/bcc/Renderscript/
RSUtils.h 52 // proper name, they won't have a dotted suffix at all. We still need
59 // Get just the object type name with no suffix.
63 // raw typename (i.e. struct.rs_element with no ".[0-9]+" suffix on it.
  /libcore/ojluni/src/main/java/sun/net/www/
MimeLauncher.java 76 String suffix = ""; local
78 suffix = tempFilename.substring(wildcard + 2);
103 tempFilename = prefix + filename + timestamp + extension + suffix;
  /libcore/support/src/test/java/tests/util/
ClassLoaderBuilder.java 126 String suffix = "!/" + manifestFile; local
131 if (manifestString.endsWith(suffix)) {
132 return manifestString.substring(0, manifestString.length() - suffix.length());
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
dict_file_writing_utils.cpp 83 const char *const suffix, const BufferWithExtendableBuffer *const buffer) {
84 const int filePathBufSize = FileUtils::getFilePathWithSuffixBufSize(basePath, suffix);
86 FileUtils::getFilePathWithSuffix(basePath, suffix, filePathBufSize, filePath);
  /prebuilts/go/darwin-x86/doc/codewalk/
markov.go 20 Prefix Suffix
37 and appending the suffix (making the new prefix is "am a"). Repeat this process
75 // A suffix is a single word. A prefix can have multiple suffixes.
  /prebuilts/go/linux-x86/doc/codewalk/
markov.go 20 Prefix Suffix
37 and appending the suffix (making the new prefix is "am a"). Repeat this process
75 // A suffix is a single word. A prefix can have multiple suffixes.
  /external/autotest/client/tests/unixbench5/
unixbench5.py 66 def process_section(self, section, suffix):
85 keyval[key + suffix] = words[-6]
88 keyval['score' + suffix] = subsections[2].strip().split()[-1]
99 self.process_section(section=sections[1], suffix='')
103 self.process_section(section=sections[2], suffix='_multi')
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_tabcomplete.py 47 bucket_name = bucket_base_name + '-suffix'
73 object_name = object_base_name + '-suffix'
114 object_name = object_base_name + '-suffix'
149 bucket_name = bucket_base_name + '-suffix'
248 bucket_name = bucket_base_name + '-suffix'
  /external/google-breakpad/src/testing/scripts/generator/cpp/
tokenize.py 191 for suffix in ('l', 'f'):
192 if suffix == source[i:i+1].lower():
206 for suffix in ('ull', 'll', 'ul', 'l', 'f', 'u'):
207 size = len(suffix)
208 if suffix == source[i:i+size].lower():
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
DataRecord.java 179 String suffix; field in class:DataRecord.ScopeData
185 out.string("suffix", suffix);
194 scope.suffix = in.string("suffix");
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
DataRecord.java 177 String suffix; field in class:DataRecord.ScopeData
183 out.string("suffix", suffix);
192 scope.suffix = in.string("suffix");
  /external/llvm/include/llvm/ADT/
SmallString.h 134 /// endswith - Check if this string ends with the given \p Suffix.
135 bool endswith(StringRef Suffix) const {
136 return str().endswith(Suffix);
245 /// suffix (starting with \p Start) will be returned.
258 /// number of characters remaining in the string, the string suffix
  /external/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 196 /// Preds array. The new block is given a suffix of 'Suffix'. Returns new basic
200 /// It will have Suffix+".split_lp". See SplitLandingPadPredecessors for more
209 const char *Suffix,
228 const char *Suffix, const char *Suffix2,
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
ittnotify_config.h 156 #define __ITT_BUILD_ASSERT(expr, suffix) do { \
157 static char __itt_build_check_##suffix[(expr) ? 1 : -1]; \
158 __itt_build_check_##suffix[0] = 0; \
160 #define _ITT_BUILD_ASSERT(expr, suffix) __ITT_BUILD_ASSERT((expr), suffix)

Completed in 2594 milliseconds

<<31323334353637383940>>