Home
last modified time | relevance | path

Searched refs:newDoc (Results 1 – 14 of 14) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xalan/templates/
DFuncDocument.java194 int newDoc = getDoc(xctxt, context, ref.toString(), base); in execute() local
197 if (DTM.NULL != newDoc) in execute()
200 if (!mnl.contains(newDoc)) in execute()
202 mnl.addElement(newDoc); in execute()
206 if (null == iterator || newDoc == DTM.NULL) in execute()
234 int newDoc; in getDoc() local
238 newDoc = treeMgr.getNode(source); in getDoc()
250 if (DTM.NULL != newDoc) in getDoc()
251 return newDoc; in getDoc()
275 newDoc = treeMgr.getSourceTree(source, xctxt.getSAXLocator(), xctxt); in getDoc()
[all …]
/external/replicaisland/tools/
DExtractPoints.js187 var newDoc = app.documents.add(600, 700, 72.0, "Edge Output", variable
192 var pathLayer = newDoc.artLayers.add();
193 newDoc.activeLayer = pathLayer;
233 newDoc.selection.select(lineArray);
234 newDoc.selection.stroke(black, 2);
260 newDoc.selection.select(tileCenterArray);
261 newDoc.selection.fill(redColor);
273 newDoc.selection.select(centerArray);
274 newDoc.selection.fill(greenColor);
283 var textLayer = newDoc.artLayers.add();
/external/jdiff/src/jdiff/
DDiff.java22 String oldDoc, String newDoc, in saveDocDiffs() argument
27 if (oldDoc == null || newDoc == null) { in saveDocDiffs()
32 generateDiffs(pkgName, className, oldDoc, newDoc, id, title); in saveDocDiffs()
43 String oldDoc, String newDoc, in generateDiffs() argument
46 String[] newDocWords = parseDoc(newDoc); in generateDiffs()
DAPIComparator.java814 public static boolean docChanged(String oldDoc, String newDoc) { in docChanged() argument
817 if (oldDoc == null && newDoc != null) in docChanged()
819 if (oldDoc != null && newDoc == null) in docChanged()
821 if (oldDoc != null && newDoc != null && oldDoc.compareTo(newDoc) != 0) in docChanged()
/external/libxml2/python/tests/
Dxpathret.py11 mydoc = libxml2.newDoc("1.0")
Dnsdel.py46 doc = libxml2.newDoc("1.0")
Dbuild.py8 doc = libxml2.newDoc("1.0")
/external/cronet/third_party/libxml/src/
Dparser.c12593 xmlDocPtr newDoc; in xmlParseExternalEntityPrivate() local
12623 newDoc = xmlNewDoc(BAD_CAST "1.0"); in xmlParseExternalEntityPrivate()
12624 if (newDoc == NULL) { in xmlParseExternalEntityPrivate()
12628 newDoc->properties = XML_DOC_INTERNAL; in xmlParseExternalEntityPrivate()
12630 newDoc->intSubset = doc->intSubset; in xmlParseExternalEntityPrivate()
12631 newDoc->extSubset = doc->extSubset; in xmlParseExternalEntityPrivate()
12633 newDoc->dict = doc->dict; in xmlParseExternalEntityPrivate()
12634 xmlDictReference(newDoc->dict); in xmlParseExternalEntityPrivate()
12637 newDoc->URL = xmlStrdup(doc->URL); in xmlParseExternalEntityPrivate()
12640 newRoot = xmlNewDocNode(newDoc, NULL, BAD_CAST "pseudoroot", NULL); in xmlParseExternalEntityPrivate()
[all …]
/external/libxml2/
Dparser.c12829 xmlDocPtr newDoc; in xmlParseExternalEntityPrivate() local
12859 newDoc = xmlNewDoc(BAD_CAST "1.0"); in xmlParseExternalEntityPrivate()
12860 if (newDoc == NULL) { in xmlParseExternalEntityPrivate()
12864 newDoc->properties = XML_DOC_INTERNAL; in xmlParseExternalEntityPrivate()
12866 newDoc->intSubset = doc->intSubset; in xmlParseExternalEntityPrivate()
12867 newDoc->extSubset = doc->extSubset; in xmlParseExternalEntityPrivate()
12869 newDoc->dict = doc->dict; in xmlParseExternalEntityPrivate()
12870 xmlDictReference(newDoc->dict); in xmlParseExternalEntityPrivate()
12873 newDoc->URL = xmlStrdup(doc->URL); in xmlParseExternalEntityPrivate()
12876 newRoot = xmlNewDocNode(newDoc, NULL, BAD_CAST "pseudoroot", NULL); in xmlParseExternalEntityPrivate()
[all …]
/external/pdfium/testing/resources/javascript/
Dapp_methods_expected.txt35 Alert: PASS: app.newDoc() threw app.newDoc: Operation not supported.
Dapp_methods.in63 expectError("app.newDoc()");
/external/pdfium/fxjs/
Dcjs_app.h59 JS_STATIC_METHOD(newDoc, CJS_App)
138 CJS_Result newDoc(CJS_Runtime* pRuntime,
Dcjs_app.cpp517 CJS_Result CJS_App::newDoc(CJS_Runtime* pRuntime, in newDoc() function in CJS_App
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DLDMLUtilities.java920 … Document newDoc = getFullyResolvedLDML(sourceDir, source, false, true, false, ignoreDraft, stack); in resolveAliases() local
921 replacementList = getNodeListAsArray(newDoc, path); in resolveAliases()