Searched refs:locator (Results 1 - 25 of 98) sorted by relevance

1234

/external/chromium_org/chrome/test/webdriver/commands/
H A Dfind_element_commands.cc29 std::string locator, query; local
30 if (!GetStringParameter("using", &locator) ||
38 if (locator == "class name") {
39 locator = LocatorType::kClassName;
40 } else if (locator == "css selector") {
41 locator = LocatorType::kCss;
42 } else if (locator == "link text") {
43 locator = LocatorType::kLinkText;
44 } else if (locator == "partial link text") {
45 locator
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DSAXSourceLocator.java55 * @param locator Source locator
57 public SAXSourceLocator(Locator locator) argument
59 m_locator = locator;
60 this.setColumnNumber(locator.getColumnNumber());
61 this.setLineNumber(locator.getLineNumber());
62 this.setPublicId(locator.getPublicId());
63 this.setSystemId(locator.getSystemId());
70 * @param locator Source locator
72 SAXSourceLocator(javax.xml.transform.SourceLocator locator) argument
[all...]
H A DDefaultErrorHandler.java280 // SourceLocator locator = exception.getLocator();
281 SourceLocator locator = null;
284 // Try to find the locator closest to the cause.
289 locator = new SAXSourceLocator((SAXParseException)cause);
295 locator = causeLocator;
307 exception.setLocator(locator);
322 SourceLocator locator = null;
325 // Try to find the locator closest to the cause.
330 locator = new SAXSourceLocator((SAXParseException)cause);
336 locator
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMConfigurationException.java79 * @param locator The locator object for the error or warning.
82 SourceLocator locator) {
83 super(message, locator);
91 * @param locator The locator object for the error or warning.
95 SourceLocator locator,
97 super(message, locator, e);
81 DTMConfigurationException(String message, SourceLocator locator) argument
94 DTMConfigurationException(String message, SourceLocator locator, Throwable e) argument
H A DDTMException.java40 /** Field locator specifies where the error occured.
42 SourceLocator locator; field in class:DTMException
51 return locator;
61 locator = location;
140 this.locator = null;
153 this.locator = null;
173 this.locator = null;
184 * @param locator The locator object for the error or warning.
186 public DTMException(String message, SourceLocator locator) { argument
202 DTMException(String message, SourceLocator locator, Throwable e) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathFactory.java39 * @param locator The location of the expression string, mainly for diagnostic
48 XPath create(String exprString, SourceLocator locator, argument
H A DSourceTreeManager.java119 String base, String urlString, SourceLocator locator)
230 * @param locator The location of the caller, for diagnostic purposes.
238 String base, String urlString, SourceLocator locator, XPathContext xctxt)
245 Source source = this.resolveURI(base, urlString, locator);
248 return getSourceTree(source, locator, xctxt);
252 throw new TransformerException(ioe.getMessage(), locator, ioe);
257 throw new TransformerException(te.getMessage(), locator, te);
265 * @param locator The location of the caller, for diagnostic purposes.
272 public int getSourceTree(Source source, SourceLocator locator, XPathContext xctxt) argument
281 n = parseToNode(source, locator, xctx
118 resolveURI( String base, String urlString, SourceLocator locator) argument
237 getSourceTree( String base, String urlString, SourceLocator locator, XPathContext xctxt) argument
300 parseToNode(Source source, SourceLocator locator, XPathContext xctxt) argument
341 getXMLReader(Source inputSource, SourceLocator locator) argument
[all...]
H A DXPath.java155 * @param locator The location of the expression, may be null.
164 String exprString, SourceLocator locator, PrefixResolver prefixResolver, int type,
174 XPathParser parser = new XPathParser(errorListener, locator);
175 Compiler compiler = new Compiler(errorListener, locator, m_funcTable);
190 if((null != locator) && locator instanceof ExpressionNode)
192 expr.exprSetParent((ExpressionNode)locator);
203 * @param locator The location of the expression, may be null.
212 String exprString, SourceLocator locator,
223 XPathParser parser = new XPathParser(errorListener, locator);
163 XPath( String exprString, SourceLocator locator, PrefixResolver prefixResolver, int type, ErrorListener errorListener) argument
211 XPath( String exprString, SourceLocator locator, PrefixResolver prefixResolver, int type, ErrorListener errorListener, FunctionTable aTable) argument
262 XPath( String exprString, SourceLocator locator, PrefixResolver prefixResolver, int type) argument
[all...]
/external/chromium_org/chrome/test/automation/
H A Dautomation_json_requests.h103 // Used to locate a WebView. The same locator may locate different WebViews
109 // Creates a locator for locating the given tab.
112 // Creates a locator for locating the given view.
115 // Creates an invalid locator.
119 // Updates the given dictionary to include the given locator information.
120 // If this locator is a view ID, |view_id_key| will be the name of the key
204 const WebViewLocator& locator,
215 const WebViewLocator& locator,
225 const WebViewLocator& locator,
232 const WebViewLocator& locator,
[all...]
H A Dautomation_json_requests.cc153 WebViewLocator locator; local
154 locator.type_ = kTypeIndexPair;
155 locator.locator_.index_pair.browser_index = browser_index;
156 locator.locator_.index_pair.tab_index = tab_index;
157 return locator;
162 WebViewLocator locator; local
163 locator.type_ = kTypeViewId;
164 locator.locator_.view_id = view_id;
165 return locator;
259 const WebViewLocator& locator,
257 SendNavigateToURLJSONRequest( AutomationMessageSender* sender, const WebViewLocator& locator, const std::string& url, int navigation_count, AutomationMsg_NavigationResponseValues* nav_response, Error* error) argument
282 SendExecuteJavascriptJSONRequest( AutomationMessageSender* sender, const WebViewLocator& locator, const std::string& frame_xpath, const std::string& javascript, scoped_ptr<Value>* result, Error* error) argument
318 SendGoForwardJSONRequest( AutomationMessageSender* sender, const WebViewLocator& locator, Error* error) argument
329 SendGoBackJSONRequest( AutomationMessageSender* sender, const WebViewLocator& locator, Error* error) argument
340 SendReloadJSONRequest( AutomationMessageSender* sender, const WebViewLocator& locator, Error* error) argument
351 SendCaptureEntirePageJSONRequestDeprecated( AutomationMessageSender* sender, const WebViewLocator& locator, const base::FilePath& path, Error* error) argument
366 SendHeapProfilerDumpJSONRequestDeprecated( AutomationMessageSender* sender, const WebViewLocator& locator, const std::string& reason, Error* error) argument
515 SendCloseViewJSONRequest( AutomationMessageSender* sender, const WebViewLocator& locator, Error* error) argument
526 SendMouseMoveJSONRequestDeprecated( AutomationMessageSender* sender, const WebViewLocator& locator, int x, int y, Error* error) argument
541 SendMouseClickJSONRequestDeprecated( AutomationMessageSender* sender, const WebViewLocator& locator, automation::MouseButton button, int x, int y, Error* error) argument
558 SendMouseDragJSONRequestDeprecated( AutomationMessageSender* sender, const WebViewLocator& locator, int start_x, int start_y, int end_x, int end_y, Error* error) argument
577 SendMouseButtonDownJSONRequestDeprecated( AutomationMessageSender* sender, const WebViewLocator& locator, int x, int y, Error* error) argument
592 SendMouseButtonUpJSONRequestDeprecated( AutomationMessageSender* sender, const WebViewLocator& locator, int x, int y, Error* error) argument
607 SendMouseDoubleClickJSONRequestDeprecated( AutomationMessageSender* sender, const WebViewLocator& locator, int x, int y, Error* error) argument
622 SendWebKeyEventJSONRequest( AutomationMessageSender* sender, const WebViewLocator& locator, const WebKeyEvent& key_event, Error* error) argument
641 SendNativeKeyEventJSONRequest( AutomationMessageSender* sender, const WebViewLocator& locator, ui::KeyboardCode key_code, int modifiers, Error* error) argument
656 SendWebMouseEventJSONRequestDeprecated( AutomationMessageSender* sender, const WebViewLocator& locator, const WebMouseEvent& mouse_event, automation::Error* error) argument
674 SendDragAndDropFilePathsJSONRequest( AutomationMessageSender* sender, const WebViewLocator& locator, int x, int y, const std::vector<base::FilePath::StringType>& paths, Error* error) argument
[all...]
/external/chromium_org/v8/src/
H A Deffects.h107 Locator locator; local
108 return this->Find(var, &locator)
109 ? locator.value() : Effect::Unknown(Base::isolate());
120 Locator locator; local
121 if (!this->Insert(var, &locator)) {
122 effect = Effect::Seq(locator.value(), effect, Base::isolate());
124 locator.set_value(effect);
134 Locator locator; local
135 if (!this->Insert(var, &locator)) {
136 effect = Effect::Alt(locator
176 Locator locator; local
225 Find(Var var, Locator* locator) argument
229 Insert(Var var, Locator* locator) argument
294 Find(Var var, Locator* locator) argument
320 Insert(Var var, Locator* locator) argument
[all...]
H A Dsplay-tree-inl.h46 Locator* locator) {
57 locator->bind(root_);
64 locator->bind(root_);
100 bool SplayTree<Config, Allocator>::Find(const Key& key, Locator* locator) { argument
102 locator->bind(root_);
112 Locator* locator) {
122 locator->bind(root_);
127 bool result = FindGreatest(locator);
136 Locator* locator) {
146 locator
45 Insert(const Key& key, Locator* locator) argument
111 FindGreatestLessThan(const Key& key, Locator* locator) argument
135 FindLeastGreaterThan(const Key& key, Locator* locator) argument
159 FindGreatest(Locator* locator) argument
171 FindLeast(Locator* locator) argument
[all...]
H A Dsplay-tree.h83 // true if a node was inserted, otherwise false. If found the locator
85 bool Insert(const Key& key, Locator* locator);
88 // otherwise false. If the node is found the locator is enabled and
90 bool Find(const Key& key, Locator* locator);
94 bool FindGreatestLessThan(const Key& key, Locator* locator);
97 bool FindGreatest(Locator* locator);
101 bool FindLeastGreaterThan(const Key& key, Locator* locator);
104 bool FindLeast(Locator* locator);
157 // A locator provides access to a node in the tree without actually
H A Dprofile-generator.cc420 CodeTree::Locator locator; local
421 tree_.Insert(addr, &locator);
422 locator.set_value(CodeEntryInfo(entry, size));
430 CodeTree::Locator locator; local
431 if (!tree_.FindGreatestLessThan(addr, &locator)) break;
432 Address start2 = locator.key(), end2 = start2 + locator.value().size;
441 CodeTree::Locator locator; local
442 if (tree_.FindGreatestLessThan(addr, &locator)) {
443 // locator
457 CodeTree::Locator locator; local
[all...]
/external/v8/src/
H A Dsplay-tree-inl.h45 bool SplayTree<Config, Allocator>::Insert(const Key& key, Locator* locator) { argument
56 locator->bind(root_);
63 locator->bind(root_);
93 bool SplayTree<Config, Allocator>::Find(const Key& key, Locator* locator) { argument
95 locator->bind(root_);
105 Locator* locator) {
115 locator->bind(root_);
120 bool result = FindGreatest(locator);
129 Locator* locator) {
139 locator
104 FindGreatestLessThan(const Key& key, Locator* locator) argument
128 FindLeastGreaterThan(const Key& key, Locator* locator) argument
152 FindGreatest(Locator* locator) argument
164 FindLeast(Locator* locator) argument
[all...]
H A Dsplay-tree.h70 // true if a node was inserted, otherwise false. If found the locator
72 bool Insert(const Key& key, Locator* locator);
75 // otherwise false. If the node is found the locator is enabled and
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);
136 // A locator provides access to a node in the tree without actually
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DImplHandler.java42 * <code>ImplHandler</code> manages the asset loader and asset locator
46 * locator object in a thread local.
95 logger.log(Level.SEVERE,"Cannot create locator of type {0}, does"
100 logger.log(Level.SEVERE,"Cannot create locator of type {0}, "
145 AssetLocator locator = (AssetLocator) local.get();
147 locator.setRootPath((String) local.getPath());
149 AssetInfo info = locator.locate(owner, key);
200 ImplThreadLocal locator = it.next();
201 if (locator.getPath().equals(rootPath) &&
202 locator
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemTemplate.java93 * @param locator SourceLocator holding location information
95 public void setLocaterInfo(SourceLocator locator) argument
98 m_publicId = locator.getPublicId();
99 m_systemId = locator.getSystemId();
101 super.setLocaterInfo(locator);
H A DFuncDocument.java326 SourceLocator locator = spe2.getLocator();
327 if ((null != locator) && (null != locator.getSystemId()))
328 diagnosticsWriter.println(" ID: " + locator.getSystemId()
329 + " Line #" + locator.getLineNumber()
331 + locator.getColumnNumber());
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DStylesheetHandler.java400 * This is called by the parser to push a locator for the
405 * @param locator A locator for all SAX document events.
409 public void setDocumentLocator(Locator locator) argument
412 // System.out.println("pushing locator for: "+locator.getSystemId());
413 m_stylesheetLocatorStack.push(new SAXSourceLocator(locator));
855 SAXSourceLocator locator = getLocator();
861 handler.warning(new TransformerException(formattedMsg, locator));
901 SAXSourceLocator locator
[all...]
H A DProcessorLRE.java101 // ***** Note that we're assigning an empty locator. Is this necessary?
103 Locator locator = handler.getLocator();
104 if(null != locator)
106 slocator.setLineNumber(locator.getLineNumber());
107 slocator.setColumnNumber(locator.getColumnNumber());
108 slocator.setPublicId(locator.getPublicId());
109 slocator.setSystemId(locator.getSystemId());
/external/sonivox/arm-wt-22k/host_src/
H A Deas_hostmm.c9 * The file locator (EAS_FILE_LOCATOR) handle passed to
237 EAS_RESULT EAS_HWOpenFile (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_LOCATOR locator, EAS_FILE_HANDLE *pFile, EAS_FILE_MODE mode) argument
257 if (locator->path) {
259 if ((fd = open(locator->path, O_RDONLY)) < 0) {
264 fd = dup(locator->fd);
268 if (locator->length == 0) {
281 file->fileSize = (EAS_I32) locator->length;
285 file->offset = locator->offset;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dfiles.py142 `locator` is a FileLocator that is used to canonicalize the results.
145 def __init__(self, locator=None):
147 self.locator = locator
203 if self.locator:
204 new = self.locator.canonical_filename(new)
/external/eyes-free/AccessCheck/src/com/android/accessibility/
H A DAccessibilityValidationContentHandler.java105 public void setDocumentLocator(Locator locator) { argument
106 mLocator = locator;
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
H A DSAX1ParserAdapter.java152 public void setDocumentLocator(Locator locator) argument
154 docHandler.setDocumentLocator(locator);

Completed in 552 milliseconds

1234