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

<<11121314151617181920>>

  /external/v8/
Makefile.android 60 BUILDTYPE=$(shell echo $(subst .,,$(suffix $@)) | \
72 -S$(suffix $(basename $@))$(suffix $@) ${GYPFLAGS}
  /ndk/build/tools/
builder-funcs.sh 358 local lib libname suffix libm
360 suffix=$2
363 if [ -z "$suffix" ]; then
364 suffix=".so"
371 lib=${lib%%${suffix}}${suffix}
401 local lib libname suffix
403 suffix=$2
404 if [ -z "$suffix" ]; then
405 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 93 bool EndsWith(const std::string& s, const char* suffix) {
94 size_t suffix_length = strlen(suffix);
100 return s.compare(offset, suffix_length, suffix) == 0;
  /toolchain/binutils/binutils-2.25/libiberty/
mkstemps.c 64 @var{path}/ccXXXXXX@var{suffix}
67 @var{suffix_len} tells us how long @var{suffix} is (it can be zero
68 length). The last six characters of @var{pattern} before @var{suffix}
  /build/kati/
rule_parser.go 25 prefix, suffix string
29 return p.prefix + "%" + p.suffix
33 return strings.HasPrefix(s, p.prefix) && strings.HasSuffix(s, p.suffix)
46 if p.suffix != "" {
47 trimed = strings.TrimSuffix(in, p.suffix)
84 return pattern{prefix: string(s[:i]), suffix: string(s[i+1:])}, true
  /external/autotest/server/site_tests/brillo_BootLoader/
brillo_BootLoader.py 37 self.suffix_a = self.dut.run_output('bootctl get-suffix 0')
38 self.suffix_b = self.dut.run_output('bootctl get-suffix 1')
39 logging.info('Slot 0 suffix: "%s"', self.suffix_a)
40 logging.info('Slot 1 suffix: "%s"', self.suffix_b)
117 """Checks that 'fastboot set_active <SUFFIX>' work.
126 # <SLOT_SUFFIX>" e.g. use suffix instead of number.
  /external/curl/include/curl/
curlrules.h 214 # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val ## Suffix
216 # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val/**/Suffix
218 # define __CURL_OFF_T_C_HLPR1(Val,Suffix) __CURL_OFF_T_C_HLPR2(Val,Suffix)
  /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());
  /system/core/include/ziparchive/
zip_archive.h 59 bool EndsWith(const ZipString& suffix) const {
60 return name && (name_length >= suffix.name_length) &&
61 (memcmp(name + name_length - suffix.name_length, suffix.name,
62 suffix.name_length) == 0);
170 * This method also accepts optional prefix and suffix to restrict iteration to
  /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/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
mh-haiku 30 ## Shared object suffix
32 ## Non-shared intermediate object suffix
mh-mpras 32 ## Shared object suffix
34 ## Non-shared intermediate object suffix
  /external/jsoncpp/test/
pyjsontestrunner.py 22 suffix = path[-1] != '.' and '.' or ''
26 valueTreeToString( fout, value[name], path + suffix + name )
  /external/junit/src/org/junit/internal/runners/rules/
RuleFieldValidator.java 87 String suffix) {
89 + field.getName() + "' " + suffix;
  /external/libdivsufsort/
CMakeLists.txt 11 set(PROJECT_DESCRIPTION "A lightweight suffix sorting library")
27 set(LIB_SUFFIX "" CACHE STRING "Define suffix of directory name (32 or 64)")

Completed in 635 milliseconds

<<11121314151617181920>>