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

<<11121314151617181920>>

  /external/chromium_org/tools/checkperms/
checkperms.py 24 backslashes. All directories should be relative to the source root and all
230 """Returns the git checkout root or None."""
231 root = capture(['git', 'rev-parse', '--show-toplevel'], dir_path).strip()
232 if root:
233 return root
321 def check_files(root, files):
322 gen = (check_file(root, f) for f in files if not is_ignored(f))
400 root = get_git_root(dir_path or cwd)
401 if root:
403 print('Found git repository at %s' % root)
    [all...]
  /external/chromium_org/ui/accessibility/
ax_tree_unittest.cc 62 AXNodeData root; local
63 root.id = 1;
64 root.role = AX_ROLE_ROOT_WEB_AREA;
65 root.state = (1 << AX_STATE_FOCUSABLE) | (1 << AX_STATE_FOCUSED);
66 root.location = gfx::Rect(0, 0, 800, 600);
67 root.child_ids.push_back(2);
68 root.child_ids.push_back(3);
83 initial_state.nodes.push_back(root);
99 EXPECT_EQ(root.id, root_node->id());
100 EXPECT_EQ(root.role, root_node->data().role)
158 AXNodeData root; local
    [all...]
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_damage.cc 31 scoped_refptr<FakeContentLayer> root = FakeContentLayer::Create(&client_); variable
32 root->SetBounds(gfx::Size(10, 10));
34 layer_tree_host()->SetRootLayer(root); variable
93 scoped_refptr<FakeContentLayer> root = FakeContentLayer::Create(&client_); variable
94 root->SetBounds(gfx::Size(10, 10));
96 layer_tree_host()->SetRootLayer(root); variable
160 scoped_refptr<FakeContentLayer> root = FakeContentLayer::Create(&client_); variable
161 root->SetBounds(gfx::Size(10, 10));
166 root->AddChild(content_);
168 layer_tree_host()->SetRootLayer(root); variable
438 LayerImpl* root = host_impl->active_tree()->root_layer(); variable
514 LayerImpl* root = host_impl->active_tree()->root_layer(); variable
559 scoped_refptr<FakePictureLayer> root = FakePictureLayer::Create(&client_); variable
561 layer_tree_host()->SetRootLayer(root); variable
    [all...]
  /external/conscrypt/src/test/java/org/conscrypt/
TrustManagerImplTest.java 75 // chain3 should be server/intermediate/root
78 X509Certificate root = chain3[2]; local
85 assertValid(chain3, trustManager(root));
86 assertValid(chain2, trustManager(root));
87 assertInvalid(chain1, trustManager(root));
96 X509TrustManager tm = trustManager(root);
97 // fail on short chain with only root trusted
108 // chain3 should be server/intermediate/root
111 X509Certificate root = chain3[2]; local
118 assertValid(chain4, trustManager(root));
125 X509Certificate root = chain3[2]; local
147 X509Certificate root = chain3[2]; local
    [all...]
  /external/chromium_org/third_party/freetype/src/cff/
