/external/libchrome/base/strings/ |
stringize_macros.h | 16 // suffix, below.
|
/external/libdivsufsort/ |
CHANGELOG.md | 14 * Improve the performance of the suffix-sorting algorithm
|
/external/llvm/test/CodeGen/X86/ |
x86-64-call.ll | 5 ; trivial test for correct call suffix
|
/external/llvm/test/MC/X86/ |
intel-syntax-hex.s | 4 // Checks to make sure we parse the hexadecimal suffix properly.
|
/external/pdfium/xfa/src/fxfa/src/fm2js/ |
xfa_error.cpp | 9 L"unsupported char '%c'", L"bad suffix on number",
|
/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/strace/tests/ |
uid.test | 26 match_awk "$LOG" "$srcdir"/uid.awk "$STRACE $args output mismatch" -v suffix="$s"
|
/external/toybox/toys/posix/ |
sleep.c | 16 Wait before exiting. An optional suffix can be "m" (minutes), "h" (hours),
|
/external/valgrind/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
|
/frameworks/data-binding/extensions/baseAdapters/ |
build.gradle | 65 def suffix = name.capitalize() 67 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) { 73 def javadocJarTask = project.tasks.create(name: "javadocJar${suffix}", type: Jar) { 79 def sourcesJarTask = project.tasks.create(name: "sourceJar${suffix}", type: Jar) {
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/lib/pkgconfig/ |
cloog-isl.pc | 11 suffix=
|
isl.pc | 11 suffix=
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/lib/pkgconfig/ |
cloog-isl.pc | 11 suffix=
|
isl.pc | 11 suffix=
|
/prebuilts/go/darwin-x86/src/net/ |
interface_linux_test.go | 13 func (ti *testInterface) setBroadcast(suffix int) error { 14 ti.name = fmt.Sprintf("gotest%d", suffix) 38 func (ti *testInterface) setPointToPoint(suffix int) error { 39 ti.name = fmt.Sprintf("gotest%d", suffix)
|
parse.go | 327 // suffix. 328 func stringsHasSuffix(s, suffix string) bool { 329 return len(s) >= len(suffix) && s[len(s)-len(suffix):] == suffix 332 // stringsHasSuffixFold reports whether s ends in suffix, 334 func stringsHasSuffixFold(s, suffix string) bool { 335 if len(suffix) > len(s) { 338 for i := 0; i < len(suffix); i++ { 339 if lowerASCII(suffix[i]) != lowerASCII(s[len(s)-len(suffix)+i]) [all...] |
/prebuilts/go/linux-x86/src/net/ |
interface_linux_test.go | 13 func (ti *testInterface) setBroadcast(suffix int) error { 14 ti.name = fmt.Sprintf("gotest%d", suffix) 38 func (ti *testInterface) setPointToPoint(suffix int) error { 39 ti.name = fmt.Sprintf("gotest%d", suffix)
|
parse.go | 327 // suffix. 328 func stringsHasSuffix(s, suffix string) bool { 329 return len(s) >= len(suffix) && s[len(s)-len(suffix):] == suffix 332 // stringsHasSuffixFold reports whether s ends in suffix, 334 func stringsHasSuffixFold(s, suffix string) bool { 335 if len(suffix) > len(s) { 338 for i := 0; i < len(suffix); i++ { 339 if lowerASCII(suffix[i]) != lowerASCII(s[len(s)-len(suffix)+i]) [all...] |
/system/extras/squashfs_utils/ |
Android.mk | 24 # We don't need any additional suffix.
|
/toolchain/binutils/binutils-2.25/gas/config/ |
te-hppa64.h | 22 /* Labels are not required to have a colon for a suffix. */
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/ |
thumb2_mul.s | 24 # 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/llvm/docs/CommandGuide/ |
llvm-dis.rst | 25 a ``.ll`` suffix added (any existing ``.bc`` suffix will first be
|
/external/regex-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/skia/gm/ |
imagesource2.cpp | 19 ImageSourceGM(const char* suffix, SkFilterQuality filter) : fSuffix(suffix), fFilter(filter) {
|