/external/chromium_org/testing/gtest/scripts/ |
common.py | 56 """Returns the project name and the current SVN workspace's root path.""" 63 root = os.path.realpath(rel_path.count('/') * '../') 64 return project, root 70 """Returns the current SVN workspace's trunk root path.""" 72 _, root = GetSvnInfo() 73 return root + '/trunk' if root else None
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
NodeIterator.cpp | 50 bool NodeIterator::NodePointer::moveToNext(Node* root) 58 node = NodeTraversal::next(*node, root); 62 bool NodeIterator::NodePointer::moveToPrevious(Node* root) 70 node = NodeTraversal::previous(*node, root); 76 , m_referenceNode(root(), true) 78 root()->document().attachNodeIterator(this); 84 root()->document().detachNodeIterator(this); 93 while (m_candidateNode.moveToNext(root())) { 117 while (m_candidateNode.moveToPrevious(root())) { 149 ASSERT(root()->document() == removedNode.document()) [all...] |
/external/libcap-ng/libcap-ng-0.7/ |
libcap-ng.spec | 11 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) 90 %defattr(-,root,root,-) 92 %attr(0755,root,root) /%{_lib}/libcap-ng.so.* 95 %defattr(-,root,root,-) 96 %attr(0644,root,root) %{_mandir}/man3/* 97 %attr(0644,root,root) %{_includedir}/cap-ng. [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
export-w3c-performance-wg-tests | 65 for root, dirs, files in os.walk(os.path.join(source_directory, directory_to_copy)): 66 root = os.path.relpath(root, source_directory) variable 68 destination_subdirectory = os.path.join(destination_directory, root, dirname) 74 with open(os.path.join(source_directory, root, filename), 'r') as in_file: 75 with open(os.path.join(destination_directory, root, filename), 'w') as out_file: 80 print 'Exported %s' % os.path.join(root, filename)
|
/art/compiler/sea_ir/ir/ |
regions_test.cc | 28 sea_ir::Region* root = sg.GetNewRegion(); local 33 EXPECT_TRUE(std::find(regions->begin(), regions->end(), root) != regions->end()); 37 sg.AddEdge(root, then_region); 38 std::vector<sea_ir::Region*>* succs = root->GetSuccessors(); 43 EXPECT_EQ(root, preds->at(0)); 45 sg.AddEdge(root, else_region); 46 succs = root->GetSuccessors(); 52 EXPECT_EQ(root, preds->at(0)); 55 EXPECT_EQ(root, preds->at(0));
|
/external/chromium_org/mojo/examples/embedded_app/ |
embedded_app.cc | 34 Window(View* root, scoped_ptr<ServiceProvider> embedder_service_provider) 35 : root(root), 37 View* root; member in struct:mojo::examples::Window 65 View* root, 68 root->AddObserver(this); 69 windows_[root->id()] = new Window(root, imported_services.Pass()); 70 root->SetColor(kColors[next_color_++ % arraysize(kColors)]);
|
/external/fio/lib/ |
prio_tree.c | 75 static struct prio_tree_node *prio_tree_expand(struct prio_tree_root *root, 80 if (max_heap_index > prio_tree_maxindex(root->index_bits)) 81 root->index_bits++; 83 while (max_heap_index > prio_tree_maxindex(root->index_bits)) { 84 root->index_bits++; 86 if (prio_tree_empty(root)) 90 first = root->prio_tree_node; 91 prio_tree_remove(root, root->prio_tree_node); 96 last = root->prio_tree_node 401 struct prio_tree_root *root; local [all...] |
prio_tree.h | 26 struct prio_tree_root *root; member in struct:prio_tree_iter 32 struct prio_tree_root *root, uint64_t r_index, uint64_t h_index) 34 iter->root = root; 62 static inline int prio_tree_empty(const struct prio_tree_root *root) 64 return root->prio_tree_node == NULL; 83 struct prio_tree_node *prio_tree_replace(struct prio_tree_root *root, 85 struct prio_tree_node *prio_tree_insert(struct prio_tree_root *root, 87 void prio_tree_remove(struct prio_tree_root *root, struct prio_tree_node *node);
|
rbtree.c | 25 static void __rb_rotate_left(struct rb_node *node, struct rb_root *root) 44 root->rb_node = right; 48 static void __rb_rotate_right(struct rb_node *node, struct rb_root *root) 67 root->rb_node = left; 71 void rb_insert_color(struct rb_node *node, struct rb_root *root) 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 rb_set_black(root->rb_node) [all...] |
/external/chromium_org/chrome/installer/util/ |
uninstall_metrics_unittest.cc | 49 scoped_ptr<base::Value> root( 51 ASSERT_TRUE(root.get()); 55 ExtractUninstallMetrics(*static_cast<base::DictionaryValue*>(root.get()),
|
install_util_unittest.cc | 79 const HKEY root = system_level ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER; local 85 override_manager.OverrideRegistry(root); 86 RegKey(root, state_key_path.c_str(), KEY_SET_VALUE); 91 RegKey(root, state_key_path.c_str(), KEY_QUERY_VALUE) 99 override_manager.OverrideRegistry(root); 100 RegKey(root, state_key_path.c_str(), KEY_SET_VALUE) 106 RegKey(root, state_key_path.c_str(), KEY_QUERY_VALUE) 114 override_manager.OverrideRegistry(root); 115 RegKey(root, state_key_path.c_str(), KEY_SET_VALUE) 121 RegKey(root, state_key_path.c_str(), KEY_QUERY_VALUE 129 const HKEY root = system_level ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER; local 179 const HKEY root = HKEY_CURRENT_USER; local 289 const HKEY root = HKEY_CURRENT_USER; local [all...] |
uninstall_metrics.h | 18 bool ExtractUninstallMetrics(const base::DictionaryValue& root,
|
/external/chromium_org/components/tools/metrics/ |
count_ifdefs_unittest.py | 18 self.root = os.path.join(os.path.dirname(__file__), 'testdata') 21 count = count_ifdefs.CountIfdefs('OS_[A-Z]+', self.root) 25 count = count_ifdefs.CountIfdefs('OS_[A-Z]+', self.root, True)
|
/external/chromium_org/third_party/icu/source/samples/uresb/ |
resources.mak | 4 TARGETS = en.res root.res sr.res 23 root.res : root.txt
|
/external/chromium_org/ui/views/ |
view_targeter.cc | 26 View* ViewTargeter::TargetForRect(View* root, const gfx::Rect& rect) const { 27 return delegate_->TargetForRect(root, rect); 30 ui::EventTarget* ViewTargeter::FindTargetForEvent(ui::EventTarget* root, 32 View* view = static_cast<View*>(root); 45 root->ConvertEventToTarget(gesture_target, gesture); 84 View* ViewTargeter::FindTargetForKeyEvent(View* root, const ui::KeyEvent& key) { 85 if (root->GetFocusManager()) 86 return root->GetFocusManager()->GetFocusedView(); 90 View* ViewTargeter::FindTargetForScrollEvent(View* root, 93 return root->GetEffectiveViewTargeter()->TargetForRect(root, rect) [all...] |
/external/compiler-rt/test/msan/ |
tsearch.cc | 23 void *root = NULL; local 26 void *q = tsearch(p, &root, compare); 33 tdestroy(root, myfreenode);
|
/external/icu/icu4c/source/samples/uresb/ |
resources.mak | 4 TARGETS = en.res root.res sr.res 23 root.res : root.txt
|
/external/oprofile/module/ |
compat.c | 30 struct dentry * root = current->fs->root; local 38 if (dentry == root)
|
/external/guava/guava/src/com/google/common/collect/ |
BstRangeOps.java | 38 BstAggregate<? super N> aggregate, GeneralRange<K> range, @Nullable N root) { 41 if (root == null || range.isEmpty()) { 44 long total = aggregate.treeValue(root); 46 total -= totalBeyondRangeToSide(aggregate, range, LEFT, root); 49 total -= totalBeyondRangeToSide(aggregate, range, RIGHT, root); 56 BstAggregate<? super N> aggregate, GeneralRange<K> range, BstSide side, @Nullable N root) { 58 while (root != null) { 59 if (beyond(range, root.getKey(), side)) { 60 accum += aggregate.entryValue(root); 61 accum += aggregate.treeValue(root.childOrNull(side)) [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
PartitionAlloc.cpp | 101 static void parititonAllocBaseInit(PartitionRootBase* root) 103 ASSERT(!root->initialized); 114 root->initialized = true; 115 root->totalSizeOfCommittedPages = 0; 116 root->totalSizeOfSuperPages = 0; 117 root->nextSuperPage = 0; 118 root->nextPartitionPage = 0; 119 root->nextPartitionPageEnd = 0; 120 root->firstExtent = 0; 121 root->currentExtent = 0 727 PartitionRootBase* root = partitionPageToRoot(page); local [all...] |
/external/chromium_org/sandbox/win/src/ |
registry_dispatcher.cc | 22 // Builds a path using the root directory and the name. 23 bool GetCompletePath(HANDLE root, const base::string16& name, 25 if (root) { 26 if (!sandbox::GetPathFromHandle(root, complete_name)) 78 IPCInfo* ipc, base::string16* name, DWORD attributes, HANDLE root, 83 // If there is a root directory, we need to duplicate the handle to make 85 if (root) { 86 if (!::DuplicateHandle(ipc->client_info->process, root, 87 ::GetCurrentProcess(), &root, 0, FALSE, 91 root_handle.Set(root); [all...] |
/external/chromium_org/tools/grit/grit/format/ |
rc_header.py | 14 def Format(root, lang='en', output_dir='.'): 25 for output_node in root.GetOutputFiles(): 33 for line in FormatDefines(root, root.ShouldOutputAllResourceDefines(), 34 root.GetRcHeaderFormat()): 38 def FormatDefines(root, output_all_resource_defines=True, 43 root: A GritNode. 48 tids = GetIds(root) 51 items = root.Preorder() 53 items = root.ActiveDescendants( [all...] |
/build/target/product/ |
core_64_bit.mk | 26 PRODUCT_COPY_FILES += system/core/rootdir/init.zygote64_32.rc:root/init.zygote64_32.rc
|
/build/tools/ |
fileslist.py | 27 for root in roots: 28 base = len(root[:root.rfind(os.path.sep)]) 29 for dir, dirs, files in os.walk(root):
|
/device/generic/qemu/ |
ranchu_arm64.mk | 35 system/core/rootdir/init.rc:root/init.rc \ 36 $(LOCAL_PATH)/init.ranchu.rc:root/init.ranchu.rc \ 37 $(LOCAL_PATH)/fstab.ranchu:root/fstab.ranchu \ 38 $(LOCAL_PATH)/ueventd.ranchu.rc:root/ueventd.ranchu.rc)
|