Home
last modified time | relevance | path

Searched refs:locator (Results 1 – 25 of 66) sorted by relevance

123

/external/apache-xml/src/main/java/org/apache/xml/dtm/
DDTMException.java42 SourceLocator locator; field in DTMException
51 return locator; in getLocator()
61 locator = location; in setLocator()
140 this.locator = null; in DTMException()
153 this.locator = null; in DTMException()
173 this.locator = null; in DTMException()
186 public DTMException(String message, SourceLocator locator) { in DTMException() argument
191 this.locator = locator; in DTMException()
202 public DTMException(String message, SourceLocator locator, in DTMException() argument
208 this.locator = locator; in DTMException()
[all …]
DDTMConfigurationException.java82 SourceLocator locator) { in DTMConfigurationException() argument
83 super(message, locator); in DTMConfigurationException()
95 SourceLocator locator, in DTMConfigurationException() argument
97 super(message, locator, e); in DTMConfigurationException()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DSAXSourceLocator.java57 public SAXSourceLocator(Locator locator) in SAXSourceLocator() argument
59 m_locator = locator; in SAXSourceLocator()
60 this.setColumnNumber(locator.getColumnNumber()); in SAXSourceLocator()
61 this.setLineNumber(locator.getLineNumber()); in SAXSourceLocator()
62 this.setPublicId(locator.getPublicId()); in SAXSourceLocator()
63 this.setSystemId(locator.getSystemId()); in SAXSourceLocator()
72 public SAXSourceLocator(javax.xml.transform.SourceLocator locator) in SAXSourceLocator() argument
75 this.setColumnNumber(locator.getColumnNumber()); in SAXSourceLocator()
76 this.setLineNumber(locator.getLineNumber()); in SAXSourceLocator()
77 this.setPublicId(locator.getPublicId()); in SAXSourceLocator()
[all …]
DDefaultErrorHandler.java281 SourceLocator locator = null; in ensureLocationSet() local
289 locator = new SAXSourceLocator((SAXParseException)cause); in ensureLocationSet()
295 locator = causeLocator; in ensureLocationSet()
307 exception.setLocator(locator); in ensureLocationSet()
322 SourceLocator locator = null; in printLocation() local
330 locator = new SAXSourceLocator((SAXParseException)cause); in printLocation()
336 locator = causeLocator; in printLocation()
349 if(null != locator) in printLocation()
352 String id = (null != locator.getPublicId() ) in printLocation()
353 ? locator.getPublicId() in printLocation()
[all …]
/external/v8/src/
Dsplay-tree-inl.h45 bool SplayTree<Config, Allocator>::Insert(const Key& key, Locator* locator) { in Insert() argument
56 locator->bind(root_); in Insert()
63 locator->bind(root_); in Insert()
93 bool SplayTree<Config, Allocator>::Find(const Key& key, Locator* locator) { in Find() argument
95 locator->bind(root_); in Find()
105 Locator* locator) { in FindGreatestLessThan() argument
115 locator->bind(root_); in FindGreatestLessThan()
120 bool result = FindGreatest(locator); in FindGreatestLessThan()
129 Locator* locator) { in FindLeastGreaterThan() argument
139 locator->bind(root_); in FindLeastGreaterThan()
[all …]
Dsplay-tree.h72 bool Insert(const Key& key, Locator* locator);
77 bool Find(const Key& key, Locator* locator);
81 bool FindGreatestLessThan(const Key& key, Locator* locator);
84 bool FindGreatest(Locator* locator);
88 bool FindLeastGreaterThan(const Key& key, Locator* locator);
91 bool FindLeast(Locator* locator);
/external/apache-xml/src/main/java/org/apache/xpath/
DSourceTreeManager.java119 String base, String urlString, SourceLocator locator) in resolveURI() argument
238 String base, String urlString, SourceLocator locator, XPathContext xctxt) in getSourceTree() argument
245 Source source = this.resolveURI(base, urlString, locator); in getSourceTree()
248 return getSourceTree(source, locator, xctxt); in getSourceTree()
252 throw new TransformerException(ioe.getMessage(), locator, ioe); in getSourceTree()
272 public int getSourceTree(Source source, SourceLocator locator, XPathContext xctxt) in getSourceTree() argument
281 n = parseToNode(source, locator, xctxt); in getSourceTree()
300 public int parseToNode(Source source, SourceLocator locator, XPathContext xctxt) in parseToNode() argument
322 throw new TransformerException(e.getMessage(), locator, e); in parseToNode()
341 public static XMLReader getXMLReader(Source inputSource, SourceLocator locator) in getXMLReader() argument
[all …]
DXPath.java164 String exprString, SourceLocator locator, PrefixResolver prefixResolver, int type, in XPath() argument
174 XPathParser parser = new XPathParser(errorListener, locator); in XPath()
175 Compiler compiler = new Compiler(errorListener, locator, m_funcTable); in XPath()
190 if((null != locator) && locator instanceof ExpressionNode) in XPath()
192 expr.exprSetParent((ExpressionNode)locator); in XPath()
212 String exprString, SourceLocator locator, in XPath() argument
223 XPathParser parser = new XPathParser(errorListener, locator); in XPath()
224 Compiler compiler = new Compiler(errorListener, locator, m_funcTable); in XPath()
242 if((null != locator) && locator instanceof ExpressionNode) in XPath()
244 expr.exprSetParent((ExpressionNode)locator); in XPath()
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
DStylesheetHandler.java409 public void setDocumentLocator(Locator locator) in setDocumentLocator() argument
413 m_stylesheetLocatorStack.push(new SAXSourceLocator(locator)); in setDocumentLocator()
855 SAXSourceLocator locator = getLocator(); in warn() local
861 handler.warning(new TransformerException(formattedMsg, locator)); in warn()
901 SAXSourceLocator locator = getLocator(); in error() local
908 ? new TransformerException(msg, locator) in error()
909 : new TransformerException(msg, locator, e); in error()
968 SAXSourceLocator locator = getLocator(); in warning() local
973 handler.warning(new TransformerException(formattedMsg, locator)); in warning()
996 SAXSourceLocator locator = getLocator(); in error() local
[all …]
DProcessorLRE.java103 Locator locator = handler.getLocator(); in startElement() local
104 if(null != locator) in startElement()
106 slocator.setLineNumber(locator.getLineNumber()); in startElement()
107 slocator.setColumnNumber(locator.getColumnNumber()); in startElement()
108 slocator.setPublicId(locator.getPublicId()); in startElement()
109 slocator.setSystemId(locator.getSystemId()); in startElement()
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
DImplHandler.java145 AssetLocator locator = (AssetLocator) local.get(); in tryLocate() local
147 locator.setRootPath((String) local.getPath()); in tryLocate()
149 AssetInfo info = locator.locate(owner, key); in tryLocate()
200 ImplThreadLocal locator = it.next(); in removeLocator() local
201 if (locator.getPath().equals(rootPath) && in removeLocator()
202 locator.getTypeClass().equals(locatorType)){ in removeLocator()
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemTemplate.java95 public void setLocaterInfo(SourceLocator locator) in setLocaterInfo() argument
98 m_publicId = locator.getPublicId(); in setLocaterInfo()
99 m_systemId = locator.getSystemId(); in setLocaterInfo()
101 super.setLocaterInfo(locator); in setLocaterInfo()
DFuncDocument.java326 SourceLocator locator = spe2.getLocator(); in getDoc()
327 if ((null != locator) && (null != locator.getSystemId())) in getDoc()
328 diagnosticsWriter.println(" ID: " + locator.getSystemId() in getDoc()
329 + " Line #" + locator.getLineNumber() in getDoc()
331 + locator.getColumnNumber()); in getDoc()
DStylesheet.java1226 public void setLocaterInfo(SourceLocator locator) in setLocaterInfo() argument
1229 if (null != locator) in setLocaterInfo()
1231 m_publicId = locator.getPublicId(); in setLocaterInfo()
1232 m_systemId = locator.getSystemId(); in setLocaterInfo()
1247 super.setLocaterInfo(locator); in setLocaterInfo()
/external/sonivox/arm-wt-22k/host_src/
Deas_hostmm.c238 EAS_RESULT EAS_HWOpenFile (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_LOCATOR locator, EAS_FILE_HANDLE… in EAS_HWOpenFile() argument
258 if (locator->path) { in EAS_HWOpenFile()
260 if ((fd = open(locator->path, O_RDONLY)) < 0) { in EAS_HWOpenFile()
265 fd = dup(locator->fd); in EAS_HWOpenFile()
269 if (locator->length == 0) { in EAS_HWOpenFile()
282 file->fileSize = (EAS_I32) locator->length; in EAS_HWOpenFile()
286 file->offset = locator->offset; in EAS_HWOpenFile()
/external/webkit/LayoutTests/dom/xhtml/level3/core/
Dcheckcharacternormalization02.js107 var locator;
144 locator = error.location;
146 relatedNode = locator.relatedNode;
Dwellformed01.js100 var locator;
150 locator = error.location;
152 relatedNode = locator.relatedNode;
Dinfoset07.js99 var locator;
151 locator = error.location;
153 relatedNode = locator.relatedNode;
Dwellformed03.js99 var locator;
151 locator = error.location;
153 relatedNode = locator.relatedNode;
Dcanonicalform06.js100 var locator;
156 locator = error.location;
158 relatedNode = locator.relatedNode;
Dinfoset06.js100 var locator;
150 locator = error.location;
152 relatedNode = locator.relatedNode;
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DTransformerHandlerImpl.java318 public void setDocumentLocator(Locator locator) in setDocumentLocator() argument
323 + locator.getSystemId()); in setDocumentLocator()
325 this.m_locator = locator; in setDocumentLocator()
329 setSystemId(locator.getSystemId()); in setDocumentLocator()
334 m_contentHandler.setDocumentLocator(locator); in setDocumentLocator()
/external/webkit/Source/WebCore/rendering/
Dbreak_lines.cpp147 TextBreakLocatorRef locator = 0; in lineBreakLocator() local
148 UCCreateTextBreakLocator(0, 0, kUCTextBreakLineMask, &locator); in lineBreakLocator()
149 return locator; in lineBreakLocator()
/external/eyes-free/AccessCheck/src/com/android/accessibility/
DAccessibilityValidationContentHandler.java105 public void setDocumentLocator(Locator locator) { in setDocumentLocator() argument
106 mLocator = locator; in setDocumentLocator()
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
DSAX1ParserAdapter.java152 public void setDocumentLocator(Locator locator) in setDocumentLocator() argument
154 docHandler.setDocumentLocator(locator); in setDocumentLocator()

123