Home
last modified time | relevance | path

Searched refs:getPath (Results 1 – 25 of 157) sorted by relevance

1234567

/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/datasetops/map_op/
Dcpu_map_job.cc48 if (input_row.getPath().size() > 0 && !input_row.getPath()[0].empty()) { in Run()
49 err_msg += "The corresponding data files: " + input_row.getPath()[0]; in Run()
50 if (input_row.getPath().size() > 1) { in Run()
52 path_set.insert(input_row.getPath()[0]); in Run()
53 for (auto j = 1; j < input_row.getPath().size(); j++) { in Run()
54 … if (!input_row.getPath()[j].empty() && path_set.find(input_row.getPath()[j]) == path_set.end()) { in Run()
55 err_msg += ", " + input_row.getPath()[j]; in Run()
56 path_set.insert(input_row.getPath()[j]); in Run()
/third_party/typescript/tests/baselines/reference/
DimportCallExpressionDeclarationEmit3.types7 declare function getPath(): string;
8 >getPath : () => string
17 export var p0: Promise<typeof Zero> = import(getPath());
20 >import(getPath()) : Promise<any>
21 >getPath() : string
22 >getPath : () => string
DimportCallExpressionDeclarationEmit3.symbols6 declare function getPath(): string;
7 >getPath : Symbol(getPath, Decl(1.ts, 0, 0))
15 export var p0: Promise<typeof Zero> = import(getPath());
19 >getPath : Symbol(getPath, Decl(1.ts, 0, 0))
DimportCallExpressionDeclarationEmit3.js7 declare function getPath(): string;
11 export var p0: Promise<typeof Zero> = import(getPath());
20 export var p0 = import(getPath());
/third_party/vk-gl-cts/framework/delibs/decpp/
DdeFilePath.cpp153 return FilePath(components).getPath(); in getDirName()
175 int result = stat(normPath.getPath(), &st); in exists()
183 int result = stat(normPath.getPath(), &st); in getType()
226 DE_TEST_ASSERT(string(".") == FilePath(".//.").normalize().getPath()); in FilePath_selfTest()
227 DE_TEST_ASSERT(string(".") == FilePath(".").normalize().getPath()); in FilePath_selfTest()
228 …("..") + FilePath::separator + "test") == FilePath("foo/../bar/../../test").normalize().getPath()); in FilePath_selfTest()
229 …ePath::separator + "foo.txt") == FilePath("/foo\\bar/..\\dir\\..\\foo.txt").normalize().getPath()); in FilePath_selfTest()
230 …ath::separator + "foo.txt") == FilePath("c:/foo\\bar/..\\dir\\..\\foo.txt").normalize().getPath()); in FilePath_selfTest()
231 …th::separator + "foo.txt") == FilePath("\\\\foo\\bar/..\\dir\\..\\foo.txt").normalize().getPath()); in FilePath_selfTest()
282 createPaths.push_back(curPath.getPath()); in createDirectoryAndParents()
[all …]
DdeDirectoryIterator.cpp43 m_handle = _findfirst32((std::string(m_path.getPath()) + "/*").c_str(), &m_fileInfo); in DirectoryIterator()
88 m_handle = opendir(m_path.getPath());
DdeFilePath.hpp59 const char* getPath (void) const;
121 inline const char* FilePath::getPath (void) const in getPath() function in de::FilePath
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/util/
DPathUtils.java12 return applicationContext.getFilesDir().getPath(); in getFilesDir()
16 return applicationContext.getDir("flutter", Context.MODE_PRIVATE).getPath(); in getDataDirectory()
21 return applicationContext.getCodeCacheDir().getPath(); in getCacheDirectory()
23 return applicationContext.getCacheDir().getPath(); in getCacheDirectory()
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/
DAlternateLocaleDataTest.java51 src, ImmutableMap.of(target.getPath(), source.getPath()), ImmutableTable.of()); in testLocaleData()
72 src, ImmutableMap.of(target.getPath(), source.getPath()), ImmutableTable.of()); in testMissingSource()
95 src, ImmutableMap.of(target.getPath(), source.getPath()), ImmutableTable.of()); in testMissingTarget()
DFilteredDataTest.java53 assertThat(filtered.get(remove.getPath())).isNull(); in testSimple()
54 assertThat(filtered.get(keep.getPath())).isEqualTo(keep); in testSimple()
55 assertThat(filtered.get(replace.getPath())).isEqualTo(replacement); in testSimple()
/third_party/typescript/tests/cases/conformance/dynamicImport/
DimportCallExpressionDeclarationEmit3.ts9 declare function getPath(): string; function
13 export var p0: Promise<typeof Zero> = import(getPath());
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DDeprecator.java147 System.err.println("cannot create directory: " + d.getPath()); in process()
151 System.err.println("file already exists but is not directory: " + d.getPath()); in process()
155 System.out.println("process dir: " + f.getPath()); in process()
173 System.out.println("process '" + srcFile.getPath() + "'"); in processFile()
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/testing/
DFakeDataSupplier.java36 unresolvedData.put(localeId, v.getPath(), v); in addLocaleData()
47 Arrays.stream(values).forEach(v -> nonLocaleData.put(v.getPath(), v)); in addSupplementalData()
77 Iterables.filter(nonLocaleData.values(), v -> v.getPath().getDataType() == type)); in getDataForType()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/mapper/
DBreakIteratorMapper.java104 return stripXmlNamespace(value.getPath().getParent().getName()); in getDependencyName()
109 String elementName = value.getPath().getName(); in getBoundaryType()
117 return keyOf(value.getPath().getName(), "icu:dependency").optionalValueFrom(value); in getBoundaryDependency()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
DFilteredData.java62 checkArgument(filteredValue == null || filteredValue.getPath().equals(value.getPath()), in checkFiltered()
DAlternateLocaleData.java138 CldrPath altPath = altPaths.get(value.getPath()); in filter()
142 return altValue.replacePath(value.getPath()); in filter()
145 return toRemove.contains(value.getPath()) ? null : value; in filter()
DSupplementalData.java117 if (ALIAS.matches(v.getPath())) { in create()
121 Alias.forElementName(v.getPath().getName()).ifPresent( in create()
126 } else if (PARENT_LOCALE.matches(v.getPath())) { in create()
129 } else if (CALENDER_PREFERENCE.matches(v.getPath())) { in create()
132 } else if (LIKELY_SUBTAGS.matches(v.getPath())) { in create()
/third_party/vk-gl-cts/modules/internal/
DditImageCompareTests.cpp75 …ageIO::loadImage(refImg, m_testCtx.getArchive(), de::FilePath::join(BASE_DIR, m_refImg).getPath()); in iterate()
76 …ageIO::loadImage(cmpImg, m_testCtx.getArchive(), de::FilePath::join(BASE_DIR, m_cmpImg).getPath()); in iterate()
130 loadImageRGBA8(refImg, m_testCtx.getArchive(), de::FilePath::join(BASE_DIR, m_refImg).getPath()); in iterate()
131 loadImageRGBA8(cmpImg, m_testCtx.getArchive(), de::FilePath::join(BASE_DIR, m_cmpImg).getPath()); in iterate()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/
DResultSpec.java70 .thenComparing(nullsLast(comparing(r -> r.getPath().orElse(null))));
172 getResultPath(value.getPath(), args, varLookupFn)); in matchedResult()
413 this.hashCode = Objects.hash(getKey(), getPath(), isGrouped(), getValues());
424 final Optional<CldrPath> getPath() {
462 && getPath().equals(other.getPath())
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/lib/compile/
Dutil.js21 getPath: getPath, property
171 function getPath(currentPath, prop, jsonPointers) { function
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
DInputFile.java91 public String getPath() in getPath() method in InputFile
93 return file.getPath(); in getPath()
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fUniformLocationTests.cpp139 buff << glu::TypeAccessFormat(type, glu::SubTypeAccess(type).component(0).getPath()); in getFirstComponentName()
141 buff << glu::TypeAccessFormat(type, glu::SubTypeAccess(type).column(0).component(0).getPath()); in getFirstComponentName()
328 const glu::VarType subType = glu::getVarType(uniformInfo.type, subTypeIter.getPath()); in genShaderSources()
337 << glu::TypeAccessFormat(uniformInfo.type, subTypeIter.getPath()) in genShaderSources()
341 << glu::TypeAccessFormat(uniformInfo.type, subTypeIter.getPath()) in genShaderSources()
348 << glu::TypeAccessFormat(uniformInfo.type, subTypeIter.getPath()) in genShaderSources()
352 << glu::TypeAccessFormat(uniformInfo.type, subTypeIter.getPath()) in genShaderSources()
393 const string name = getUniformName(uniformNdx, uniformInfo.type, subTypeIter.getPath()); in verifyLocations()
589 const glu::VarType type = glu::getVarType(uniformInfo.type, subTypeIter.getPath()); in render()
590 const string name = getUniformName(uniformNdx, uniformInfo.type, subTypeIter.getPath()); in render()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkBinaryRegistry.cpp58 return de::FilePath::join(dirName, getProgramFileName(index)).getPath(); in getProgramPath()
106 return de::FilePath::join(dirName, "index.bin").getPath(); in getIndexPath()
444 const de::UniquePtr<ProgramBinary> binary (readBinary(path.getPath())); in initFromPath()
555 std::ofstream indexOut(indexPath.getPath(), std::ios_base::binary); in writeToPath()
558 …hrow tcu::InternalError(string("Failed to open program binary index file ") + indexPath.getPath()); in writeToPath()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DFileOutputBuffer.h63 StringRef getPath() const { return FinalPath; } in getPath() function
/third_party/icu/icu4c/source/test/intltest/
Dcsdetest.h41 virtual const char *getPath(char buffer[2048], const char *filename);

1234567