HomeSort by relevance Sort by last modified time
    Searched refs:root (Results 526 - 550 of 2837) sorted by null

<<21222324252627282930>>

  /device/asus/flo/self-extractors/
generate-packages.sh 262 cp -R root/* tmp/vendor/$MANUFACTURER/$ROOTDEVICE || echo \ \ \ \ Error copying makefiles
272 (cd tmp ; tar zc --owner=root --group=root vendor/ >> $SCRIPT || echo \ \ \ \ Error generating embedded tgz)
277 (cd tmp ; tar --owner=root --group=root -z -c -f ../$ARCHIVE $SCRIPT || echo \ \ \ \ Error archiving script)
  /device/asus/grouper/self-extractors/
generate-packages.sh 213 cp -R root/* tmp/vendor/$MANUFACTURER/$ROOTDEVICE || echo \ \ \ \ Error copying makefiles
223 (cd tmp ; tar zc --owner=root --group=root vendor/ >> $SCRIPT || echo \ \ \ \ Error generating embedded tgz)
228 (cd tmp ; tar --owner=root --group=root -z -c -f ../$ARCHIVE $SCRIPT || echo \ \ \ \ Error archiving script)
  /device/asus/tilapia/self-extractors/
generate-packages.sh 192 cp -R root/* tmp/vendor/$MANUFACTURER/$ROOTDEVICE || echo \ \ \ \ Error copying makefiles
202 (cd tmp ; tar zc --owner=root --group=root vendor/ >> $SCRIPT || echo \ \ \ \ Error generating embedded tgz)
207 (cd tmp ; tar --owner=root --group=root -z -c -f ../$ARCHIVE $SCRIPT || echo \ \ \ \ Error archiving script)
  /device/lge/hammerhead/self-extractors/
generate-packages.sh 256 cp -R root/* tmp/vendor/$MANUFACTURER/$ROOTDEVICE || echo \ \ \ \ Error copying makefiles
266 (cd tmp ; tar zc --owner=root --group=root vendor/ >> $SCRIPT || echo \ \ \ \ Error generating embedded tgz)
271 (cd tmp ; tar --owner=root --group=root -z -c -f ../$ARCHIVE $SCRIPT || echo \ \ \ \ Error archiving script)
  /device/lge/mako/self-extractors/
generate-packages.sh 262 cp -R root/* tmp/vendor/$MANUFACTURER/$ROOTDEVICE || echo \ \ \ \ Error copying makefiles
272 (cd tmp ; tar zc --owner=root --group=root vendor/ >> $SCRIPT || echo \ \ \ \ Error generating embedded tgz)
277 (cd tmp ; tar --owner=root --group=root -z -c -f ../$ARCHIVE $SCRIPT || echo \ \ \ \ Error archiving script)
  /device/samsung/manta/self-extractors/
generate-packages.sh 128 cp -R root/* tmp/vendor/$MANUFACTURER/$ROOTDEVICE || echo \ \ \ \ Error copying makefiles
138 (cd tmp ; tar zc --owner=root --group=root vendor/ >> $SCRIPT || echo \ \ \ \ Error generating embedded tgz)
143 (cd tmp ; tar --owner=root --group=root -z -c -f ../$ARCHIVE $SCRIPT || echo \ \ \ \ Error archiving script)
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3basetreeadaptor.c 53 static pANTLR3_BASE_TREE rulePostProcessing (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE root);
481 // Ensure new subtree root has parent/child index set
587 /** If oldRoot is a nil root, just copy or move the children to newRoot.
588 * If not a nil root, make oldRoot a child of newRoot.
596 * child as the new root node.
611 * simple node or nil root with a single child node--it must be a root
633 /* root is just the new tree as is if there is no
634 * current root tree.
649 ANTLR3_FPRINTF(stderr, "More than one node as root! TODO: Create tree exception handling\n")
    [all...]
  /external/deqp/executor/tools/
xeCommandLineExecutor.cpp 202 static void readCaseList (xe::TestGroup* root, const char* filename)
210 caseListParser.init(root);
225 static void readCaseLists (xe::TestRoot& root, const char* caseListDir)
239 xe::TestGroup* package = root.createGroup(packageName.c_str(), "");
351 static void printBatchResultSummary (const xe::TestNode* root, const xe::TestSet& testSet, const xe::BatchResult& batchResult)
356 for (xe::ConstTestNodeIterator iter = xe::ConstTestNodeIterator::begin(root); iter != xe::ConstTestNodeIterator::end(root); ++iter)
441 xe::TestRoot root; local
444 readCaseLists(root, cmdLine.caseListDir.c_str());
451 addMatchingCases(root, testSet, filterIter->c_str())
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
TreeMultiset.java 128 private TreeMultiset(GeneralRange<E> range, Reference<Node<E>> root) {
131 this.rootReference = root;
163 Node<E> root = rootReference.get(); local
164 return Ints.checkedCast(BstRangeOps.totalInRange(distinctAggregate(), range, root));
169 Node<E> root = rootReference.get(); local
170 return Ints.saturatedCast(BstRangeOps.totalInRange(sizeAggregate(), range, root));
251 Node<E> root = rootReference.get(); local
253 BstRangeOps.furthestPath(range, LEFT, pathFactory(), root);
259 Node<E> root = rootReference.get(); local
261 BstRangeOps.furthestPath(range, RIGHT, pathFactory(), root);
333 Node<E> root = rootReference.get(); local
    [all...]
  /external/chromium_org/chrome/installer/setup/
install_worker.cc 605 HKEY root,
609 << root;
611 list->AddDeleteRegKeyWorkItem(root, delegate_execute_path, KEY_WOW64_32KEY);
613 list->AddDeleteRegKeyWorkItem(root, delegate_execute_path, KEY_WOW64_64KEY);
618 list->AddDeleteRegKeyWorkItem(root,
622 list->AddDeleteRegKeyWorkItem(root,
1107 HKEY root = installer_state.root_key(); local
1289 const HKEY root = installer_state.root_key(); local
1413 HKEY root = installer_state.root_key(); local
1485 const HKEY root = HKEY_LOCAL_MACHINE; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
inttree.c 81 it->root = ITN_create(LONG_MAX, LONG_MAX, NULL);
82 it->root->left = it->nil;
83 it->root->right = it->nil;
84 it->root->parent = it->nil;
85 it->root->red = 0;
139 /* Instead of checking if x->parent is the root as in the book, we
140 * count on the root sentinel to implicitly take care of this case
202 /* Instead of checking if x->parent is the root as in the book, we
203 * count on the root sentinel to implicitly take care of this case
247 y=it->root;
    [all...]
  /external/lldb/source/Core/
ValueObject.cpp 524 ValueObjectSP root(GetSP());
527 root = root->GetChildAtIndex(idx, true);
528 if (!root)
532 return root;
535 return root;
544 ValueObjectSP root(GetSP());
547 root = root->GetChildAtIndex(idx.first, idx.second);
548 if (!root)
2584 ValueObjectSP root = GetSP(); local
    [all...]
  /dalvik/hit/src/com/android/hit/
HprofParser.java 359 RootObj root = new RootObj(RootType.NATIVE_LOCAL, id, local
362 root.setHeap(mState.mCurrentHeap);
363 mState.addRoot(root);
375 RootObj root = new RootObj(RootType.JAVA_LOCAL, id, threadSerialNumber, local
378 root.setHeap(mState.mCurrentHeap);
379 mState.addRoot(root);
389 RootObj root = new RootObj(RootType.NATIVE_STACK, id, local
392 root.setHeap(mState.mCurrentHeap);
393 mState.addRoot(root);
400 RootObj root = new RootObj(type, id) local
413 RootObj root = new RootObj(RootType.THREAD_BLOCK, id, local
580 RootObj root = new RootObj(RootType.NATIVE_MONITOR, id, local
    [all...]
  /external/chromium_org/content/browser/
site_per_process_browsertest.cc 205 // It is safe to obtain the root frame tree node here, as it doesn't change.
206 FrameTreeNode* root = local
208 GetFrameTree()->root();
213 FrameTreeNode* child = root->child_at(0);
239 NavigateFrameToURL(root->child_at(0), cross_site_url);
244 ASSERT_EQ(1U, root->child_count());
271 NavigateFrameToURL(root->child_at(0), cross_site_url);
277 ASSERT_EQ(1U, root->child_count());
278 child = root->child_at(0);
325 FrameTreeNode* root local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
caching_file_system.py 150 def Walk(self, root, depth=-1):
153 def file_lister(root):
154 res, root_stat = All((self._walk_cache.Get(root),
155 self.StatAsync(root))).Get()
162 for f in self.ReadSingle(root).Get():
167 # Update the cache. This is a root -> (dirs, files, version) mapping.
168 self._walk_cache.Set(root, (dirs, files, root_stat.version))
170 return self._file_system.Walk(root, depth=depth, file_lister=file_lister)
  /external/chromium_org/third_party/bintrees/bintrees/
walker.py 17 self._node = tree.root
22 self._node = self._tree.root
41 self._node = self._tree.root
95 node = self._tree.root
149 node = self._tree.root
185 node = self._tree.root
205 node = self._tree.root
  /external/chromium_org/third_party/icu/source/test/cintltst/
cjaptst.c 106 void addKannaCollTest(TestNode** root)
108 addTest(root, &TestTertiary, "tscoll/cjacoll/TestTertiary");
109 addTest(root, &TestBase, "tscoll/cjacoll/TestBase");
110 addTest(root, &TestPlainDakutenHandakuten, "tscoll/cjacoll/TestPlainDakutenHandakuten");
111 addTest(root, &TestSmallLarge, "tscoll/cjacoll/TestSmallLarge");
112 addTest(root, &TestKatakanaHiragana, "tscoll/cjacoll/TestKatakanaHiragana");
113 addTest(root, &TestChooonKigoo, "tscoll/cjacoll/TestChooonKigoo");
  /external/icu/icu4c/source/test/cintltst/
cjaptst.c 106 void addKannaCollTest(TestNode** root)
108 addTest(root, &TestTertiary, "tscoll/cjacoll/TestTertiary");
109 addTest(root, &TestBase, "tscoll/cjacoll/TestBase");
110 addTest(root, &TestPlainDakutenHandakuten, "tscoll/cjacoll/TestPlainDakutenHandakuten");
111 addTest(root, &TestSmallLarge, "tscoll/cjacoll/TestSmallLarge");
112 addTest(root, &TestKatakanaHiragana, "tscoll/cjacoll/TestKatakanaHiragana");
113 addTest(root, &TestChooonKigoo, "tscoll/cjacoll/TestChooonKigoo");
  /external/markdown/markdown/extensions/
footnotes.py 80 def findFootnotesPlaceholder(self, root):
93 res = finder(root)
114 def makeFootnotesDiv(self, root):
279 def run(self, root):
280 footnotesDiv = self.footnotes.makeFootnotesDiv(root)
282 result = self.footnotes.findFootnotesPlaceholder(root)
295 root.append(footnotesDiv)
  /external/chromium_org/cc/trees/
layer_tree_host_impl_unittest.cc 185 void SetupRootLayerImpl(scoped_ptr<LayerImpl> root) {
186 root->SetPosition(gfx::PointF());
187 root->SetBounds(gfx::Size(10, 10));
188 root->SetContentBounds(gfx::Size(10, 10));
189 root->SetDrawsContent(true);
190 root->draw_properties().visible_content_rect = gfx::Rect(0, 0, 10, 10);
191 host_impl_->active_tree()->SetRootLayer(root.Pass());
232 scoped_ptr<LayerImpl> root = local
234 root->SetBounds(content_size);
235 root->SetContentBounds(content_size)
436 scoped_ptr<LayerImpl> root = local
448 LayerImpl* root = host_impl_->active_tree()->root_layer(); local
469 scoped_ptr<LayerImpl> root = local
480 LayerImpl* root = host_impl_->active_tree()->root_layer()->children()[0]; local
599 LayerImpl* root = host_impl_->active_tree()->root_layer(); local
653 LayerImpl* root = host_impl_->active_tree()->root_layer(); local
670 LayerImpl* root = host_impl_->active_tree()->root_layer(); local
684 LayerImpl* root = host_impl_->active_tree()->root_layer(); local
729 LayerImpl* root = host_impl_->active_tree()->root_layer(); local
1577 scoped_ptr<LayerImpl> root = local
1780 DidDrawCheckLayer* root = static_cast<DidDrawCheckLayer*>( local
1821 DidDrawCheckLayer* root = static_cast<DidDrawCheckLayer*>( local
1869 DidDrawCheckLayer* root = local
1905 DidDrawCheckLayer* root = local
1986 DidDrawCheckLayer* root = local
2010 DidDrawCheckLayer* root = local
2033 DidDrawCheckLayer* root = local
2061 DidDrawCheckLayer* root = local
2090 DidDrawCheckLayer* root = local
2120 DidDrawCheckLayer* root = local
2148 DidDrawCheckLayer* root = local
2178 DidDrawCheckLayer* root = local
2209 DidDrawCheckLayer* root = local
2237 scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl_->active_tree(), 1); local
2265 scoped_ptr<LayerImpl> root = local
2574 scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl_->active_tree(), 1); local
2593 scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl_->active_tree(), 1); local
2610 scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl_->active_tree(), 1); local
2664 scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl_->active_tree(), 1); local
2714 scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl_->active_tree(), 1); local
2776 LayerImpl* root = host_impl_->active_tree()->root_layer(); local
2825 scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl_->active_tree(), 1); local
2880 scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl_->active_tree(), 1); local
2926 scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl_->active_tree(), 1); local
3035 scoped_ptr<LayerImpl> root = local
3534 scoped_ptr<LayerImpl> root = local
3598 scoped_ptr<LayerImpl> root = local
3653 scoped_ptr<LayerImpl> root = local
3691 scoped_ptr<LayerImpl> root = local
3831 scoped_ptr<LayerImpl> root = local
3838 LayerImpl* root = host_impl_->active_tree()->root_layer(); local
4362 scoped_ptr<LayerImpl> root = local
4431 scoped_ptr<LayerImpl> root = local
4490 scoped_ptr<LayerImpl> root = local
4742 scoped_ptr<LayerImpl> root = local
5004 LayerImpl* root = host_impl_->active_tree()->root_layer(); local
5017 scoped_ptr<SolidColorLayerImpl> root = local
5087 LayerImpl* root = scoped_root.get(); local
5221 LayerImpl* root = scoped_root.get(); local
5367 LayerImpl* root = scoped_root.get(); local
5514 LayerImpl* root = scoped_root.get(); local
5634 LayerImpl* root = scoped_root.get(); local
5739 LayerImpl* root = scoped_root.get(); local
6244 scoped_ptr<LayerImpl> root = local
6286 scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl_->active_tree(), 1); local
6467 LayerImpl* root = host_impl_->active_tree()->LayerById(1); local
6502 LayerImpl* root = host_impl_->active_tree()->LayerById(1); local
6554 scoped_ptr<SolidColorLayerImpl> root = local
6594 scoped_ptr<SolidColorLayerImpl> root = local
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
launcher_context_menu.cc 40 aura::Window* root)
44 shelf_alignment_menu_(root),
45 root_window_(root),
55 aura::Window* root)
59 shelf_alignment_menu_(root),
60 root_window_(root),
68 aura::Window* root)
72 shelf_alignment_menu_(root),
76 root_window_(root),
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
path_test.cc 31 Path root("/");
44 EXPECT_EQ(1, root.Size());
45 EXPECT_TRUE(root.IsAbsolute());
46 EXPECT_EQ("/", root.Join());
62 root = "/";
75 EXPECT_EQ(1, root.Size());
76 EXPECT_TRUE(root.IsAbsolute());
77 EXPECT_EQ("/", root.Join());
102 cpy_str = root;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.cpp 212 const RootInlineBox& InlineBox::root() const function in class:blink::InlineBox
215 return m_parent->root();
220 RootInlineBox& InlineBox::root() function in class:blink::InlineBox
223 return m_parent->root();
313 RenderBlockFlow& block = root().block();
324 root().block().flipForWritingMode(rect);
331 return root().block().flipForWritingMode(point);
338 root().block().flipForWritingMode(rect);
345 return root().block().flipForWritingMode(point);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
layout_tests_mover.py 196 def _get_updated_reference(self, root, reference):
197 """For a reference <reference> in a directory <root>, determines the updated reference.
204 # Both the root path and the target of the reference my be subject to the move, so there are
212 absolute_reference = self._filesystem.normpath(self._filesystem.join(root, reference))
213 if self._is_child_path(self._absolute_origin, root) == self._is_child_path(self._absolute_origin, absolute_reference):
216 new_root = self._move_path(root, self._absolute_origin, self._absolute_destination)
227 root = self._filesystem.dirname(file_path)
231 if root.endswith('script-tests') and file_path.endswith('TEMPLATE.html'):
232 root = self._filesystem.dirname(root)
    [all...]
  /bionic/libc/kernel/tools/
update_all.py 54 for root, dirs, files in os.walk( original_dir ):
57 warning_ion.append(" Skipped file %s/%s" % (root, file))
61 sources.append( "%s/%s" % (root,file) )

Completed in 510 milliseconds

<<21222324252627282930>>