HomeSort by relevance Sort by last modified time
    Searched refs:sep (Results 1 - 25 of 1514) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/doc/snippets/
IOFormat.cpp 1 std::string sep = "\n----------------------------------------\n"; variable
10 std::cout << m1 << sep; variable
11 std::cout << m1.format(CommaInitFmt) << sep;
12 std::cout << m1.format(CleanFmt) << sep;
13 std::cout << m1.format(OctaveFmt) << sep;
14 std::cout << m1.format(HeavyFmt) << sep;
  /external/python/cpython3/Lib/test/
test_print.py 9 # sep, end, and file.
15 lambda args, sep, end, file: print(*args),
17 lambda args, sep, end, file: print(file=file, *args),
19 lambda args, sep, end, file: print(end=end, *args),
21 lambda args, sep, end, file: print(end=end, file=file, *args),
23 lambda args, sep, end, file: print(sep=sep, *args),
25 lambda args, sep, end, file: print(sep=sep, file=file, *args)
    [all...]
  /external/curl/lib/
strtok.c 31 Curl_strtok_r(char *ptr, const char *sep, char **end)
38 while(*ptr && strchr(sep, *ptr))
50 while(**end && !strchr(sep, **end))
  /external/ant-glob/src/org/apache/tools/ant/util/
FileUtils.java 121 char sep = File.separatorChar; local
122 filename = filename.replace('/', sep).replace('\\', sep);
125 return (c == sep);
127 if (c == sep) {
129 if (!(ON_DOS && len > 4 && filename.charAt(1) == sep)) {
133 int nextsep = filename.indexOf(sep, 2);
138 && filename.length() > 2 && filename.charAt(2) == sep)
150 char sep = File.separatorChar; local
151 path = path.replace('/', sep).replace('\\', sep)
    [all...]
  /prebuilts/go/darwin-x86/src/bytes/
bytes_s390x.go 9 // indexShortStr returns the index of the first instance of sep in s,
10 // or -1 if sep is not present in s.
11 // indexShortStr requires 2 <= len(sep) <= shortStringLen
27 // Index returns the index of the first instance of sep in s, or -1 if sep is not present in s.
28 func Index(s, sep []byte) int {
29 n := len(sep)
34 return IndexByte(s, sep[0])
36 if Equal(sep, s) {
43 // Use brute force when s and sep both are smal
    [all...]
bytes_amd64.go 26 // Index returns the index of the first instance of sep in s, or -1 if sep is not present in s.
27 func Index(s, sep []byte) int {
28 n := len(sep)
33 return IndexByte(s, sep[0])
35 if Equal(sep, s) {
42 // Use brute force when s and sep both are small
44 return indexShortStr(s, sep)
46 c := sep[0]
60 if Equal(s[i:i+n], sep) {
    [all...]
bytes_arm64.go 9 // Index returns the index of the first instance of sep in s, or -1 if sep is not present in s.
10 func Index(s, sep []byte) int {
11 n := len(sep)
16 return IndexByte(s, sep[0])
18 if Equal(sep, s) {
25 c := sep[0]
37 if Equal(s[i:i+n], sep) {
47 // TODO: if large prefixes of sep are matching
51 j := indexRabinKarp(s[i:], sep)
    [all...]
  /prebuilts/go/linux-x86/src/bytes/
bytes_s390x.go 9 // indexShortStr returns the index of the first instance of sep in s,
10 // or -1 if sep is not present in s.
11 // indexShortStr requires 2 <= len(sep) <= shortStringLen
27 // Index returns the index of the first instance of sep in s, or -1 if sep is not present in s.
28 func Index(s, sep []byte) int {
29 n := len(sep)
34 return IndexByte(s, sep[0])
36 if Equal(sep, s) {
43 // Use brute force when s and sep both are smal
    [all...]
bytes_amd64.go 26 // Index returns the index of the first instance of sep in s, or -1 if sep is not present in s.
27 func Index(s, sep []byte) int {
28 n := len(sep)
33 return IndexByte(s, sep[0])
35 if Equal(sep, s) {
42 // Use brute force when s and sep both are small
44 return indexShortStr(s, sep)
46 c := sep[0]
60 if Equal(s[i:i+n], sep) {
    [all...]
bytes_arm64.go 9 // Index returns the index of the first instance of sep in s, or -1 if sep is not present in s.
10 func Index(s, sep []byte) int {
11 n := len(sep)
16 return IndexByte(s, sep[0])
18 if Equal(sep, s) {
25 c := sep[0]
37 if Equal(s[i:i+n], sep) {
47 // TODO: if large prefixes of sep are matching
51 j := indexRabinKarp(s[i:], sep)
    [all...]
  /external/python/cpython2/Lib/plat-mac/
bgenlocations.py 53 if BGENDIR[-1] != os.sep:
54 BGENDIR = BGENDIR + os.sep
55 if INCLUDEDIR[-1] != os.sep:
56 INCLUDEDIR = INCLUDEDIR + os.sep
57 if TOOLBOXDIR[-1] != os.sep:
58 TOOLBOXDIR = TOOLBOXDIR + os.sep
  /external/strace/tests/
printflags.c 46 char sep = 0; local
49 if (sep)
50 putc(sep, stdout);
52 sep = '|';
61 if (sep)
62 putc(sep, stdout);
  /external/strace/tests-m32/
printflags.c 46 char sep = 0; local
49 if (sep)
50 putc(sep, stdout);
52 sep = '|';
61 if (sep)
62 putc(sep, stdout);
  /external/strace/tests-mx32/
printflags.c 46 char sep = 0; local
49 if (sep)
50 putc(sep, stdout);
52 sep = '|';
61 if (sep)
62 putc(sep, stdout);
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
bgenlocations.py 53 if BGENDIR[-1] != os.sep:
54 BGENDIR = BGENDIR + os.sep
55 if INCLUDEDIR[-1] != os.sep:
56 INCLUDEDIR = INCLUDEDIR + os.sep
57 if TOOLBOXDIR[-1] != os.sep:
58 TOOLBOXDIR = TOOLBOXDIR + os.sep
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
bgenlocations.py 53 if BGENDIR[-1] != os.sep:
54 BGENDIR = BGENDIR + os.sep
55 if INCLUDEDIR[-1] != os.sep:
56 INCLUDEDIR = INCLUDEDIR + os.sep
57 if TOOLBOXDIR[-1] != os.sep:
58 TOOLBOXDIR = TOOLBOXDIR + os.sep
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_print.py 16 # sep, end, and file
22 lambda args, sep, end, file: print(*args),
24 lambda args, sep, end, file: print(file=file, *args),
26 lambda args, sep, end, file: print(end=end, *args),
28 lambda args, sep, end, file: print(end=end, file=file, *args),
30 lambda args, sep, end, file: print(sep=sep, *args),
32 lambda args, sep, end, file: print(sep=sep, file=file, *args),
    [all...]
  /external/python/cpython2/Lib/test/
test_print.py 16 # sep, end, and file
22 lambda args, sep, end, file: print(*args),
24 lambda args, sep, end, file: print(file=file, *args),
26 lambda args, sep, end, file: print(end=end, *args),
28 lambda args, sep, end, file: print(end=end, file=file, *args),
30 lambda args, sep, end, file: print(sep=sep, *args),
32 lambda args, sep, end, file: print(sep=sep, file=file, *args)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_print.py 16 # sep, end, and file
22 lambda args, sep, end, file: print(*args),
24 lambda args, sep, end, file: print(file=file, *args),
26 lambda args, sep, end, file: print(end=end, *args),
28 lambda args, sep, end, file: print(end=end, file=file, *args),
30 lambda args, sep, end, file: print(sep=sep, *args),
32 lambda args, sep, end, file: print(sep=sep, file=file, *args)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_print.py 16 # sep, end, and file
22 lambda args, sep, end, file: print(*args),
24 lambda args, sep, end, file: print(file=file, *args),
26 lambda args, sep, end, file: print(end=end, *args),
28 lambda args, sep, end, file: print(end=end, file=file, *args),
30 lambda args, sep, end, file: print(sep=sep, *args),
32 lambda args, sep, end, file: print(sep=sep, file=file, *args)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_print.py 16 # sep, end, and file
22 lambda args, sep, end, file: print(*args),
24 lambda args, sep, end, file: print(file=file, *args),
26 lambda args, sep, end, file: print(end=end, *args),
28 lambda args, sep, end, file: print(end=end, file=file, *args),
30 lambda args, sep, end, file: print(sep=sep, *args),
32 lambda args, sep, end, file: print(sep=sep, file=file, *args)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_print.py 16 # sep, end, and file
22 lambda args, sep, end, file: print(*args),
24 lambda args, sep, end, file: print(file=file, *args),
26 lambda args, sep, end, file: print(end=end, *args),
28 lambda args, sep, end, file: print(end=end, file=file, *args),
30 lambda args, sep, end, file: print(sep=sep, *args),
32 lambda args, sep, end, file: print(sep=sep, file=file, *args)
    [all...]
  /external/google-breakpad/src/client/linux/minidump_writer/
proc_cpuinfo_reader.h 77 char* sep = static_cast<char*>(my_memchr(line, ':', line_len)); local
78 if (sep == NULL)
83 const char* val = sep+1;
92 while (sep > line && my_isspace(sep[-1]))
93 sep--;
95 if (sep == line)
99 *sep = '\0';
  /external/syslinux/utils/
gethostip.c 52 char *sep; local
89 sep = "";
105 printf("%s%s", sep, host->h_name);
106 sep = " ";
110 printf("%s%u.%u.%u.%u", sep,
115 sep = " ";
119 printf("%s%02X%02X%02X%02X", sep,
124 sep = " ";
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipanat/test/
ipa_nat_test004.c 46 int ipa_nat_test004(int total_entries, u32 tbl_hdl, u8 sep)
54 if(sep)

Completed in 563 milliseconds

1 2 3 4 5 6 7 8 91011>>