Home
last modified time | relevance | path

Searched refs:pathName (Results 1 - 20 of 20) sorted by relevance

/third_party/musl/libc-test/src/functionalext/supplement/misc/misc_gtest/
H A Dmisc_nftw64_test.cpp16 static int NftwCallback(const char* pathName, const struct stat* sb, int flag, struct FTW* ftw) in NftwCallback() argument
18 EXPECT_TRUE(pathName != nullptr); in NftwCallback()
22 EXPECT_EQ(-1, stat(pathName, &st)); in NftwCallback()
26 if (access(pathName, R_OK) == 0) { in NftwCallback()
/third_party/lzma/CPP/7zip/UI/GUI/
H A DExtractDialog.cpp199 UString pathName; in OnInit() local
200 SplitPathToParts_Smart(DirPath, pathPrefix, pathName); in OnInit()
202 pathPrefix = pathName; in OnInit()
204 _pathName.SetText(pathName); in OnInit()
379 UString pathName; in OnOK() local
380 _pathName.GetText(pathName); in OnOK()
381 pathName.Trim(); in OnOK()
382 s += pathName; in OnOK()
/third_party/skia/src/ports/
H A DSkFontMgr_preview.h56 SkTypeface_PreviewSystem(const SkString& pathName, in SkTypeface_PreviewSystem() argument
65 , fPathName(pathName) in SkTypeface_PreviewSystem()
192 SkString pathName(family.fBasePath); in SkFontStyleSet_Preview()
193 pathName.append(fontFile.fFileName); in SkFontStyleSet_Preview()
195 std::unique_ptr<SkStreamAsset> stream = SkStream::MakeFromFile(pathName.c_str()); in SkFontStyleSet_Preview()
197 SkDEBUGF("Requested font file %s does not exist or cannot be opened.\n", pathName.c_str()); in SkFontStyleSet_Preview()
210 pathName.c_str()); in SkFontStyleSet_Preview()
251 fStyles.push_back().reset(new SkTypeface_PreviewSystem(pathName, ttcIndex, axisValues.get(), in SkFontStyleSet_Preview()
H A DSkFontMgr_android.cpp56 SkTypeface_AndroidSystem(const SkString& pathName, in SkTypeface_AndroidSystem() argument
66 , fPathName(pathName) in SkTypeface_AndroidSystem()
185 SkString pathName(family.fBasePath); in SkFontStyleSet_Android()
186 pathName.append(fontFile.fFileName); in SkFontStyleSet_Android()
188 std::unique_ptr<SkStreamAsset> stream = SkStream::MakeFromFile(pathName.c_str()); in SkFontStyleSet_Android()
191 pathName.c_str()); in SkFontStyleSet_Android()
204 pathName.c_str()); in SkFontStyleSet_Android()
239 pathName, cacheFontFiles, ttcIndex, axisValues.get(), axisDefinitions.count(), in SkFontStyleSet_Android()
/third_party/lzma/CPP/Windows/
H A DFileSystem.cpp60 UINT MyGetDriveType(CFSTR pathName) in MyGetDriveType() argument
65 return GetDriveType(fs2fas(pathName)); in MyGetDriveType()
70 return GetDriveTypeW(fs2us(pathName)); in MyGetDriveType()
H A DFileSystem.h23 UINT MyGetDriveType(CFSTR pathName);
H A DFileFind.h255 if pathName is "" or NULL, in IsHandleAllocated()
264 HANDLE FindFirst(CFSTR pathName, bool watchSubtree, DWORD notifyFilter);
/third_party/skia/modules/particles/src/
H A DSkParticleBinding.cpp86 SkPathBinding(const char* name = "", const char* pathPath = "", const char* pathName = "") in SkPathBinding()
89 , fPathName(pathName) {} in SkPathBinding()
254 const char* pathName) { in MakePath()
255 return sk_sp<SkParticleBinding>(new SkPathBinding(name, pathPath, pathName)); in MakePath()
253 MakePath(const char* name, const char* pathPath, const char* pathName) MakePath() argument
/third_party/NuttX/fs/mount/
H A Dfs_foreachmountpoint.c65 (void)handler(mnt->devName, mnt->pathName, &statBuf, arg); in foreach_mountpoint()
H A Dfs_sync.c68 PRINT_ERR("sync failed, %s, %s\n", mnt->pathName, strerror(-ret)); in sync()
H A Dfs_mount.c327 ret = strcpy_s(mnt->pathName, PATH_MAX, target); in mount()
/third_party/skia/modules/particles/include/
H A DSkParticleBinding.h80 const char* pathPath, const char* pathName);
/third_party/skia/tests/
H A DPathOpsExtendedTest.h61 void ShowPath(const SkPath& path, const char* pathName);
H A DPathOpsExtendedTest.cpp407 static void json_path_out(const SkPath& path, const char* pathName, const char* fillTypeName, in json_path_out() argument
418 fprintf(PathOpsDebug::gOut, " \"%s\": \"%s\",\n", pathName, svg.c_str()); in json_path_out()
424 fprintf(PathOpsDebug::gOut, " \"%s\": [", pathName); in json_path_out()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
H A DModifyStruct.cpp149 ImmutableString pathName;
232 ModifiedAccess *modified = &AccessField(modifiedParam, info.pathName);
329 const ImmutableString pathName(namePath);
330 TField *modifiedField = new TField(&newType, pathName, field.line(), field.symbolType());
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fProgramInterfaceDefinitionUtil.hpp179 bool findProgramVariablePathByPathName (std::vector<ProgramInterfaceDefinition::VariablePathComponent>& typePath, const ProgramInterfaceDefinition::Program* program, const std::string& pathName, const ProgramInterfaceDefinition::VariableSearchFilter& filter);
H A Des31fProgramInterfaceDefinitionUtil.cpp1726 bool findProgramVariablePathByPathName (std::vector<VariablePathComponent>& typePath, const ProgramInterfaceDefinition::Program* program, const std::string& pathName, const VariableSearchFilter& filter)
1730 if (!traverseProgramVariablePath(modifiedPath, program, pathName, filter))
/third_party/skia/src/pathops/
H A DSkPathOpsDebug.cpp2841 static void showPathContours(const SkPath& path, const char* pathName) { in showPathContours() argument
2845 SkDebugf(" %s.moveTo(", pathName); in showPathContours()
2850 SkDebugf(" %s.lineTo(", pathName); in showPathContours()
2855 SkDebugf(" %s.quadTo(", pathName); in showPathContours()
2860 SkDebugf(" %s.conicTo(", pathName); in showPathContours()
2865 SkDebugf(" %s.cubicTo(", pathName); in showPathContours()
2870 SkDebugf(" %s.close();\n", pathName); in showPathContours()
/third_party/python/Lib/tkinter/
H A D__init__.py2117 def wm_group(self, pathName=None):
2120 return self.tk.call('wm', 'group', self._w, pathName)
2195 def wm_iconwindow(self, pathName=None):
2198 return self.tk.call('wm', 'iconwindow', self._w, pathName)
4508 pathName sash dragto index x y This command computes the
4540 of the available options for pathName. If option is
4552 should be the name of a window already managed by pathName.
4555 should be the name of a window already managed by pathName.
/third_party/rust/crates/libc/src/vxworks/
H A Dmod.rs436 pub pathName : [::c_char; VX_RTP_NAME_LENGTH as usize + 1],
492 .field("pathName", &&self.pathName[..]) in fmt()

Completed in 26 milliseconds