Home
last modified time | relevance | path

Searched refs:delim (Results 1 – 18 of 18) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dgetpath.c269 char *delim; in search_for_prefix() local
271 delim = strchr(prefix, DELIM); in search_for_prefix()
272 if (delim) in search_for_prefix()
273 *delim = '\0'; in search_for_prefix()
327 char *delim; in search_for_exec_prefix() local
328 delim = strchr(home, DELIM); in search_for_exec_prefix()
329 if (delim) in search_for_exec_prefix()
330 strncpy(exec_prefix, delim+1, MAXPATHLEN); in search_for_exec_prefix()
423 char *delim = strchr(path, DELIM); in calculate_path() local
425 if (delim) { in calculate_path()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
Dgetpath.c424 char *delim = strchr(path, DELIM); in calculate_path() local
426 if (delim) { in calculate_path()
427 size_t len = delim - path; in calculate_path()
440 if (!delim) { in calculate_path()
444 path = delim + 1; in calculate_path()
523 char *delim = strchr(defpath, DELIM); in calculate_path() local
529 if (delim) in calculate_path()
530 bufsz += delim - defpath + 1; in calculate_path()
535 defpath = delim + 1; in calculate_path()
568 char *delim = strchr(defpath, DELIM); in calculate_path() local
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
Dgetpath.c493 char *delim = strchr(path, DELIM); in calculate_path() local
495 if (delim) { in calculate_path()
496 size_t len = delim - path; in calculate_path()
509 if (!delim) { in calculate_path()
513 path = delim + 1; in calculate_path()
592 char *delim = strchr(defpath, DELIM); in calculate_path() local
598 if (delim) in calculate_path()
599 bufsz += delim - defpath + 1; in calculate_path()
604 defpath = delim + 1; in calculate_path()
637 char *delim = strchr(defpath, DELIM); in calculate_path() local
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dcsv.py252 delim = reduce(lambda a, b, delims = delims:
254 skipinitialspace = delims[delim] == spaces
255 if delim == '\n': # most likely a file with a single column
256 delim = ''
259 delim = ''
265 {'delim':delim, 'quote':quotechar}, re.MULTILINE)
274 return (quotechar, doublequote, delim, skipinitialspace)
351 delim = delims.keys()[0]
352 skipinitialspace = (data[0].count(delim) ==
353 data[0].count("%c " % delim))
[all …]
Durlparse.py152 delim = len(url) # position of end of domain part of url, default is end
156 delim = min(delim, wdelim) # use earliest delim position
157 return url[start:delim], url[delim:] # return (domain, rest)
Dcgi.py694 delim = ""
708 odelim = delim
710 delim = "\r\n"
714 delim = "\n"
718 delim = ""
Doptparse.py227 def set_short_opt_delimiter(self, delim): argument
228 if delim not in ("", " "):
230 "invalid metavar delimiter for short options: %r" % delim)
231 self._short_opt_fmt = "%s" + delim + "%s"
233 def set_long_opt_delimiter(self, delim): argument
234 if delim not in ("=", " "):
236 "invalid metavar delimiter for long options: %r" % delim)
237 self._long_opt_fmt = "%s" + delim + "%s"
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dcsv.py256 delim = reduce(lambda a, b, delims = delims:
258 skipinitialspace = delims[delim] == spaces
259 if delim == '\n': # most likely a file with a single column
260 delim = ''
263 delim = ''
270 {'delim':re.escape(delim), 'quote':quotechar}, re.MULTILINE)
279 return (quotechar, doublequote, delim, skipinitialspace)
356 delim = delims.keys()[0]
357 skipinitialspace = (data[0].count(delim) ==
358 data[0].count("%c " % delim))
[all …]
Durlparse.py161 delim = len(url) # position of end of domain part of url, default is end
165 delim = min(delim, wdelim) # use earliest delim position
166 return url[start:delim], url[delim:] # return (domain, rest)
Doptparse.py228 def set_short_opt_delimiter(self, delim): argument
229 if delim not in ("", " "):
231 "invalid metavar delimiter for short options: %r" % delim)
232 self._short_opt_fmt = "%s" + delim + "%s"
234 def set_long_opt_delimiter(self, delim): argument
235 if delim not in ("=", " "):
237 "invalid metavar delimiter for long options: %r" % delim)
238 self._long_opt_fmt = "%s" + delim + "%s"
/device/linaro/bootloader/edk2/StdLib/LibC/String/
Dstrsep.c57 register const char *delim in strsep() argument
69 spanp = delim; in strsep()
/device/generic/opengl-transport/host/commands/emugen/
DstrUtils.cpp21 …:string getNextToken(const std::string & str, size_t pos, size_t * last, const std::string & delim) in getNextToken() argument
28 *last = str.find_first_of(delim, pos); in getNextToken()
DstrUtils.h25 …string getNextToken(const std::string & str, size_t pos, size_t * last, const std::string & delim);
/device/linaro/bootloader/edk2/StdLib/Include/
Dstring.h488 register const char *delim
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dsysmodule.c1513 makepathobject(char *path, int delim) in makepathobject() argument
1521 while ((p = strchr(p, delim)) != NULL) { in makepathobject()
1529 p = strchr(path, delim); in makepathobject()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dsysmodule.c1534 makepathobject(char *path, int delim) in makepathobject() argument
1542 while ((p = strchr(p, delim)) != NULL) { in makepathobject()
1550 p = strchr(path, delim); in makepathobject()
/device/google/marlin/camera/QCamera2/HAL/
DQCameraParameters.h1040 char delim, char **endptr);
1042 int32_t parseNDimVector(const char *str, int *num, int N, char delim);
DQCameraParameters.cpp6286 char delim, in parse_pair() argument
6293 if (*end != delim) { in parse_pair()
6294 LOGE("Cannot find delimeter (%c) in str=%s", delim, str); in parse_pair()
11578 int32_t QCameraParameters::parseNDimVector(const char *str, int *num, int N, char delim = ',') in parseNDimVector() argument
11596 if(*end != delim && i < N-1) { in parseNDimVector()
11598 delim, str, *end); in parseNDimVector()