/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/ |
H A D | ThinLTOCodeGenerator.cpp | 347 sys::path::append(EntryPath, CachePath, "llvmcache-" + Key); in ModuleCacheEntry() 350 // Access the path to this entry in the cache. 376 llvm::sys::path::remove_filename(CachePath); in write() 377 sys::path::append(TempFilename, CachePath, "Thin-%%%%%%.tmp.o"); in write() 857 /// Returns the path to the generated file in SavedObjectsDirectoryPath. 863 llvm::sys::path::append(OutputPath, in writeGeneratedObject()
|
/third_party/python/Modules/clinic/ |
H A D | _ssl.c.h | 23 "_test_decode_cert($module, path, /)\n" 31 _ssl__test_decode_cert_impl(PyObject *module, PyObject *path); 37 PyObject *path; in _ssl__test_decode_cert() local 39 if (!PyUnicode_FSConverter(arg, &path)) { in _ssl__test_decode_cert() 42 return_value = _ssl__test_decode_cert_impl(module, path); in _ssl__test_decode_cert() 618 "load_dh_params($self, path, /)\n"
|
/third_party/rust/crates/proc-macro2/src/ |
H A D | wrapper.rs | 10 use std::path::PathBuf; 372 /// Get the path to this source file as a string. 373 pub fn path(&self) -> PathBuf { in path() functions 375 SourceFile::Compiler(a) => a.path(), in path() 376 SourceFile::Fallback(a) => a.path(), in path()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/ |
H A D | syscalls.rs | 860 pub(crate) fn readlink(path: &CStr, buf: &mut [u8]) -> io::Result<usize> { 866 path, 874 pub(crate) fn readlinkat(dirfd: BorrowedFd<'_>, path: &CStr, buf: &mut [u8]) -> io::Result<usize> { 880 path, 1306 path: &CStr, 1317 return unsafe { ret(syscall_readonly!(__NR_faccessat, dirfd, path, access)) };
|
/third_party/backends/frontend/ |
H A D | scanimage.c | 2051 // if the user passes us a path with a known extension then he won't be surprised if we figure in guess_output_format() 2077 fprintf(stderr, "Could not guess output format from the given path and no --format given.\n"); in guess_output_format() 2734 char path[PATH_MAX]; in main() local 2738 sprintf (path, format, n); /* love --(C++) */ in main() 2739 strcpy (part_path, path); in main() 2872 if (rename (part_path, path)) in main() 2875 part_path, path); in main() 2881 fprintf (stdout, "%s\n", path); in main()
|
/third_party/node/src/ |
H A D | env.cc | 634 // get the full path before process.execPath is used. in GetExecPath() 1302 const char* path, in CollectExceptionInfo() 1317 if (path != nullptr) { in CollectExceptionInfo() 1319 Buffer::Copy(env->isolate(), path, strlen(path)).ToLocalChecked(); in CollectExceptionInfo() 1340 const char* path, in CollectUVExceptionInfo() 1353 syscall, message, path, dest); in CollectUVExceptionInfo() 1296 CollectExceptionInfo(Environment* env, Local<Object> obj, int errorno, const char* err_string, const char* syscall, const char* message, const char* path, const char* dest) CollectExceptionInfo() argument 1336 CollectUVExceptionInfo(Local<Value> object, int errorno, const char* syscall, const char* message, const char* path, const char* dest) CollectUVExceptionInfo() argument
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | context.rs | 639 /// Add another path to the set of included files. 1050 let path = item.path_for_allowlisting(self); in process_replacements() 1051 let replacement = self.replacements.get(&path[1..]); in process_replacements() 2079 path: &[String], in is_replaced_type() 2083 matches!(self.replacements.get(path), Some(replaced_by) if *replaced_by != id) in is_replaced_type() 2087 pub fn opaque_by_name(&self, path: &[String]) -> bool { in opaque_by_name() 2092 self.options.opaque_types.matches(path[1..].join("::")) in opaque_by_name()
|
/third_party/python/Lib/ |
H A D | subprocess.py | 1458 raise TypeError('path-like args is not allowed when ' 1513 # gh-101283: without a fully-qualified path, before Windows 1521 comspec = os.path.join(system_root, 'System32', 'cmd.exe') 1522 if not os.path.isabs(comspec): 1524 if os.path.isabs(comspec): 1804 raise TypeError('path-like args is not allowed when ' 1824 and os.path.dirname(executable) 1874 if os.path.dirname(executable): 1879 os.path.join(os.fsencode(dir), executable)
|
/third_party/skia/src/pathops/ |
H A D | SkOpSegment.cpp | 167 SkPathWriter* path) const { in addCurveTo() 175 path->deferredMove(start->ptT()); in addCurveTo() 178 FAIL_IF(!path->deferredLine(end->ptT())); in addCurveTo() 181 path->quadTo(curvePart.fCurve.fQuad[1].asSkPoint(), end->ptT()); in addCurveTo() 184 path->conicTo(curvePart.fCurve.fConic[1].asSkPoint(), end->ptT(), in addCurveTo() 188 path->cubicTo(curvePart.fCurve.fCubic[1].asSkPoint(), in addCurveTo()
|
/third_party/python/Lib/test/ |
H A D | test_ftplib.py | 330 CERTFILE = os.path.join(os.path.dirname(__file__), "keycert3.pem") 331 CAFILE = os.path.join(os.path.dirname(__file__), "pycacert.pem") 659 list(self.client.mlsd(path='/')) 660 list(self.client.mlsd(path='/', facts=['size', 'type']))
|
/third_party/python/Lib/logging/ |
H A D | __init__.py | 185 _srcfile = os.path.normcase(addLevelName.__code__.co_filename) 196 filename = os.path.normcase(frame.f_code.co_filename) 326 self.filename = os.path.basename(pathname) 327 self.module = os.path.splitext(self.filename)[0] 1037 while (frame and os.path.dirname(frame.f_code.co_filename) == 1162 #keep the absolute path, otherwise derived classes which use this 1164 self.baseFilename = os.path.abspath(filename)
|
/third_party/mesa3d/include/GL/ |
H A D | glcorearb.h | 3591 typedef void (APIENTRYP PFNGLCOMPILESHADERINCLUDEARBPROC) (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); 3598 GLAPI void APIENTRY glCompileShaderIncludeARB (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); 5466 typedef void (APIENTRYP PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); 5467 typedef GLboolean (APIENTRYP PFNGLISPATHNVPROC) (GLuint path); 5468 typedef void (APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); 5469 typedef void (APIENTRYP PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); 5470 typedef void (APIENTRYP PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); 5471 typedef void (APIENTRYP PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); 5472 typedef void (APIENTRYP PFNGLPATHSTRINGNVPROC) (GLuint path, GLenum format, GLsizei length, const void *pathString); 5479 typedef void (APIENTRYP PFNGLPATHPARAMETERIVNVPROC) (GLuint path, GLenu [all...] |
/third_party/openGLES/api/GL/ |
H A D | glcorearb.h | 3572 typedef void (APIENTRYP PFNGLCOMPILESHADERINCLUDEARBPROC) (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); 3579 GLAPI void APIENTRY glCompileShaderIncludeARB (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); 5533 typedef void (APIENTRYP PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); 5534 typedef GLboolean (APIENTRYP PFNGLISPATHNVPROC) (GLuint path); 5535 typedef void (APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); 5536 typedef void (APIENTRYP PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); 5537 typedef void (APIENTRYP PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); 5538 typedef void (APIENTRYP PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); 5539 typedef void (APIENTRYP PFNGLPATHSTRINGNVPROC) (GLuint path, GLenum format, GLsizei length, const void *pathString); 5546 typedef void (APIENTRYP PFNGLPATHPARAMETERIVNVPROC) (GLuint path, GLenu [all...] |
/third_party/skia/third_party/externals/swiftshader/include/GL/ |
H A D | glcorearb.h | 3609 typedef void (APIENTRYP PFNGLCOMPILESHADERINCLUDEARBPROC) (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); 3616 GLAPI void APIENTRY glCompileShaderIncludeARB (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); 5318 typedef void (APIENTRYP PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); 5319 typedef GLboolean (APIENTRYP PFNGLISPATHNVPROC) (GLuint path); 5320 typedef void (APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); 5321 typedef void (APIENTRYP PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); 5322 typedef void (APIENTRYP PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); 5323 typedef void (APIENTRYP PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); 5324 typedef void (APIENTRYP PFNGLPATHSTRINGNVPROC) (GLuint path, GLenum format, GLsizei length, const void *pathString); 5331 typedef void (APIENTRYP PFNGLPATHPARAMETERIVNVPROC) (GLuint path, GLenu [all...] |
/third_party/skia/third_party/externals/opengl-registry/api/GL/ |
H A D | glcorearb.h | 3609 typedef void (APIENTRYP PFNGLCOMPILESHADERINCLUDEARBPROC) (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); 3616 GLAPI void APIENTRY glCompileShaderIncludeARB (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); 5318 typedef void (APIENTRYP PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); 5319 typedef GLboolean (APIENTRYP PFNGLISPATHNVPROC) (GLuint path); 5320 typedef void (APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); 5321 typedef void (APIENTRYP PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); 5322 typedef void (APIENTRYP PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); 5323 typedef void (APIENTRYP PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); 5324 typedef void (APIENTRYP PFNGLPATHSTRINGNVPROC) (GLuint path, GLenum format, GLsizei length, const void *pathString); 5331 typedef void (APIENTRYP PFNGLPATHPARAMETERIVNVPROC) (GLuint path, GLenu [all...] |
/third_party/python/Lib/tkinter/ |
H A D | __init__.py | 1722 """Return the window path name of this widget.""" 2130 explicitly. DEFAULT can be the relative path to a .ico file 2321 baseName = os.path.basename(sys.argv[0]) 2322 baseName, ext = os.path.splitext(baseName) 2381 class_tcl = os.path.join(home, '.%s.tcl' % className) 2382 class_py = os.path.join(home, '.%s.py' % className) 2383 base_tcl = os.path.join(home, '.%s.tcl' % baseName) 2384 base_py = os.path.join(home, '.%s.py' % baseName) 2387 if os.path.isfile(class_tcl): 2389 if os.path [all...] |
/third_party/rust/crates/syn/src/gen/ |
H A D | hash.rs | 832 self.path.hash(state); in hash() 892 self.path.hash(state); in hash() 1752 self.path.hash(state); in hash() 1807 self.path.hash(state); in hash() 1819 self.path.hash(state); in hash() 1992 self.path.hash(state); in hash() 2017 self.path.hash(state); in hash() 2256 self.path.hash(state); in hash() 2560 self.path.hash(state); in hash() 2752 self.path in hash() [all...] |
/third_party/rust/crates/syn/src/ |
H A D | item.rs | 423 /// A path prefix of imports in a `use` item: `std::...`. 441 /// A path prefix of imports in a `use` item: `std::...`. 890 // pub path: Box<Path>, 1198 let path = input.call(Path::parse_mod_style)?; in parse() 1215 path, in parse() 1611 path: Path::from(Ident::new("Self", self_token.span)), in parse() 2526 if let Type::Path(TypePath { qself: None, path }) = first_ty { in parse_impl() 2527 trait_ = Some((polarity, path, for_token)); in parse_impl() 2533 return Err(Error::new_spanned(first_ty_ref, "expected trait path")); in parse_impl() 2535 return Err(Error::new(first_ty_span, "expected trait path")); in parse_impl() [all...] |
/third_party/curl/tests/server/ |
H A D | fake_ntlm.c | 193 path = env; in main()
|
/third_party/ffmpeg/libavformat/ |
H A D | internal.h | 438 * @param path will create sub-directories by path 441 int ff_mkdir_p(const char *path); 631 * @param url_src source path 632 * @param url_dst destination path
|
/third_party/gn/src/gn/ |
H A D | label.cc | 64 // Use implicit name. The path will be "//", "//base/", "//base/i18n/", etc. in ComputeTargetNameFromDep() 209 This consists of a source-root-absolute path, a colon, and a name. This means 233 the path name and just start with a colon. This format is recommended for
|
/third_party/ffmpeg/libswscale/x86/ |
H A D | yuv2yuvX.asm | 56 ; offset != 0 path.
|
/third_party/glslang/ |
H A D | Android.mk | 68 GLSLANG_OUT_PATH=$(if $(call host-path-is-absolute,$(TARGET_OUT)),$(TARGET_OUT),$(abspath $(TARGET_OUT)))
|
/third_party/icu/icu4c/source/common/ |
H A D | putilimp.h | 42 * with an alternate path for unusual platforms. 465 * @param path Pathname to test 466 * @return true if the path is absolute 469 U_CAPI UBool U_EXPORT2 uprv_pathIsAbsolute(const char *path);
|
/third_party/alsa-lib/include/ |
H A D | conf.h | 96 int snd_config_update_r(snd_config_t **top, snd_config_update_t **update, const char *path);
|