Searched refs:sep (Results 26 - 50 of 340) sorted by relevance

1234567891011>>

/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-list.c46 char *sep = strchr(argv[i], ':'), *s; local
49 if (sep == NULL) {
53 sep_idx = sep - argv[i];
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/tui/
H A Dutil.c82 const char *sep = strchr(t, '\n'); local
84 if (sep == NULL)
85 sep = strchr(t, '\0');
86 len = sep - t;
90 if (*sep == '\0')
92 t = sep + 1;
163 const char *sep = strchr(t, '\n'); local
166 if (sep == NULL)
167 sep = strchr(t, '\0');
168 len = sep
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dlocal_file_system.py16 return path.replace('/', os.sep)
20 return path.replace(os.sep, '/')
73 base_path = base_path.replace(os.sep, '/')
87 _ConvertToFilepath(path).lstrip(os.sep))
106 _ConvertToFilepath(path).lstrip(os.sep))
/external/chromium_org/tools/grit/grit/
H A Dutil_unittest.py65 for path1 in [base_path, base_path + os.path.sep]:
66 for path2 in [other_path, other_path + os.path.sep]:
71 root_dir = 'c:%sa' % os.path.sep
72 result1 = '..%sabc' % os.path.sep
75 path2 = '%s%s%s' % (root_dir, os.path.sep, result2)
/external/javassist/src/main/javassist/compiler/ast/
H A DDeclarator.java102 public static String astToClassName(ASTList name, char sep) { argument
107 astToClassName(sbuf, name, sep);
112 char sep) {
118 astToClassName(sbuf, (ASTList)h, sep);
124 sbuf.append(sep);
111 astToClassName(StringBuffer sbuf, ASTList name, char sep) argument
/external/qemu/util/
H A Dqemu-error.c170 const char *sep = ""; local
176 sep = " ";
182 error_printf("%s%s", sep, argp[i]);
183 sep = " ";
195 error_printf("%s", sep);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_format_table.py113 sep = ","
115 sep = ""
117 print " {%s, %s, %s, %u}%s\t/* %s = %s */" % (type_map[channel.type], bool_map(channel.norm), bool_map(channel.pure), channel.size, sep, "xyzw"[i], channel.name)
119 print " {0, 0, 0, 0}%s" % (sep,)
125 sep = ","
127 sep = ""
132 print " %s%s\t/* %s */" % (swizzle_map[swizzle], sep, comment)
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_table.py113 sep = ","
115 sep = ""
117 print " {%s, %s, %s, %u}%s\t/* %s = %s */" % (type_map[channel.type], bool_map(channel.norm), bool_map(channel.pure), channel.size, sep, "xyzw"[i], channel.name)
119 print " {0, 0, 0, 0}%s" % (sep,)
125 sep = ","
127 sep = ""
132 print " %s%s\t/* %s */" % (swizzle_map[swizzle], sep, comment)
/external/chromium_org/third_party/mesa/src/src/gallium/tests/unit/
H A Du_format_test.c62 const char *sep = ""; local
66 printf("%s%02x", sep, packed[i]);
67 sep = " ";
81 const char *sep = ""; local
86 printf("%s{%f, %f, %f, %f}", sep, unpacked[i][j][0], unpacked[i][j][1], unpacked[i][j][2], unpacked[i][j][3]);
87 sep = ", ";
89 sep = ",\n";
103 const char *sep = ""; local
108 printf("%s{%f, %f, %f, %f}", sep, unpacked[i][j][0], unpacked[i][j][1], unpacked[i][j][2], unpacked[i][j][3]);
109 sep
125 const char *sep = ""; local
146 const char *sep = ""; local
168 const char *sep = ""; local
189 const char *sep = ""; local
[all...]
/external/mesa3d/src/gallium/tests/unit/
H A Du_format_test.c62 const char *sep = ""; local
66 printf("%s%02x", sep, packed[i]);
67 sep = " ";
81 const char *sep = ""; local
86 printf("%s{%f, %f, %f, %f}", sep, unpacked[i][j][0], unpacked[i][j][1], unpacked[i][j][2], unpacked[i][j][3]);
87 sep = ", ";
89 sep = ",\n";
103 const char *sep = ""; local
108 printf("%s{%f, %f, %f, %f}", sep, unpacked[i][j][0], unpacked[i][j][1], unpacked[i][j][2], unpacked[i][j][3]);
109 sep
125 const char *sep = ""; local
146 const char *sep = ""; local
168 const char *sep = ""; local
189 const char *sep = ""; local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DCRLDistPoint.java87 String sep = System.getProperty("line.separator");
90 buf.append(sep);
96 buf.append(sep);
H A DGeneralNames.java95 String sep = System.getProperty("line.separator");
98 buf.append(sep);
104 buf.append(sep);
/external/chromium_org/build/linux/unbundle/
H A Dremove_bundled_libraries.py41 if 'third_party' not in root_relpath.split(os.sep):
54 split = relpath.rsplit(os.sep + 'third_party' + os.sep, 1)
/external/javasqlite/src/main/java/SQLite/
H A DShell.java25 String sep; field in class:Shell
58 s.sep = sep;
225 (i == args.length - 1 ? "\n" : sep));
236 pw.print(sep);
373 sep = args[0];
533 s.sep = "|";
547 s.sep = args[i];
667 String sep = "";
672 sb.append(sep
[all...]
/external/chromium_org/base/test/expectations/
H A Dexpectation.cc78 size_t sep = modifier.find('-'); local
79 if (sep == std::string::npos) {
83 out_platform->name = modifier.substr(0, sep).as_string();
84 out_platform->variant = modifier.substr(sep + 1).as_string();
/external/chromium_org/third_party/skia/include/gpu/gl/
H A DGrGLExtensions.h64 void print(const char* sep = "\n") const;
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLExtensions.cpp135 void GrGLExtensions::print(const char* sep) const {
136 if (NULL == sep) {
137 sep = " ";
141 GrPrintf("%s%s", (*fStrings)[i].c_str(), (i < cnt - 1) ? sep : "");
/external/oprofile/libutil++/
H A Dstring_manip.cpp54 vector<string> separate_token(string const & str, char sep) argument
62 if (pos < str.length() - 1 && str[pos + 1] == sep) {
64 next += sep;
68 } else if (ch == sep) {
/external/skia/include/gpu/gl/
H A DGrGLExtensions.h64 void print(const char* sep = "\n") const;
/external/skia/src/gpu/gl/
H A DGrGLExtensions.cpp135 void GrGLExtensions::print(const char* sep) const {
136 if (NULL == sep) {
137 sep = " ";
141 GrPrintf("%s%s", (*fStrings)[i].c_str(), (i < cnt - 1) ? sep : "");
/external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
H A Dmodel.py174 sep = ''
176 self.formatter.text(sep)
178 sep = ', '
183 sep = ''
185 self.formatter.text(sep)
189 sep = ', '
202 sep = ''
204 self.formatter.text(sep)
208 sep = ', '
/external/mesa3d/src/gallium/tools/trace/
H A Dmodel.py174 sep = ''
176 self.formatter.text(sep)
178 sep = ', '
183 sep = ''
185 self.formatter.text(sep)
189 sep = ', '
202 sep = ''
204 self.formatter.text(sep)
208 sep = ', '
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_roboswitch.c208 char *sep; local
211 sep = drv->ifname + os_strlen(drv->ifname);
212 *sep = '.';
221 *sep = '\0';
350 char *sep; local
359 sep = drv->ifname +
362 while (sep > drv->ifname && *sep != '.') sep--;
363 if (sep <
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_roboswitch.c208 char *sep; local
211 sep = drv->ifname + os_strlen(drv->ifname);
212 *sep = '.';
221 *sep = '\0';
350 char *sep; local
359 sep = drv->ifname +
362 while (sep > drv->ifname && *sep != '.') sep--;
363 if (sep <
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_roboswitch.c208 char *sep; local
211 sep = drv->ifname + os_strlen(drv->ifname);
212 *sep = '.';
221 *sep = '\0';
350 char *sep; local
359 sep = drv->ifname +
362 while (sep > drv->ifname && *sep != '.') sep--;
363 if (sep <
[all...]

Completed in 829 milliseconds

1234567891011>>