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

1 2 3 4 5 67 8 91011>>

  /cts/tests/tests/drm/src/android/drm/cts/
DrmSupportInfoTest.java 43 // Note that null file suffix is valid (for files without suffixes)
112 fail("File suffix '" + fileSuffix + "' was accepted for DrmSupportInfo");
123 String suffix = (String) suffixes.next(); local
124 assertEquals(suffix, fileSuffix);
  /external/chromium_org/base/strings/
stringize_macros.h 16 // suffix, below.
  /external/chromium_org/chrome/common/extensions/docs/server2/
chroot_file_system_test.py 47 for suffix in ('', '/'):
49 prefix + 'extensions/manifest' + suffix)
68 for suffix in ('', '/'):
70 prefix + 'extensions' + suffix)
  /external/chromium_org/remoting/protocol/
util.h 24 // This will provide sufficient prefix and suffix for the receiver side to
  /external/chromium_org/third_party/icu/source/i18n/
esctrn.h 24 * Escape forms have a prefix and suffix, either of which may be
56 UnicodeString suffix; member in class:EscapeTransliterator
80 * prefix, suffix, radix, and minDigits of this object are used
98 const UnicodeString& prefix, const UnicodeString& suffix,
  /external/chromium_org/third_party/skia/src/opts/
SkBitmapProcState_matrixProcs_neon.cpp 19 #define MAKENAME(suffix) ClampX_ClampY ## suffix ## _neon
27 #define MAKENAME(suffix) RepeatX_RepeatY ## suffix ## _neon
  /external/chromium_org/tools/traceline/traceline/scripts/
filter_short.py 24 # Ugly regex to remove the L suffix on large python numbers.
  /external/clang/test/CXX/over/over.oper/over.literal/
p8.cpp 11 float operator ""E(const char *); // expected-error {{invalid suffix on literal}} expected-warning {{reserved}}
  /external/eigen/bench/
basicbenchmark.cpp 11 // ((suffix) (matrix size) (number of iterations))
  /external/icu4c/i18n/
esctrn.h 24 * Escape forms have a prefix and suffix, either of which may be
56 UnicodeString suffix; member in class:EscapeTransliterator
80 * prefix, suffix, radix, and minDigits of this object are used
98 const UnicodeString& prefix, const UnicodeString& suffix,
  /external/llvm/lib/Target/AArch64/
AArch64AsmPrinter.h 62 /// suffix, provided in Suffix. E.g. ":got_lo12:" if a Suffix of "lo12" is
66 StringRef Suffix, raw_ostream &O);
  /external/llvm/test/MC/X86/
intel-syntax-hex.s 4 // Checks to make sure we parse the hexadecimal suffix properly.
  /external/proguard/src/proguard/
DataEntryReaderFactory.java 145 * Returns whether the given string ends with the given suffix, ignoring its
148 private static boolean endsWithIgnoreCase(String string, String suffix)
151 int suffixLength = suffix.length();
153 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
  /external/qemu/android/utils/
bufprint.h 62 ** to concat-ing the config path + path separator + 'suffix'
67 ** temporary directory. equivalent to concat-ing the temp path + path separator + 'suffix'
72 extern char* bufprint_config_file(char* buffer, char* buffend, const char* suffix);
74 extern char* bufprint_temp_file (char* buffer, char* buffend, const char* suffix);
  /external/skia/bench/
tile_analyze.py 160 def GetTileVisCodes(suffix, matrix):
164 suffix is only used to avoid name conflicts in the whole html output.
166 this_js = 'var data_%s=new google.visualization.DataTable();' % suffix
168 this_js += 'data_%s.addColumn("number","%s");' % (suffix, i)
169 this_js += 'data_%s.addRows(%s);' % (suffix, str(matrix))
171 this_js += ('var heat_%s=new org.systemsbiology.visualization' % suffix +
172 '.BioHeatMap(document.getElementById("%s"));' % suffix +
173 'heat_%s.draw(data_%s,%s);' % (suffix, suffix, DRAW_OPTIONS))
175 this_js += ('var table_%s=new google.visualization.Table(document.' % suffix
    [all...]
  /external/skia/src/opts/
SkBitmapProcState_matrixProcs_neon.cpp 19 #define MAKENAME(suffix) ClampX_ClampY ## suffix ## _neon
27 #define MAKENAME(suffix) RepeatX_RepeatY ## suffix ## _neon
  /external/valgrind/main/tests/
check_makefile_consistency 38 suffix = substr($0, pos)
39 gsub("^\\$\\( *addsuffix *", "", suffix)
40 gsub(",.*", "", suffix)
47 name_and_suff = name_and_suff " " name[n] suffix
  /ndk/sources/host-tools/sed-4.2.1/m4/
locale-zh.m4 46 /* On Cygwin, avoid locale names without encoding suffix, because the
47 locale_charset() function relies on the encoding suffix. Note that
71 # Test for the locale name without encoding suffix.
75 # Test for the locale name with explicit encoding suffix.
  /external/opencv/cxcore/src/
cximage.cpp 60 const char* suffix = strrchr( filename, '.' ); local
61 return suffix &&
62 (strcmp( suffix, ".xml" ) == 0 ||
63 strcmp( suffix, ".Xml" ) == 0 ||
64 strcmp( suffix, ".XML" ) == 0 ||
65 strcmp( suffix, ".yml" ) == 0 ||
66 strcmp( suffix, ".Yml" ) == 0 ||
67 strcmp( suffix, ".YML" ) == 0 ||
68 strcmp( suffix, ".yaml" ) == 0 ||
69 strcmp( suffix, ".Yaml" ) == 0 |
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/tab_capture/
tab_capture_performancetest.cc 86 std::string suffix; local
88 suffix += "_comp";
90 suffix += "_gpu";
92 suffix += "_novsync";
94 suffix += "_webrtc";
96 suffix += "_scale" + ScalingMethod();
98 suffix += "_small";
99 return suffix;
  /external/chromium_org/components/autofill/core/browser/
phone_field.h 21 // - area code, prefix, suffix
84 // FIELD_PHONE is always present; holds suffix if prefix is present.
  /external/chromium_org/third_party/re2/re2/testing/
required_prefix_test.cc 15 const char* suffix; member in struct:re2::PrefixTest
58 CHECK_EQ(s->ToString(), string(t.suffix))
  /external/chromium_org/third_party/skia/src/utils/ios/
SkOSFile_iOS.mm 43 NSString* suffix = [NSString stringWithUTF8String:csuffix.c_str()];
44 NSString* path = [bundle pathForResource:name ofType:suffix];
  /external/clang/test/SemaCXX/
cxx0x-compat.cpp 35 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}}
39 char c = 'x'_x; // expected-warning {{will be treated as a user-defined literal suffix}}
  /external/llvm/docs/CommandGuide/
llvm-dis.rst 25 a ``.ll`` suffix added (any existing ``.bc`` suffix will first be

Completed in 1596 milliseconds

1 2 3 4 5 67 8 91011>>