cffgload.c 264 builder->memory = face->root.memory;
268 FT_GlyphLoader loader = glyph->root.internal->loader;
281 CFF_Internal internal = (CFF_Internal)size->root.internal;
285 builder->hints_funcs = glyph->root.internal->glyph_hints;
319 glyph->root.outline = *builder->base;
443 CFF_Internal internal = (CFF_Internal)size->root.internal;
669 if ( face->root.internal->incremental_interface )
673 face->root.internal->incremental_interface->funcs->get_glyph_data(
674 face->root.internal->incremental_interface->object,
708 if ( face->root.internal->incremental_interface
2091 FT_Fixed root = args[0]; local
    [all...]
  /external/freetype/src/cff/
cffgload.c 264 builder->memory = face->root.memory;
268 FT_GlyphLoader loader = glyph->root.internal->loader;
281 CFF_Internal internal = (CFF_Internal)size->root.internal;
285 builder->hints_funcs = glyph->root.internal->glyph_hints;
319 glyph->root.outline = *builder->base;
443 CFF_Internal internal = (CFF_Internal)size->root.internal;
665 if ( face->root.internal->incremental_interface )
669 face->root.internal->incremental_interface->funcs->get_glyph_data(
670 face->root.internal->incremental_interface->object,
704 if ( face->root.internal->incremental_interface
2087 FT_Fixed root = args[0]; local
    [all...]
  /cts/suite/audio_quality/lib/src/task/
ModelBuilder.cpp 91 const TiXmlElement* root; local
92 if ((root = doc.FirstChildElement("case")) != NULL) {
93 return parseCase(*root);
94 } else if (!caseOnly && ((root = doc.FirstChildElement("batch")) != NULL)) {
95 return parseBatch(*root, xmlFileName);
97 LOGE("ModelBuilder::parseTestDescriptionXml wrong root element");
178 TaskCase* ModelBuilder::parseCase(const TiXmlElement& root)
181 return reinterpret_cast<TaskCase*>(parseGeneric(root, 0));
185 TaskBatch* ModelBuilder::parseBatch(const TiXmlElement& root, const android::String8& xmlFileName)
193 if (!parseAttributes(root, *batch.get()))
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
AssignTokenTypesBehavior.java 79 // don't warn until we hit root grammar as may be defined there.
206 public void defineTokens(Grammar root) {
214 assignTokenIDTypes(root);
216 aliasTokenIDsAndLiterals(root);
218 assignStringTypes(root);
225 defineTokenNamesAndLiteralsInGrammar(root);
248 protected void assignStringTypes(Grammar root) {
256 Integer typeI = Utils.integer(root.getNewTokenType());
260 root.defineLexerRuleForStringLiteral(lit, typeI.intValue());
266 protected void aliasTokenIDsAndLiterals(Grammar root) {
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
file_system.py 118 # There is always a root directory.
170 def Walk(self, root, depth=-1, file_lister=None):
171 '''Recursively walk the directories in a file system, starting with root.
175 |dirs| relative to |root|, and |files| and |dirs| the list of files/dirs in
181 def my_file_lister(root):,
184 names under |root|, and |files| is a list of file names under |root|. Note
190 If |root| cannot be found, raises a FileNotFoundError.
193 AssertIsDirectory(root)
194 basepath = root
    [all...]
  /external/chromium_org/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/
ValidationMessageBubble.java 55 final ViewGroup root = (ViewGroup) View.inflate(contentViewCore.getContext(), local
57 mPopup = new PopupWindow(root);
58 updateTextViews(root, mainText, subText);
110 private static void updateTextViews(ViewGroup root, String mainText, String subText) {
111 ((TextView) root.findViewById(R.id.main_text)).setText(mainText);
112 final TextView subTextView = (TextView) root.findViewById(R.id.sub_text);
135 final View root = mPopup.getContentView(); local
136 final int width = root.getMeasuredWidth();
137 final int arrowWidth = root.findViewById(R.id.arrow_image).getMeasuredWidth();
138 return ApiCompatibilityUtils.isLayoutRtl(root)
    [all...]
  /external/chromium_org/sdch/open-vcdiff/packages/rpm/
rpm.spec 16 Buildroot: %{_tmppath}/%{name}-root
51 %defattr(-,root,root)
73 %defattr(-,root,root)
  /external/chromium_org/third_party/bintrees/bintrees/
rbtree.py 78 def jsw_single(root, direction):
80 save = root[other_side]
81 root[other_side] = save[direction]
82 save[direction] = root
83 root.red = True
88 def jsw_double(root, direction):
90 root[other_side] = jsw_single(root[other_side], other_side)
91 return jsw_single(root, direction)
142 def root(self) member in class:RBTree
    [all...]
avltree.py 74 def jsw_single(root, direction):
76 save = root[other_side]
77 root[other_side] = save[direction]
78 save[direction] = root
79 rlh = height(root.left)
80 rrh = height(root.right)
82 root.balance = max(rlh, rrh) + 1
83 save.balance = max(slh, root.balance) + 1
87 def jsw_double(root, direction):
89 root[other_side] = jsw_single(root[other_side], other_side
142 def root(self): member in class:AVLTree
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/packages/rpm/
rpm.spec 16 Buildroot: %{_tmppath}/%{name}-root
60 %defattr(-,root,root)
70 %defattr(-,root,root)
  /external/cmockery/cmockery_0_1_2/packages/rpm/
rpm.spec 21 Buildroot: %{_tmppath}/%{name}-root
56 %defattr(-,root,root)
71 %defattr(-,root,root)
  /external/deqp/framework/delibs/depool/
deMemPool.c 82 * creating the root pool with the deMemPool_createFailingRoot() function.
89 deMemPool* parent; /*!< Pointer to parent (null for root pools). */
219 deMemPool* root = pool; local
220 while (root->parent)
221 root = root->parent;
223 if (pool == root)
224 root->lastAllocatedIndex = 0;
226 pool->allocIndex = ++root->lastAllocatedIndex;
230 root = root;*
307 deMemPool* root = pool->parent; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
OneStepIterator.java 206 int root = getRoot(); local
207 xctxt.pushCurrentNode(root);
208 clone.setRoot(root, xctxt);
268 int root = getRoot(); local
269 xctxt.pushCurrentNode(root);
270 clone.setRoot(root, xctxt);
  /external/chromium_org/ash/wm/
ash_focus_rules.cc 108 aura::Window* root = ignore->GetRootWindow(); local
109 if (!root)
110 root = Shell::GetTargetRootWindow();
113 aura::Window* container = Shell::GetContainer(root, kWindowContainerIds[i]);
140 aura::Window* root = ignore ? ignore->GetRootWindow() : NULL; local
142 kWindowContainerIds[index], root);
  /external/chromium_org/cc/test/
layer_tree_json_parser_unittest.cc 90 scoped_refptr<Layer> root = ParseTreeFromJson(json, NULL); local
91 ASSERT_TRUE(root.get());
92 EXPECT_TRUE(LayerTreesMatch(host_impl.RootLayer(), root.get()));
116 scoped_refptr<Layer> root = ParseTreeFromJson(json, NULL); local
117 ASSERT_TRUE(root.get());
118 EXPECT_TRUE(LayerTreesMatch(host_impl.RootLayer(), root.get()));
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScopeAdopter.cpp 37 void TreeScopeAdopter::moveTreeToNewScope(Node& root) const
56 for (Node* node = &root; node; node = NodeTraversal::next(*node, &root)) {
90 void TreeScopeAdopter::moveTreeToNewDocument(Node& root, Document& oldDocument, Document& newDocument) const
93 for (Node* node = &root; node; node = NodeTraversal::next(*node, &root)) {
  /external/chromium_org/third_party/WebKit/Source/core/html/imports/
HTMLImportsController.cpp 95 UseCounter::count(root()->document(), UseCounter::HTMLImportsAsyncAttribute);
101 return root()->add(child.release());
107 ASSERT(parent == root() || toHTMLImportChild(parent)->loader()->isFirstImport(toHTMLImportChild(parent)));
109 if (HTMLImportChild* childToShareWith = root()->find(request.url())) {
136 return root()->document();
144 return root()->state().shouldBlockScriptExecution();
  /external/chromium_org/third_party/cython/src/Cython/Compiler/Tests/
TestBuffer.py 15 return self.should_not_fail(lambda: self.fragment(s)).root
55 root = self.fragment(s, pipeline=[NormalizeTree(self), PostParse(self)]).root
57 vardef = root.stats[0].body.stats[0]
65 self.assert_(len(root.stats[0].body.stats) == 0)
95 """, pipeline=[NormalizeTree(self), PostParse(self)]).root
  /external/chromium_org/ui/aura/
window_targeter.cc 30 ui::EventTarget* WindowTargeter::FindTargetForEvent(ui::EventTarget* root,
32 Window* window = static_cast<Window*>(root);
35 static_cast<Window*>(EventTargeter::FindTargetForEvent(root, event));
37 // |window| is the root window, but |target| is not a descendent of
45 // the root's coordinate space, and then to the host's coordinate space by
90 ui::EventTarget* root,
92 Window* window = static_cast<Window*>(root);
100 return EventTargeter::FindTargetForLocatedEvent(root, event);
154 // If the initial touch is outside the root window, target the root
    [all...]
  /external/chromium_org/v8/test/benchmarks/
testcfg.py 40 def __init__(self, name, root):
41 super(BenchmarksTestSuite, self).__init__(name, root)
42 self.testroot = root
167 os.chdir(os.path.abspath(self.root))
192 def GetSuite(name, root):
193 return BenchmarksTestSuite(name, root)
  /external/chromium_org/v8/test/mjsunit/tools/
splaytree.js 28 // Load the Splay tree implementation from <project root>/tools.
97 tree.insert(5, 'root');
99 assertArrayEquals(['left', 'root'], tree.exportValues());
101 assertArrayEquals(['right', 'root', 'left'], tree.exportValues());
107 tree.insert(5, 'root');
110 assertEquals('root', tree.find(5).value);
122 tree.insert(5, 'root');
132 tree.insert(5, 'root');
142 tree.insert(5, 'root');
147 assertEquals('root', tree.findGreatestLessThan(6).value)
    [all...]

Completed in 560 milliseconds

<<11121314151617181920>>