Searched refs:selectors (Results 1 - 25 of 37) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentFragment.idl25 [RaisesException] Element querySelector(DOMString selectors);
26 [RaisesException] NodeList querySelectorAll(DOMString selectors);
H A DSelectorQuery.cpp234 // The travseralRoots may be empty, regardless of the returned bool value, if this method finds that the selectors won't
364 // The returned Node may be 0, regardless of matchTraverseRoot, if this method finds that the selectors won't
426 // Many web developers uses querySelector with these simple selectors.
483 SelectorQuery* SelectorQueryCache::add(const AtomicString& selectors, Document* document, ExceptionState& es) argument
485 HashMap<AtomicString, OwnPtr<SelectorQuery> >::iterator it = m_entries.find(selectors);
491 parser.parseSelector(selectors, selectorList);
510 m_entries.add(selectors, selectorQuery.release());
H A DElement.idl102 [RaisesException] Element querySelector(DOMString selectors);
103 [RaisesException] NodeList querySelectorAll(DOMString selectors);
106 [RaisesException] boolean webkitMatchesSelector([Default=Undefined] optional DOMString selectors);
H A DDocument.idl163 [RaisesException] Element querySelector(DOMString selectors);
164 [RaisesException] NodeList querySelectorAll(DOMString selectors);
H A DNode.cpp1344 PassRefPtr<Element> Node::querySelector(const AtomicString& selectors, ExceptionState& es) argument
1346 if (selectors.isEmpty()) {
1351 SelectorQuery* selectorQuery = document()->selectorQueryCache()->add(selectors, document(), es);
1357 PassRefPtr<NodeList> Node::querySelectorAll(const AtomicString& selectors, ExceptionState& es) argument
1359 if (selectors.isEmpty()) {
1364 SelectorQuery* selectorQuery = document()->selectorQueryCache()->add(selectors, document(), es);
/external/chromium-trace/trace-viewer/src/tracing/
H A Drecord_selection_dialog.css51 .group-selectors {
56 .group-selectors button {
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStyleRule.h109 void parserAdoptSelectorVector(Vector<OwnPtr<CSSParserSelector> >& selectors) { m_selectorList.adoptSelectorVector(selectors); } argument
110 void wrapperAdoptSelectorList(CSSSelectorList& selectors) { m_selectorList.adopt(selectors); } argument
161 void parserAdoptSelectorVector(Vector<OwnPtr<CSSParserSelector> >& selectors) { m_selectorList.adoptSelectorVector(selectors); } argument
162 void wrapperAdoptSelectorList(CSSSelectorList& selectors) { m_selectorList.adopt(selectors); } argument
229 static PassRefPtr<StyleRuleRegion> create(Vector<OwnPtr<CSSParserSelector> >* selectors, Vector<RefPtr<StyleRuleBase> >& adoptRules) argument
231 return adoptRef(new StyleRuleRegion(selectors, adoptRule
[all...]
H A DStyleRule.cpp328 StyleRuleRegion::StyleRuleRegion(Vector<OwnPtr<CSSParserSelector> >* selectors, Vector<RefPtr<StyleRuleBase> >& adoptRules) argument
332 m_selectorList.adoptSelectorVector(*selectors);
H A DCSSParser.h318 StyleRuleBase* createStyleRule(Vector<OwnPtr<CSSParserSelector> >* selectors);
359 void setReusableRegionSelectorVector(Vector<OwnPtr<CSSParserSelector> >* selectors);
/external/chromium_org/chrome/browser/chromeos/drive/
H A Ddrive_app_registry.cc236 const ScopedVector<std::string>& selectors,
238 for (ScopedVector<std::string>::const_iterator it = selectors.begin();
239 it != selectors.end(); ++it) {
229 AddAppSelectorList( const GURL& product_link, const google_apis::InstalledApp::IconList& app_icons, const google_apis::InstalledApp::IconList& document_icons, const std::string& object_type, const std::string& app_id, bool is_primary_selector, const ScopedVector<std::string>& selectors, DriveAppFileSelectorMap* map) argument
H A Ddrive_app_registry.h101 // trigger on file double-click events. Non-default selectors only show up
106 // Defines mapping between file content type selectors (extensions, MIME
120 // Helper function for loading web application file |selectors| into
129 const ScopedVector<std::string>& selectors,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jar ... ant/types/resources/comparators/ org/apache/tools/ant/types/resources/selectors/ org/apache/tools/ant/types/selectors/ org/apache/tools/ant ...
/external/qemu/distrib/sdl-1.2.15/src/cpuinfo/
H A DSDL_cpuinfo.c363 int selectors[2] = { CTL_HW, HW_VECTORUNIT };
366 int error = sysctl(selectors, 2, &hasVectorUnit, &length, NULL, 0);
/external/valgrind/main/memcheck/tests/
H A Dvarinfo6.stdout.exp9 bytes: mapping 19, selectors 66, code lengths 134, codes 6465
H A Dorigin5-bz2.stdout.exp10 bytes: mapping 19, selectors 66, code lengths 134, codes 6465
H A Dvcpu_bz2.stdout.exp9 bytes: mapping 19, selectors 66, code lengths 134, codes 6465
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DAuditRules.js348 var selectors = [];
356 selectors.push(selectorText);
418 function documentLoaded(selectors, document) {
420 for (var i = 0; i < selectors.length; ++i) {
423 var effectiveSelector = selectors[i].replace(pseudoSelectorRegexp, "");
424 WebInspector.domAgent.querySelector(document.id, effectiveSelector, queryCallback.bind(null, i === selectors.length - 1 ? selectorsCallback.bind(null, callback, styleSheets, testedSelectors) : null, selectors[i], styleSheets, testedSelectors));
428 WebInspector.domAgent.requestDocument(documentLoaded.bind(null, selectors));
H A DDOMAgent.js1265 * @param {string} selectors
1268 querySelector: function(nodeId, selectors, callback)
1270 DOMAgent.querySelector(nodeId, selectors, this._wrapClientCallback(callback));
1275 * @param {string} selectors
1278 querySelectorAll: function(nodeId, selectors, callback)
1280 DOMAgent.querySelectorAll(nodeId, selectors, this._wrapClientCallback(callback));
H A DCSSStyleModel.js930 this.selectors = payload.selectorList.selectors;
931 this.selectorText = this.selectors.join(", ");
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDOMAgent.h116 virtual void querySelector(ErrorString*, int nodeId, const String& selectors, int* elementId);
117 virtual void querySelectorAll(ErrorString*, int nodeId, const String& selectors, RefPtr<TypeBuilder::Array<int> >& result);
H A DInspectorStyleSheet.cpp1250 RefPtr<TypeBuilder::Array<String> > selectors;
1256 selectors = selectorsFromSource(sourceData.get(), m_parsedStyleSheet->text());
1258 selectors = TypeBuilder::Array<String>::create();
1261 selectors->addItem(selector->selectorText());
1264 .setSelectors(selectors)
H A DInspectorDOMAgent.cpp544 void InspectorDOMAgent::querySelector(ErrorString* errorString, int nodeId, const String& selectors, int* elementId) argument
552 RefPtr<Element> element = node->querySelector(selectors, es);
562 void InspectorDOMAgent::querySelectorAll(ErrorString* errorString, int nodeId, const String& selectors, RefPtr<TypeBuilder::Array<int> >& result) argument
569 RefPtr<NodeList> nodes = node->querySelectorAll(selectors, es);
/external/valgrind/main/exp-sgcheck/tests/
H A Dhackedbz2.stdout.exp9 bytes: mapping 19, selectors 66, code lengths 134, codes 6465
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
H A Dxdfprotect.asm78 mov ax, 0x0010 ; Set data selectors
/external/ant-glob/src/org/apache/tools/ant/types/selectors/
H A DSelectorUtils.java19 package org.apache.tools.ant.types.selectors;
28 * <p>This is a utility class used by selectors and DirectoryScanner. The
29 * functionality more properly belongs just to selectors, but unfortunately

Completed in 407 milliseconds

12