Searched defs:root (Results 101 - 125 of 1181) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dconcat-jquery-mootools-prototype.js522 callback.call( root(this[i], first), this.length > 1 || i > 0 ?
531 function root( elem, cur ) { function
2138 // Inject it into the root element, check its status, and remove it quickly
2139 var root = document.documentElement;
2140 root.insertBefore( form, root.firstChild );
2158 root.removeChild( form );
2345 root = context.nodeType ? [context] : context;
2356 for ( var i = 0, l = root.length; i < l; i++ ) {
2357 Sizzle( selector, root[
[all...]
H A Djquery-1.3.2.js522 callback.call( root(this[i], first), this.length > 1 || i > 0 ?
531 function root( elem, cur ) { function
2138 // Inject it into the root element, check its status, and remove it quickly
2139 var root = document.documentElement;
2140 root.insertBefore( form, root.firstChild );
2158 root.removeChild( form );
2345 root = context.nodeType ? [context] : context;
2356 for ( var i = 0, l = root.length; i < l; i++ ) {
2357 Sizzle( selector, root[
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DRetainedDOMInfo.cpp39 RetainedDOMInfo::RetainedDOMInfo(Node* root) argument
40 : m_root(root)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DChildFrameDisconnector.cpp22 checkConnectedSubframeCountIsConsistent(root());
25 if (!root().connectedSubframeCount())
29 collectFrameOwners(root());
31 for (Node* child = root().firstChild(); child; child = child->nextSibling())
38 void ChildFrameDisconnector::collectFrameOwners(Node& root) argument
40 if (!root.connectedSubframeCount())
43 if (root.isHTMLElement() && root.isFrameOwnerElement())
44 m_frameOwners.append(&toHTMLFrameOwnerElement(root));
46 for (Node* child = root
[all...]
H A DNodeIteratorBase.h40 Node* root() const { return m_root.get(); } function in class:blink::NodeIteratorBase
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLShadowElement.cpp74 ShadowRoot* root = containingShadowRoot(); local
75 if (root && root->olderShadowRoot() && root->type() != root->olderShadowRoot()->type()) {
76 String message = String::format("<shadow> doesn't work for %s element host.", root->host()->tagName().utf8().data());
/external/chromium_org/third_party/WebKit/Source/core/html/imports/
H A DHTMLImportsController.h65 HTMLImportTreeRoot* root() const { return m_root.get(); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerStackingNodeIterator.h52 RenderLayerStackingNodeIterator(const RenderLayerStackingNode& root, unsigned whichChildren) argument
53 : m_root(root)
72 RenderLayerStackingNodeReverseIterator(const RenderLayerStackingNode& root, unsigned whichChildren) argument
73 : m_root(root)
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DNonCopyingSort.h37 ptrdiff_t root = start; local
39 while (root * 2 + 1 <= end) {
40 ptrdiff_t child = root * 2 + 1;
44 if (compareLess(array[root], array[child])) {
45 swap(array[root], array[child]);
46 root = child;
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DTranslatorHLSL.cpp17 void TranslatorHLSL::translate(TIntermNode *root) argument
/external/chromium_org/third_party/freetype/src/pshinter/
H A Dpshmod.c29 FT_ModuleRec root; member in struct:PS_Hinter_Module_Rec_
54 FT_Memory memory = module->root.memory;
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dccolltst.c27 void addCollTest(TestNode** root);
29 void addCollTest(TestNode** root) argument
31 addCollAPITest(root);
32 addCurrencyCollTest(root);
34 addNormTest(root);
36 addGermanCollTest(root);
37 addSpanishCollTest(root);
38 addFrenchCollTest(root);
39 addKannaCollTest(root);
40 addTurkishCollTest(root);
[all...]
H A Dcposxtst.c25 void addPosixTest(TestNode** root);
27 void addPosixTest(TestNode** root) argument
30 addTest(root, &TestMessageCatalog, "tsutil/cposxtst/TestMessageCatalog");
H A Deurocreg.c12 void addTestEuroRegression(TestNode** root);
15 void addTestEuroRegression(TestNode** root) argument
17 addTest(root, &TestEuroRegression, "tsconv/eurocreg/TestEuroRegression");
185 void addTestEuroRegression(TestNode** root) argument
/external/chromium_org/third_party/icu/source/test/iotest/
H A Dtrnstst.c308 addTranslitTest(TestNode** root) { argument
310 addTest(root, &TestTranslitOps, "translit/ops");
312 addTest(root, &TestTranslitFileOut, "translit/fileOut");
313 addTest(root, &TestTranslitStringOut, "translit/stringOut");
/external/chromium_org/ui/events/
H A Devent_processor.cc13 EventTarget* root = GetRootTarget(); local
14 CHECK(root);
15 EventTargeter* targeter = root->GetEventTargeter();
29 EventTarget* target = targeter->FindTargetForEvent(root, event_to_dispatch);
/external/chromium_org/ui/events/test/
H A Dtest_event_processor.cc15 void TestEventProcessor::SetRoot(scoped_ptr<EventTarget> root) { argument
16 root_ = root.Pass();
/external/chromium_org/ui/views/focus/
H A Dfocus_search.h29 // - |root| is the root of the view hierarchy to traverse. Focus will be
32 // to the first view within this root when the traversal reaches
39 FocusSearch(View* root, bool cycle, bool accessibility_mode);
72 // Get the parent, but stay within the root. Returns NULL if asked for
77 // Returns true if |v| is contained within the hierarchy rooted at |root|.
79 virtual bool Contains(View* root, const View* v);
81 View* root() const { return root_; } function in class:views::FocusSearch
/external/chromium_org/ui/views/
H A Dview_targeter_delegate.cc30 View* ViewTargeterDelegate::TargetForRect(View* root, const gfx::Rect& rect) { argument
43 for (int i = root->child_count() - 1; i >= 0; --i) {
44 View* child = root->child_at(i);
53 View::ConvertRectToTarget(root, child, &rect_in_child_coords_f);
65 View::ConvertRectToTarget(cur_view, root, &cur_view_bounds_f);
88 return root;
90 // If |root| is a suitable candidate for rect-based targeting, check to
92 gfx::Rect local_bounds(root->GetLocalBounds());
98 rect_view = root;
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_capture_client.cc17 DesktopCaptureClient::DesktopCaptureClient(aura::Window* root) argument
18 : root_(root),
23 aura::client::SetCaptureClient(root, this);
76 } // else case is capture is remaining in our root, nothing to do.
/external/chromium_org/ui/views/widget/
H A Droot_view_targeter.cc24 View* root,
26 CHECK_EQ(root, root_view_);
51 return root->GetEffectiveViewTargeter()->TargetForRect(root, rect);
23 FindTargetForGestureEvent( View* root, const ui::GestureEvent& gesture) argument
/external/chromium_org/v8/src/
H A Dsnapshot-common.cc61 Object* root; local
70 deserializer.DeserializePartial(isolate, &root);
71 CHECK(root->IsContext());
72 return Handle<Context>(Context::cast(root));
/external/deqp/framework/randomshaders/
H A DrsgExpressionGenerator.cpp40 // Create root
42 Expression* root = Expression::createRandom(m_state, valueRange); local
47 generate(root);
51 delete root;
56 return root;
59 void ExpressionGenerator::generate (Expression* root) argument
64 m_expressionStack.push_back(root);
/external/deqp/modules/gles2/functional/
H A Des2fAttribLocationTests.cpp61 TestCaseGroup* const root = new TestCaseGroup (context, "attribute_location", "Attribute location tests"); local
67 root->addChild(bindAttributeGroup);
80 root->addChild(bindMaxAttributeGroup);
93 root->addChild(aliasingGroup);
118 root->addChild(holeGroup);
133 root->addChild(bindTimeGroup);
146 root->addChild(relinkHoleGroup);
156 return root;
/external/e2fsprogs/intl/
H A Dos2compat.c51 char *root = getenv ("UNIXROOT"); local
57 if (root)
59 size_t sl = strlen (root);
61 memcpy (_nlos2_libdir, root, sl);
71 if (root)
73 size_t sl = strlen (root);
75 memcpy (_nlos2_localealiaspath, root, sl);
85 if (root)
87 size_t sl = strlen (root);
89 memcpy (_nlos2_localedir, root, s
[all...]

Completed in 2050 milliseconds

1234567891011>>