Home
last modified time | relevance | path

Searched refs:newPath (Results 1 – 25 of 33) sorted by relevance

12

/external/skqp/modules/pathkit/tests/
DtestReporter.js39 let newPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
40 newPath.setAttribute('stroke', 'black');
42 newPath.setAttribute('fill', 'orange');
43 newPath.setAttribute('fill-rule', fillRule);
45 newPath.setAttribute('fill', 'rgba(255,255,255,0.0)');
47 newPath.setAttribute('d', svgstr);
49 newSVG.appendChild(newPath);
/external/skia/modules/canvaskit/tests/
DtestReporter.js39 let newPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
40 newPath.setAttribute('stroke', 'black');
42 newPath.setAttribute('fill', 'orange');
43 newPath.setAttribute('fill-rule', fillRule);
45 newPath.setAttribute('fill', 'rgba(255,255,255,0.0)');
47 newPath.setAttribute('d', svgstr);
49 newSVG.appendChild(newPath);
/external/skia/modules/pathkit/tests/
DtestReporter.js39 let newPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
40 newPath.setAttribute('stroke', 'black');
42 newPath.setAttribute('fill', 'orange');
43 newPath.setAttribute('fill-rule', fillRule);
45 newPath.setAttribute('fill', 'rgba(255,255,255,0.0)');
47 newPath.setAttribute('d', svgstr);
49 newSVG.appendChild(newPath);
/external/cldr/tools/java/org/unicode/cldr/tool/
DChartDtdDelta.java149 .addCell(datum.newPath) in writeContents()
195 String newPath = path + "/" + element.name; in checkNames() local
200 addData(dtdCurrent, NEW_PREFIX + name, version, newPath, OMITTED_ATTRIBUTES); in checkNames()
219 …addData(dtdCurrent, NEW_PREFIX + name + (ordered ? ORDERED_SIGN : ""), version, newPath, attribute… in checkNames()
229 …addData(dtdCurrent, DEPRECATED_PREFIX + name + orderingStatus, version, newPath, Collections.empty… in checkNames()
232 …wlyDeprecated ? DEPRECATED_PREFIX : "") + name + orderingStatus, version, newPath, attributeNames); in checkNames()
247 … checkNames(version, dtdCurrent, dtdLast, oldNameToElement, newPath, child, seen, showAnyway); in checkNames()
262 final String newPath; field in ChartDtdDelta.DiffElement
266 …public DiffElement(DtdData dtdCurrent, String version, String newPath, String newElement, Set<Stri… in DiffElement() argument
275 this.newPath = fix(newPath); in DiffElement()
[all …]
DShowDtdDiffs.java91 String newPath = path + "/" + element.name; in checkNames() local
94 System.out.println(prefix + "\tElement\t" + newPath + "\t" + attributeNames); in checkNames()
99 System.out.println(prefix + "\tAttribute\t" + newPath + "\t" + attributeNames); in checkNames()
103 checkNames(prefix, dtdCurrent, oldNameToElement, newPath, child, seen); in checkNames()
DGetChanges.java272 String newPath = fixOldPath(xpath); in old() local
273 String valueSnapshot = snapshot.getStringValue(newPath); in old()
277 ph = phf.fromPath(newPath); in old()
282 ph = phf.fromPath(newPath); in old()
292 String valueTrunk = trunk == null ? null : trunk.getStringValue(newPath); in old()
303 ph = ph != null ? ph : phf.fromPath(newPath); in old()
DFilterFactory.java270 String newPath = entry.newValue; in modifyFile() local
271 file.add(newPath, value); in modifyFile()
346 String newPath = RegexLookup.replace(newValue, arguments.value); in modifyFile() local
348 file.add(newPath, value); in modifyFile()
DCLDRModify.java1303 String newPath = parts.toString();
1304 String oldValue = cldrFileToFilter.getStringValue(newPath);
1318 replace(fullpath, newPath, value, "Moving 0/1");
1335 String newPath = parts.toString();
1336 replace(fullpath, newPath, value);
1985 ConfigMatch newPath = entry.get(ConfigKeys.new_path);
1991 … if (pathMatch != null || valueMatch != null || newPath == null || newValue == null) {
1998 String newPathString = newPath.getPath(getResolved());
2006 … if ((pathMatch == null && valueMatch == null) || (newPath == null && newValue == null)) {
2015 if (newPath != null || newValue != null) {
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/
DXMLSource.java207 final private String newPath; field in XMLSource.Alias
218 String newPath = null; in make() local
220 return new Alias(pos, oldPath, newPath, aliasParts); in make()
230 private Alias(int pos, String oldPath, String newPath, String aliasParts) { in Alias() argument
240 if (newPath == null) { in Alias()
241 newPath = oldPath; in Alias()
244 newPath = addRelative(newPath, relativePath2); in Alias()
247 boolean pathsEqual = oldPath.equals(newPath); in Alias()
252 + ", Alias: " + newPath + ", " + newLocaleID); in Alias()
257 this.newPath = newPath; in Alias()
[all …]
DCLDRFile.java3283 String newPath = getNondraftNonaltXPath(path);
3284 pathMap.put(newPath, path);
3584 Output<String> newPath = new Output<>();
3585 if (tryDefault(parts, "gender", null, newPath)) {
3586 return newPath.value;
3589 if (tryDefault(parts, "case", null, newPath)) {
3590 return newPath.value;
3637 …olean tryDefault(XPathParts parts, String attribute, String defaultValue, Output<String> newPath) {
3641 newPath.value = parts.toString();
3642 if (dataSource.getValueAtPath(newPath.value) != null) {
[all …]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPath.java554 GeneralPath newPath = new GeneralPath(); in offset() local
558 newPath.append(iterator, false /*connect*/); in offset()
559 mPath = newPath; in offset()
576 GeneralPath newPath = new GeneralPath(); in transform() local
579 newPath.append(iterator, false /*connect*/); in transform()
583 shadowPath.mPath = newPath; in transform()
585 mPath = newPath; in transform()
/external/clang/lib/ARCMigrate/
DFileRemapper.cpp139 SmallString<200> newPath = StringRef(FE->getName()); in flushToFile() local
140 fs::make_absolute(newPath); in flushToFile()
141 infoOut << newPath << '\n'; in flushToFile()
/external/llvm-project/clang/lib/ARCMigrate/
DFileRemapper.cpp138 SmallString<200> newPath = StringRef(FE->getName()); in flushToFile() local
139 fs::make_absolute(newPath); in flushToFile()
140 infoOut << newPath << '\n'; in flushToFile()
/external/llvm-project/flang/runtime/
Dunit.cpp93 Position position, OwningPtr<char> &&newPath, std::size_t newPathLength, in OpenUnit() argument
103 (!newPath.get() || in OpenUnit()
105 std::memcmp(path(), newPath.get(), newPathLength) == 0))) { in OpenUnit()
107 newPath.reset(); in OpenUnit()
115 set_path(std::move(newPath), newPathLength); in OpenUnit()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestPerf.java138 String newPath = newParts.toString(); in TestXPathPartsWithComparators() local
139 assertEquals("path", path, newPath); in TestXPathPartsWithComparators()
DTestCLDRFile.java186 String newPath = path.replace("[@case=\"accusative\"]", ""); in testExtraPaths() local
187 if (!newPath.contentEquals(path) && !sorted.contains(newPath)) { in testExtraPaths()
188 System.out.println(newPath + "\t" + german.getStringValue(newPath)); in testExtraPaths()
/external/rust/crates/grpcio-sys/grpc/third_party/toolchains/rbe_win2019/
DDockerfile31 …AL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH -Value $newPath
61 …AL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH -Value $newPath
73 …AL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH -Value $newPath
/external/skqp/resources/lua/
Dtest.lua30 local path = Sk.newPath();
/external/skqp/platform_tools/android/apps/skqp/src/main/assets/resources/lua/
Dtest.lua30 local path = Sk.newPath();
/external/dng_sdk/source/
Ddng_xmp_sdk.h216 bool newPath = true);
Ddng_xmp_sdk.cpp1621 bool newPath) in DocOpsPrepareForSave() argument
1638 newPath ? "new path" : "old path"); in DocOpsPrepareForSave()
Ddng_xmp.h315 bool newPath = true);
/external/skia/modules/pathkit/
Dpathkit_wasm_bindings.cpp335 void ApplyAddPath(SkPath& orig, const SkPath& newPath, in ApplyAddPath() argument
342 orig.addPath(newPath, m); in ApplyAddPath()
/external/skqp/modules/pathkit/
Dpathkit_wasm_bindings.cpp348 void ApplyAddPath(SkPath& orig, const SkPath& newPath, in ApplyAddPath() argument
355 orig.addPath(newPath, m); in ApplyAddPath()
/external/skia/site/docs/user/modules/
Dpathkit.md713 let newPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
714 newPath.setAttribute('stroke', 'green');
715 newPath.setAttribute('fill', 'white');
716 newPath.setAttribute('d', box.toSVGString());
717 svg.appendChild(newPath);

12