HomeSort by relevance Sort by last modified time
    Searched full:suffix (Results 326 - 350 of 2729) sorted by null

<<11121314151617181920>>

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
armOMX.h 13 * all of the function names can be given a user specified suffix.
22 * - you want to rename all the functions to versions with a suffix so that
39 /* Define the suffix to add to all functions - the default is no suffix */
44 /* Define what happens to the bare suffix-less functions, down to the sub-domain accuracy */
  /ndk/sources/third_party/googletest/googletest/test/
gtest_stress_test.cc 64 std::string IdToKey(int id, const char* suffix) {
66 key << "key_" << id << "_" << suffix; local
78 int id, const char* suffix) {
79 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str());
83 << "expecting " << suffix << " value for id " << id;
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
RecognizerLogger.java 190 * Delete oldest files with a given suffix, if more than MAX_FILES.
191 * @param suffix delete oldest files with this suffix.
193 private void deleteOldest(final String suffix) {
197 return name.startsWith("log_") && name.endsWith(suffix);
  /libcore/luni/src/main/java/java/text/
DecimalFormat.java 143 * <em>Does not need to be quoted in prefix or suffix.</em></td>
151 * <em>Does not need to be quoted in prefix or suffix.</em></td>
161 * <td>Prefix or suffix</td>
167 * <td>Prefix or suffix</td>
173 * <td>Prefix or suffix</td>
181 * <td>Prefix or suffix</td>
183 * <td>Used to quote special characters in a prefix or suffix, for example,
189 * <td>Prefix or suffix boundary</td>
198 * part and a suffix. If there is no explicit negative subpattern, the negative
202 * suffix; the number of digits, minimal digits, and other characteristics ar
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
pkgitems.cpp 127 * and a suffix
130 makeTargetName(const char *itemName, const char *id, int32_t idLength, const char *suffix,
149 suffixLength=(int32_t)strlen(suffix);
160 memcpy(target+treeLength+idLength, suffix, suffixLength+1); // +1 includes the terminating NUL
164 checkIDSuffix(const char *itemName, const char *id, int32_t idLength, const char *suffix,
168 makeTargetName(itemName, id, idLength, suffix, target, (int32_t)sizeof(target), pErrorCode);
178 const char *itemID, *parent, *parentLimit, *suffix; local
189 // get the item suffix
190 suffix=strrchr(itemID, '.');
191 if(suffix==NULL)
    [all...]
  /external/icu4c/tools/toolutil/
pkgitems.cpp 127 * and a suffix
130 makeTargetName(const char *itemName, const char *id, int32_t idLength, const char *suffix,
149 suffixLength=(int32_t)strlen(suffix);
160 memcpy(target+treeLength+idLength, suffix, suffixLength+1); // +1 includes the terminating NUL
164 checkIDSuffix(const char *itemName, const char *id, int32_t idLength, const char *suffix,
168 makeTargetName(itemName, id, idLength, suffix, target, (int32_t)sizeof(target), pErrorCode);
178 const char *itemID, *parent, *parentLimit, *suffix; local
189 // get the item suffix
190 suffix=strrchr(itemID, '.');
191 if(suffix==NULL)
    [all...]
  /external/clang/lib/Lex/
HeaderMap.cpp 41 uint32_t Suffix; // Offset (into strings) of value suffix.
149 Result.Suffix = 0;
156 Result.Suffix = getEndianAdjustedWord(BucketPtr->Suffix);
195 const char *Suffix = getString(B.Suffix);
196 fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix, Suffix);
225 DestPath += getString(B.Suffix);
  /external/doclava/src/com/google/doclava/
FieldInfo.java 162 private static String canonicalizeFloatingPoint(String val, String suffix) {
164 return "(1.0" + suffix + "/0.0" + suffix + ")";
166 return "(-1.0" + suffix + "/0.0" + suffix + ")";
168 return "(0.0" + suffix + "/0.0" + suffix + ")";
173 return str + suffix;
183 return str + suffix;
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
utilities.js 202 * [accumulator operator prefix suffix]
204 * where |accumulator|, |operand|, |prefix|, and |suffix| are numbers or
206 * underscore. The |operand|, |prefix|, and |suffix| numbers may contain
368 * operand value and no expected operand prefix and suffix values, the
375 * expected operand value instead of operand prefix and suffix values, the
382 * and suffix values instead of an operand value, the expected operand
384 * character of the suffix value, and one character of that suffix value
416 var suffix = (last && !last[0] && last[last.length - 1]) || number;
422 append[2] = prefix + suffix.slice(0, i + 1)
    [all...]
  /external/chromium_org/net/dns/
dns_config_service_win.cc 375 // In absence of explicit search list, suffix search is:
376 // [primary suffix, connection-specific suffix, devolution of primary suffix].
377 // Primary suffix can be set by policy (primary_dns_suffix) or
382 // => Administrative Template => Network => DNS Client => Primary DNS Suffix.
391 // Primary suffix goes in front.
394 return; // No primary suffix, hence no devolution.
417 // value by comparing the forest root domain (FRD) to the primary suffix.
428 // Devolve the primary suffix. This naive logic matches the observe
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-string.h 201 // Returns true iff this String ends with the given suffix. *Any*
202 // String is considered to end with a NULL or empty suffix.
203 bool EndsWith(const char* suffix) const;
205 // Returns true iff this String ends with the given suffix, not considering
206 // case. Any String is considered to end with a NULL or empty suffix.
207 bool EndsWithCaseInsensitive(const char* suffix) const;
  /external/chromium_org/chrome/browser/media/
chrome_webrtc_browsertest.cc 124 const std::string& suffix) {
125 perf_test::PrintResult("cpu", "", "cpu" + suffix,
128 perf_test::PrintResult("memory", "", "ws_peak" + suffix,
131 perf_test::PrintResult("memory", "", "ws_final" + suffix,
138 perf_test::PrintResult("memory", "", "private_mem_final" + suffix,
140 perf_test::PrintResult("memory", "", "shared_mem_final" + suffix,
  /external/chromium_org/chrome/test/perf/frame_rate/
frame_rate_tests.cc 63 std::string suffix; local
65 suffix += "_comp";
67 suffix += "_gpu";
69 suffix += "_novsync";
71 suffix += "_ref";
72 return suffix;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
data.py 78 def write(self, suffix=None):
81 `suffix` is a suffix to append to the base file name. This can be used
84 the suffix.
89 if suffix:
90 filename += "." + suffix
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSUtil.py 45 def _SuffixName(name, suffix):
46 """Add a suffix to the end of a target.
50 suffix: the suffix to be added
52 Target name with suffix added (foo_suffix#target)
55 parts[0] = '%s_%s' % (parts[0], suffix)
  /external/llvm/lib/MC/
MCWin64EH.cpp 224 static const MCSection *getWin64EHTableSection(StringRef suffix,
226 if (suffix == "")
229 return context.getCOFFSection((".xdata"+suffix).str(),
235 static const MCSection *getWin64EHFuncTableSection(StringRef suffix,
237 if (suffix == "")
239 return context.getCOFFSection((".pdata"+suffix).str(),
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardEntryTests.java 208 property.setValues("family", "given", "middle", "prefix", "suffix");
215 nameData.setSuffix("suffix");
319 property.setValues("Family", "Given", "Middle", "Prefix", "Suffix");
332 assertTrue(result.contains("Suffix"));
342 property.setValues("Family", "Given", "Middle", "Prefix", "Suffix");
351 assertEquals("Suffix", nameData.getSuffix());
  /external/icu4c/test/perf/howExpensiveIs/
howExpensiveIs.cpp 246 #define OCName(svc,ub,testn,suffix,n) testn ## svc ## ub ## suffix ## n
247 #define OCStr(svc,ub,suffix,n) "Test_" # svc # ub # suffix # n
248 #define OCRun(svc,ub,suffix) svc ## ub ## suffix
250 #define OpenCloseTest(n, svc,suffix,c,a,d) class OCName(svc,_,Test_,suffix,n) : public HowExpensiveTest { public: OCName(svc,_,Test_,suffix,n)():HowExpensiveTest(OCStr(svc,_,suffix,n),__FILE__,__LINE__) c int32_t run() { int32_t i; for(i=0;i<U_LOTS_OF_TIMES;i++){ OCRun(svc,_,clo (…)
    [all...]
  /build/core/
multi_prebuilt.mk 48 # name will be the filename with the suffix removed.
74 $(eval LOCAL_MODULE_SUFFIX := $(suffix $(LOCAL_SRC_FILES))) \
  /external/apache-harmony/support/src/test/java/tests/support/
Support_GetLocal.java 90 public static File createTempFile(String suffix) throws IOException {
91 return File.createTempFile("hyts_", suffix, null);
  /external/chromium/chrome/browser/history/
text_database.cc 102 // potentially be the wrong thing to do. Instead, we just look for a suffix.
106 const FilePath::StringType suffix(
109 if (suffix.length() != kIDStringLength ||
110 suffix[4] != FILE_PATH_LITERAL('-')) {
115 base::StringToInt(suffix.begin(), suffix.begin() + 4, &year);
116 base::StringToInt(suffix.begin() + 5, suffix.begin() + 7, &month);
  /external/chromium_org/sync/engine/
syncer_util.h 57 // The suffix parameter is the unique bookmark tag for the item being updated.
62 const std::string& suffix);
  /external/chromium_org/sync/protocol/
unique_position.proto 20 // fixed-length suffix that is unique per-item. The position string may not end
23 // Prior to the suffix is a series of arbitrary bytes of arbitrary length.
  /external/chromium_org/third_party/icu/source/config/
mh-alpha-linux-cc 39 ## Shared object suffix
41 ## Non-shared intermediate object suffix
mh-alpha-linux-gcc 34 ## Shared object suffix
36 ## Non-shared intermediate object suffix

Completed in 933 milliseconds

<<11121314151617181920>>