Searched defs:root (Results 326 - 350 of 1144) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/icu/source/common/
H A Dlocutil.cpp253 LocaleUtility::isFallbackOf(const UnicodeString& root, const UnicodeString& child) argument
255 return child.indexOf(root) == 0 &&
256 (child.length() == root.length() ||
257 child.charAt(root.length()) == UNDERSCORE_CHAR);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dchashtst.c43 void addHashtableTest(TestNode** root);
85 void addHashtableTest(TestNode** root) { argument
87 addTest(root, &TestBasic, "tsutil/chashtst/TestBasic");
88 addTest(root, &TestOtherAPI, "tsutil/chashtst/TestOtherAPI");
89 addTest(root, &hashIChars, "tsutil/chashtst/hashIChars");
H A Dcurrtest.c230 void addCurrencyTest(TestNode** root);
232 #define TESTCASE(x) addTest(root, &x, "tsformat/currtest/" #x)
234 void addCurrencyTest(TestNode** root) argument
H A Dstdnmtst.c27 void addStandardNamesTest(TestNode** root);
31 addStandardNamesTest(TestNode** root) argument
33 addTest(root, &TestStandardName, "tsconv/stdnmtst/TestStandardName");
34 addTest(root, &TestStandardNames, "tsconv/stdnmtst/TestStandardNames");
35 addTest(root, &TestCanonicalName, "tsconv/stdnmtst/TestCanonicalName");
/external/chromium_org/third_party/libxml/src/
H A Dcheck-relaxng-test-suite.py367 root = testsuite.getRootElement() variable
368 if root.name != 'testSuite':
373 handle_testSuite(root)
H A Dcheck-relaxng-test-suite2.py390 root = testsuite.getRootElement() variable
391 if root.name != 'testSuite':
396 handle_testSuite(root)
H A Dcheck-xsddata-test-suite.py395 root = testsuite.getRootElement() variable
396 if root.name != 'testSuite':
401 handle_testSuite(root)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_winsys_xsp.c59 Window root; local
69 if (XGetGeometry(xsp_screen->display, drawable, &root, &x, &y, &width, &height, &border_width, &depth) == BadDrawable)
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_glx_pbuffer.c127 Window root; local
132 root = DefaultRootWindow(dpy);
140 xid = XCreatePixmap(dpy, root, (unsigned int) 1,
/external/chromium_org/third_party/skia/dm/
H A DDMWriteTask.cpp161 static SkString path_to_expected_image(const char* root, const Task& task) { argument
170 // We'll look in root/suffix for images.
171 const SkString dir = SkOSPath::SkPathJoin(root, suffixes[0].c_str());
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DQuadraticReduceOrder.cpp97 int root; local
99 root = findExtrema(quad[0].x, quad[1].x, quad[2].x, &tValue);
101 root = findExtrema(quad[0].y, quad[1].y, quad[2].y, &tValue);
103 if (root) {
/external/chromium_org/third_party/skia/samplecode/
H A DSampleAnimator.cpp101 const SkDOM::Node* root = dom.build(text, len); local
102 if (NULL == root) {
105 if (!fAnimator->decodeDOM(dom, root)) {
/external/chromium_org/third_party/skia/src/core/
H A DSkPictureStateTree.cpp91 SkPictureStateTree::Iterator::Iterator(const SkTDArray<void*>& draws, SkCanvas* canvas, Node* root) argument
94 , fCurrentNode(root)
H A DSkTSort.h28 /* Sifts a broken heap. The input array is a heap from root to bottom
29 * except that the root entry may be out of place.
31 * Sinks a hole from array[root] to leaf and then sifts the original array[root] element
37 * the potentially out of place root entry value is expected to be small.
39 * @param root the one based index into array of the out-of-place root of the heap.
43 void SkTHeapSort_SiftUp(T array[], size_t root, size_t bottom, C lessThan) { argument
44 T x = array[root-1];
45 size_t start = root;
77 SkTHeapSort_SiftDown(T array[], size_t root, size_t bottom, C lessThan) argument
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkLayer.cpp132 const SkLayer* root = this; local
133 while (root->fParent != NULL) {
134 root = root->fParent;
136 return const_cast<SkLayer*>(root);
201 // should we also apply the root's childrenMatrix?
/external/chromium_org/tools/gn/
H A Dinput_file_manager.cc28 scoped_ptr<ParseNode>* root,
71 *root = Parser::Parse(*tokens, err);
271 scoped_ptr<ParseNode> root; local
273 &tokens, &root, err);
279 ParseNode* unowned_root = root.get();
290 data->parsed_root = root.Pass();
23 DoLoadFile(const LocationRange& origin, const BuildSettings* build_settings, const SourceFile& name, InputFile* file, std::vector<Token>* tokens, scoped_ptr<ParseNode>* root, Err* err) argument
H A Dloader_unittest.cc46 scoped_ptr<ParseNode> root; member in struct:__anon15758::MockInputFileManager::CannedResult
83 canned->root = Parser::Parse(canned->tokens, &err).Pass();
109 pending_[i].second.Run(found->second->root.get());
146 // Request the root build file be loaded. This should kick off the default
152 // Completing the build config load should kick off the root build file load.
157 // Load the root build file.
/external/chromium_org/ui/gl/
H A Dgl_image_glx.cc102 XID root = 0; local
110 display_, pixmap_, &root, &x, &y, &width, &height, &bw, &depth)) {
/external/chromium_org/ui/views/
H A Daccessible_pane_view.cc28 return accessible_pane_view_->ContainsForFocusSearch(root(), v) ?
32 // Returns true if |v| is contained within the hierarchy rooted at |root|.
34 virtual bool Contains(View* root, const View* v) OVERRIDE {
35 return accessible_pane_view_->ContainsForFocusSearch(root, v);
122 bool AccessiblePaneView::ContainsForFocusSearch(View* root, const View* v) { argument
123 return root->Contains(v);
H A Daccessible_pane_view_unittest.cc81 View* root = widget->GetRootView(); local
82 root->AddChildView(test_view);
156 View* root = widget->GetRootView(); local
157 root->AddChildView(test_view);
158 root->AddChildView(test_view_2);
186 View* root = widget->GetRootView(); local
187 root->AddChildView(original_test_view);
188 root->AddChildView(test_view);
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_message_loop_aura.cc46 // the menu. Additionally it listens for the root window to be destroyed and
53 ActivationChangeObserverImpl(MenuController* controller, aura::Window* root) argument
54 : controller_(controller), root_(root) {
113 aura::Window* root = window->GetRootWindow(); local
114 ScreenPositionClient* spc = aura::client::GetScreenPositionClient(root);
119 spc->ConvertPointFromScreen(root, &root_loc);
124 root->GetHost()->dispatcher()->RepostEvent(clone);
132 aura::Window* root = GetOwnerRootWindow(owner_); local
142 if (root) {
145 observer.reset(new ActivationChangeObserverImpl(controller, root));
186 aura::Window* root = GetOwnerRootWindow(owner_); local
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-flow-engine.h92 void AnalyzeDominatedBlocks(HBasicBlock* root, State* initial) { argument
94 SetStateAt(root, initial);
97 for (int i = root->block_id(); i < graph_->blocks()->length(); i++) {
100 // Skip blocks not dominated by the root node.
101 if (SkipNonDominatedBlock(root, block)) continue;
174 inline bool SkipNonDominatedBlock(HBasicBlock* root, HBasicBlock* other) { argument
175 if (root->block_id() == 0) return false; // Visit the whole graph.
176 if (root == other) return false; // Always visit the root.
177 return !root
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fTextureBufferTests.cpp118 TestCaseGroup* const root = new TestCaseGroup(context, "texture_buffer", "Texture buffer syncronization tests"); local
175 root->addChild(renderGroup);
216 root->addChild(modifyGroup);
257 root->addChild(modifyRenderGroup);
280 root->addChild(renderModifyGroup);
300 return root;
/external/e2fsprogs/lib/ext2fs/
H A Drbtree.c25 static void __rb_rotate_left(struct rb_node *node, struct rb_root *root) argument
44 root->rb_node = right;
48 static void __rb_rotate_right(struct rb_node *node, struct rb_root *root) argument
67 root->rb_node = left;
71 void ext2fs_rb_insert_color(struct rb_node *node, struct rb_root *root) argument
96 __rb_rotate_left(parent, root);
104 __rb_rotate_right(gparent, root);
121 __rb_rotate_right(parent, root);
129 __rb_rotate_left(gparent, root);
133 ext2fs_rb_set_black(root
136 __rb_erase_color(struct rb_node *node, struct rb_node *parent, struct rb_root *root) argument
216 ext2fs_rb_erase(struct rb_node *node, struct rb_root *root) argument
354 ext2fs_rb_first(const struct rb_root *root) argument
366 ext2fs_rb_last(const struct rb_root *root) argument
430 ext2fs_rb_replace_node(struct rb_node *victim, struct rb_node *new, struct rb_root *root) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/
H A Dhelpbase-ant.jar ... .runtime.IPath path java.io.File root public void setManifest (java.lang.String) String manifest ...

Completed in 747 milliseconds

<<11121314151617181920>>