Home
last modified time | relevance | path

Searched refs:newDoc (Results 1 – 6 of 6) 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/libxml2/
Dparser.c12335 xmlDocPtr newDoc; in xmlParseCtxtExternalEntity() local
12364 newDoc = xmlNewDoc(BAD_CAST "1.0"); in xmlParseCtxtExternalEntity()
12365 if (newDoc == NULL) { in xmlParseCtxtExternalEntity()
12369 newDoc->properties = XML_DOC_INTERNAL; in xmlParseCtxtExternalEntity()
12371 newDoc->dict = ctx->myDoc->dict; in xmlParseCtxtExternalEntity()
12372 xmlDictReference(newDoc->dict); in xmlParseCtxtExternalEntity()
12375 newDoc->intSubset = ctx->myDoc->intSubset; in xmlParseCtxtExternalEntity()
12376 newDoc->extSubset = ctx->myDoc->extSubset; in xmlParseCtxtExternalEntity()
12379 newDoc->URL = xmlStrdup(ctx->myDoc->URL); in xmlParseCtxtExternalEntity()
12381 newRoot = xmlNewDocNode(newDoc, NULL, BAD_CAST "pseudoroot", NULL); in xmlParseCtxtExternalEntity()
[all …]
/external/chromium_org/third_party/libxml/src/
Dparser.c12343 xmlDocPtr newDoc; in xmlParseCtxtExternalEntity() local
12372 newDoc = xmlNewDoc(BAD_CAST "1.0"); in xmlParseCtxtExternalEntity()
12373 if (newDoc == NULL) { in xmlParseCtxtExternalEntity()
12377 newDoc->properties = XML_DOC_INTERNAL; in xmlParseCtxtExternalEntity()
12379 newDoc->dict = ctx->myDoc->dict; in xmlParseCtxtExternalEntity()
12380 xmlDictReference(newDoc->dict); in xmlParseCtxtExternalEntity()
12383 newDoc->intSubset = ctx->myDoc->intSubset; in xmlParseCtxtExternalEntity()
12384 newDoc->extSubset = ctx->myDoc->extSubset; in xmlParseCtxtExternalEntity()
12387 newDoc->URL = xmlStrdup(ctx->myDoc->URL); in xmlParseCtxtExternalEntity()
12389 newRoot = xmlNewDocNode(newDoc, NULL, BAD_CAST "pseudoroot", NULL); in xmlParseCtxtExternalEntity()
[all …]
/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()