HomeSort by relevance Sort by last modified time
    Searched full:suffix (Results 251 - 275 of 2534) sorted by null

<<11121314151617181920>>

  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DataUsageDetailView.java 117 String suffix; local
120 suffix = "GB";
123 suffix = "MB";
126 suffix = "KB";
128 return FORMAT.format(val * (bytes < 0 ? -1 : 1)) + " " + suffix;
  /frameworks/support/v13/
build.gradle 87 def suffix = name.capitalize()
89 def jarTask = project.tasks.create(name: "jar${suffix}", type: Jar){
94 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) {
100 def javadocJarTask = project.tasks.create(name: "javadocJar${suffix}", type: Jar) {
105 def sourcesJarTask = project.tasks.create(name: "sourceJar${suffix}", type: Jar) {
  /frameworks/support/v4/
build.gradle 106 def suffix = name.capitalize()
108 def jarTask = project.tasks.create(name: "jar${suffix}", type: Jar){
113 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) {
119 def javadocJarTask = project.tasks.create(name: "javadocJar${suffix}", type: Jar) {
124 def sourcesJarTask = project.tasks.create(name: "sourceJar${suffix}", type: Jar) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUBinary.java 102 static void addBaseNamesInFolder(ByteBuffer bytes, String folder, String suffix, Set<String> names) {
112 while (index < count && addBaseName(bytes, index, folder, suffix, sb, names)) {
165 String folder, String suffix, StringBuilder sb, Set<String> names) {
180 // Collect the NUL-terminated name and test for a subfolder, then test for the suffix.
190 int nameLimit = sb.length() - suffix.length();
191 if (sb.lastIndexOf(suffix, nameLimit) >= 0) {
213 * @param suffix Usually ".res".
214 * @param names File base names relative to the folder are added without the suffix,
217 abstract void addBaseNamesInFolder(String folder, String suffix, Set<String> names);
242 void addBaseNamesInFolder(String folder, String suffix, Set<String> names)
    [all...]
  /build/core/
multi_prebuilt.mk 48 # name will be the filename with the suffix removed.
73 $(eval LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)$(suffix $(LOCAL_SRC_FILES))) \
78 $(eval LOCAL_MODULE_SUFFIX := $(suffix $(LOCAL_SRC_FILES))) \
  /external/clang/include/clang/Driver/
Types.h 35 /// getTypeTempSuffix - Return the suffix to use when creating a
51 /// should the suffix be appended (instead of replacing the existing
52 /// suffix).
  /external/clang/lib/Lex/
HeaderMap.cpp 41 uint32_t Suffix; // Offset (into strings) of value suffix.
145 Result.Suffix = 0;
152 Result.Suffix = getEndianAdjustedWord(BucketPtr->Suffix);
191 const char *Suffix = getString(B.Suffix);
192 fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix, Suffix);
231 StringRef Suffix = getString(B.Suffix);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CompactDecimalDataCache.java 57 * these arrays contain the prefix or suffix to use.
330 * Populates prefix and suffix information for a particular plural variant
337 * @param result Extracted prefix and suffix stored here.
352 String suffix = fixQuotes(template.substring(lastIdx + 1)); local
353 saveUnit(new DecimalFormat.Unit(prefix, suffix), pluralVariant, idx, result.units);
355 // If there is effectively no prefix or suffix, ignore the actual
358 if (prefix.trim().length() == 0 && suffix.trim().length() == 0) {
422 * If it has no prefix and suffix for a particular variant, use the one from the
429 // Initially we assume that previous divisor is 1 with no prefix or suffix.
475 * Fetches a prefix or suffix given a plural variant and log10 value. If i
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
NFS4StringPrep.java 135 throw new StringPrepParseException("Suffix following a special index", StringPrepParseException.INVALID_CHAR_FOUND);
138 UCharacterIterator suffix = UCharacterIterator.getInstance(suffixString); local
141 out.append(prep.nfsmxs.prepare(suffix, StringPrep.DEFAULT));
  /external/toybox/toys/posix/
split.c 20 alphabetically increasing suffix (aa, ab, ac... az, ba, bb...).
22 -a Suffix length (default 2)
67 if (j) error_exit("bad suffix");
  /ndk/build/tools/
builder-funcs.sh 367 local lib libname suffix libm
369 suffix=$2
372 if [ -z "$suffix" ]; then
373 suffix=".so"
380 lib=${lib%%${suffix}}${suffix}
410 local lib libname suffix
412 suffix=$2
413 if [ -z "$suffix" ]; then
414 suffix=".so
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/r/
srun.swg 72 function(name, .values, where = topenv(parent.frame()), suffix = "Value")
78 if(nchar(suffix))
79 name = paste(name, suffix, sep = "")
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
FolderDecorator.java 81 public void doDecoration(IDecoration decoration, String suffix) {
84 if (suffix != null) {
85 decoration.addSuffix(suffix);
  /system/core/base/
strings.cpp 106 bool EndsWith(const std::string& s, const char* suffix) {
107 size_t suffix_length = strlen(suffix);
113 return s.compare(offset, suffix_length, suffix) == 0;
  /external/google-breakpad/src/third_party/curl/
curlrules.h 221 # define __CURL_OFF_T_C_HELPER2(Val,Suffix) Val ## Suffix
223 # define __CURL_OFF_T_C_HELPER2(Val,Suffix) Val/**/Suffix
225 #define __CURL_OFF_T_C_HELPER1(Val,Suffix) __CURL_OFF_T_C_HELPER2(Val,Suffix)
  /external/llvm/lib/Target/PowerPC/
PPCMCInstLower.cpp 46 StringRef Suffix;
49 Suffix = "$stub";
51 Suffix = "$non_lazy_ptr";
53 if (!Suffix.empty())
68 Name += Suffix;
94 // then add the suffix.
  /external/sfntly/cpp/src/test/tinyxml/
tinystr.h 109 TiXmlString& operator += (const char * suffix)
111 return append(suffix, static_cast<size_type>( strlen(suffix) ));
121 TiXmlString& operator += (const TiXmlString & suffix)
123 return append(suffix.data(), suffix.length());
  /external/tinyxml/
tinystr.h 108 TiXmlString& operator += (const char * suffix)
110 return append(suffix, static_cast<size_type>( strlen(suffix) ));
120 TiXmlString& operator += (const TiXmlString & suffix)
122 return append(suffix.data(), suffix.length());
  /external/bison/m4/
locale-fr.m4 30 not at the environment variables. Also, when an encoding suffix such
56 /* On Cygwin, avoid locale names without encoding suffix, because the
57 locale_charset() function relies on the encoding suffix. Note that
102 # Test for the locale name with explicit encoding suffix.
158 not at the environment variables. Also, when an encoding suffix such
181 /* On Cygwin, avoid locale names without encoding suffix, because the
182 locale_charset() function relies on the encoding suffix. Note that
230 # Test for the locale name with explicit encoding suffix.
  /external/chromium-trace/trace-viewer/tracing/tracing/base/units/
time.html 20 suffix: 'ms',
34 suffix: 'ns',
  /external/clang/test/SemaCXX/
cxx0x-compat.cpp 38 printf("foo is %"PRIuS", bar is %"PRIuS, foo, bar); // expected-warning 2{{identifier after literal will be treated as a reserved user-defined literal suffix in C++11}}
42 char c = 'x'_x; // expected-warning {{will be treated as a user-defined literal suffix}}
  /external/clang/utils/TestUtils/
pch-test.pl 11 my $suffix = shift;
17 @files = `ls test/*/*.$suffix`;
  /external/e2fsprogs/lib/et/
compile_et.1 19 The source file name must end with a suffix of ``.et''; the file
60 the ``.et'' suffix replaced by ``.c'' and ``.h''.
  /external/gptfdisk/
support.cc 135 char suffix, plusFlag = ' '; local
154 // Extract numeric response and, if present, suffix
158 inString >> response >> suffix; local
159 suffix = toupper(suffix);
164 suffix = ' ';
168 // Find multiplication and division factors for the suffix
169 foundAt = suffixes.find(suffix);
  /external/icu/icu4c/source/config/
mh-bsd-gcc 29 ## Shared object suffix
31 ## Non-shared intermediate object suffix

Completed in 431 milliseconds

<<11121314151617181920>>