HomeSort by relevance Sort by last modified time
    Searched refs:root (Results 51 - 75 of 3265) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
macosxSupport.py 25 def isCarbonAquaTk(root):
33 'aqua' in root.tk.call('tk', 'windowingsystem') and
34 'AppKit' not in root.tk.call('winfo', 'server', '.'))
37 def tkVersionWarning(root):
47 ('AppKit' in root.tk.call('winfo', 'server', '.')) ):
48 patchlevel = root.tk.call('info', 'patchlevel')
58 def addOpenEventSupport(root, flist):
70 root.createcommand("::tk::mac::OpenDocument", doOpenFile)
72 def hideTkConsole(root):
74 root.tk.call('console', 'hide'
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/
TranslatorGLSL.cpp 12 static void writeVersion(ShShaderType type, TIntermNode* root,
15 root->traverse(&versionGLSL);
28 void TranslatorGLSL::translate(TIntermNode* root) {
32 writeVersion(getShaderType(), root, sink); local
43 root->traverse(&outputGLSL);
TranslatorESSL.h 17 virtual void translate(TIntermNode* root);
TranslatorGLSL.h 17 virtual void translate(TIntermNode* root);
  /external/chromium_org/third_party/WebKit/Source/wtf/
TreeNodeTest.cpp 44 RefPtr<TestTree> root = TestTree::create(); local
48 root->appendChild(firstChild.get());
49 ASSERT_EQ(root->firstChild(), firstChild.get());
50 ASSERT_EQ(root->lastChild(), firstChild.get());
51 ASSERT_EQ(firstChild->parent(), root.get());
53 root->appendChild(lastChild.get());
54 ASSERT_EQ(root->firstChild(), firstChild.get());
55 ASSERT_EQ(root->lastChild(), lastChild.get());
58 ASSERT_EQ(lastChild->parent(), root.get());
63 RefPtr<TestTree> root = TestTree::create() local
96 RefPtr<TestTree> root = TestTree::create(); local
126 RefPtr<TestTree> root; member in class:__anon13704::Trio
    [all...]
  /external/chromium_org/ui/base/models/
tree_node_iterator_unittest.cc 25 TestNode root; local
26 root.Add(new TestNode(), 0);
27 root.Add(new TestNode(), 1);
29 root.Add(f3, 2);
34 TreeNodeIterator<TestNode> iterator(&root);
36 ASSERT_EQ(root.GetChild(0), iterator.Next());
39 ASSERT_EQ(root.GetChild(1), iterator.Next());
42 ASSERT_EQ(root.GetChild(2), iterator.Next());
59 TestNode root; local
60 root.Add(new TestNode(1), 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/
tree_remove.pass.cpp 36 Node root; local
43 root.__left_ = &b;
45 b.__parent_ = &root;
70 std::__tree_remove(root.__left_, &y);
71 assert(std::__tree_invariant(root.__left_));
73 assert(root.__parent_ == 0);
74 assert(root.__left_ == &d);
75 assert(root.__right_ == 0);
76 assert(root.__is_black_ == false);
78 assert(d.__parent_ == &root);
101 Node root; local
166 Node root; local
242 Node root; local
321 Node root; local
386 Node root; local
451 Node root; local
516 Node root; local
581 Node root; local
646 Node root; local
711 Node root; local
776 Node root; local
841 Node root; local
906 Node root; local
971 Node root; local
1036 Node root; local
1105 Node root; local
1375 Node root; local
    [all...]
  /external/openssh/contrib/suse/
openssh.spec 196 %defattr(-,root,root)
199 %attr(0755,root,root) %dir %{_sysconfdir}/ssh
200 %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/ssh/ssh_config
201 %attr(0600,root,root) %config(noreplace) %{_sysconfdir}/ssh/sshd_config
202 %attr(0600,root,root) %config(noreplace) %{_sysconfdir}/ssh/modul
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ElementShadow.cpp 144 for (ShadowRoot* root = youngestShadowRoot(); root; root = root->olderShadowRoot())
145 root->lazyReattachIfAttached();
153 // addShadowRoot() affects apply-author-styles. However, we know that the youngest shadow root has not had any children yet.
154 // The youngest shadow root's apply-author-styles is default (false). So we can just set m_applyAuthorStyles false.
188 for (ShadowRoot* root = youngestShadowRoot(); root; root = root->olderShadowRoot())
298 ShadowRoot* root = shadowInsertionPoint->containingShadowRoot(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/packager/
packaging.properties 11 # The chmod and links must indicate a path relative to the root directory.
13 # List the files and folders to be copied into the root of eclipse for all platform
15 root=epl-v10.html, notice.html, configuration/, startup.jar, .eclipseproduct, eclipse.ini, readme/
16 root.permissions.755=eclipse,*.so*
17 root.macosx.carbon.ppc.permissions.755=Eclipse.app/Contents/MacOS/eclipse
19 root.win32.win32.x86=eclipse.exe, eclipsec.exe
20 root.linux.motif.x86=eclipse,libcairo-swt.so,libXm.so.2,about_files/,about.html,icon.xpm
21 root.linux.gtk.x86=eclipse,libcairo-swt.so,about_files/,about.html,icon.xpm
22 root.linux.gtk.x86_64=eclipse,libcairo-swt.so,about_files/,about.html,icon.xpm
23 root.linux.gtk.ppc=eclips
    [all...]
  /external/grub/docs/
menu.lst 16 root (hd0,0)
17 kernel /boot/gnumach.gz root=hd0s1
22 root (hd1,0)
23 kernel /vmlinuz root=/dev/hdb1
28 root (hd0,2,a)
33 root (hd0,2,a)
38 root (hd0,2)
40 kernel (fd0)/boot/kernel root=hd0s3
45 root (hd0,2,a)
50 root (hd0,2,a
    [all...]
  /external/chromium_org/tools/grit/grit/node/
include_unittest.py 26 root = misc.GritNode()
27 root.StartParsing(u'grit', None)
28 root.HandleAttribute(u'latest_public_release', u'0')
29 root.HandleAttribute(u'current_release', u'1')
30 root.HandleAttribute(u'base_dir', ur'..\resource')
32 release.StartParsing(u'release', root)
34 root.AddChild(release)
42 root.EndParsing()
44 self.assertEqual(root.ToRealPath(include_node.GetInputPath()),
49 root = misc.GritNode(
    [all...]
  /external/chromium_org/build/linux/
pkg-config-wrapper 12 # LSB-compliant root filesystem mounted at the sysroot, and a board build
18 root="$1"
23 if [ -z "$root" -o -z "$target_arch" ]
39 config_path=$root/usr/$libpath/pkgconfig:$root/usr/share/pkgconfig
57 echo "$result"| $rewrite --sysroot "$root" --strip-prefix "$prefix"
  /external/e2fsprogs/intl/
os2compat.c 51 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, sl)
    [all...]
  /external/chromium_org/net/data/ssl/scripts/
generate-cross-signed-certs.sh 15 # cert that is "cross-signed" by the trusted SHA1 root.
17 # The SHA1 root should be (temporarily) trusted, and the resulting chain
29 try echo 1 > out/2048-sha1-root-serial
30 try echo 2 > out/2048-md5-root-serial
31 touch out/2048-sha1-root-index.txt
32 touch out/2048-md5-root-index.txt
35 try openssl genrsa -out out/2048-sha1-root.key 2048
37 # Generate the root certificate
38 CA_COMMON_NAME="Test Dup-Hash Root CA" \
41 -key out/2048-sha1-root.key
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
DocumentStack.java 38 public RootInfo root; field in class:DocumentStack
41 if (size() == 1 && root != null) {
42 return root.title;
55 for (RootInfo root : matchingRoots) {
56 if (root.equals(this.root)) {
57 this.root = root;
61 throw new FileNotFoundException("Failed to find matching root for " + root);
    [all...]
  /external/chromium_org/base/json/
json_string_value_serializer.cc 15 bool JSONStringValueSerializer::Serialize(const Value& root) {
16 return SerializeInternal(root, false);
20 const Value& root) {
21 return SerializeInternal(root, true);
24 bool JSONStringValueSerializer::SerializeInternal(const Value& root,
35 base::JSONWriter::WriteWithOptions(&root, options, json_string_);
  /external/chromium_org/chrome/test/ui/
javascript_test_util.cc 19 scoped_ptr<Value> root(deserializer.Deserialize(NULL, NULL));
23 EXPECT_TRUE(root.get());
24 if (!root.get())
27 EXPECT_TRUE(root->IsType(Value::TYPE_DICTIONARY));
28 if (!root->IsType(Value::TYPE_DICTIONARY))
31 DictionaryValue* dict = static_cast<DictionaryValue*>(root.get());
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
HTMLShadowElement.cpp 76 ShadowRoot* root = containingShadowRoot(); local
77 if (root && root->olderShadowRoot() && root->type() != root->olderShadowRoot()->type()) {
78 String message = String::format("<shadow> doesn't work for %s element host.", root->host()->tagName().utf8().data());
  /external/chromium_org/cc/trees/
damage_tracker_unittest.cc 23 void ExecuteCalculateDrawProperties(LayerImpl* root,
25 // Sanity check: The test itself should create the root layer's render
28 ASSERT_TRUE(root->render_surface());
32 root, root->bounds(), &render_surface_layer_list);
45 void EmulateDrawingOneFrame(LayerImpl* root) {
53 ExecuteCalculateDrawProperties(root, render_surface_layer_list);
69 root->ResetAllChangeTrackingForSubtree();
77 scoped_ptr<LayerImpl> root = local
82 root->SetPosition(gfx::PointF())
105 scoped_ptr<LayerImpl> root = local
163 scoped_ptr<LayerImpl> root = CreateTestTreeWithOneSurface(); local
173 scoped_ptr<LayerImpl> root = CreateTestTreeWithTwoSurfaces(); local
191 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local
207 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local
228 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local
266 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local
315 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local
364 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local
403 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local
438 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local
476 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local
609 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local
661 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local
692 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local
725 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local
770 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local
806 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local
830 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local
881 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local
911 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local
930 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local
1032 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local
1125 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local
1197 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithTwoSurfaces(); local
1254 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local
1288 scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl_.active_tree(), 1); local
1311 scoped_ptr<LayerImpl> root = CreateAndSetUpTestTreeWithOneSurface(); local
    [all...]
  /external/chromium_org/ui/views/controls/menu/
menu_controller_aura.cc 22 // the menu. Additionally it listens for the root window to be destroyed and
30 aura::Window* root)
32 root_(root) {
87 aura::Window* root = GetOwnerRootWindow(owner_); local
88 if (root) {
91 observer.reset(new ActivationChangeObserverImpl(this, root));
92 aura::client::GetDispatcherClient(root)->
103 aura::Window* root = GetOwnerRootWindow(owner_); local
104 return !aura::client::GetDragDropClient(root) ||
105 !aura::client::GetDragDropClient(root)->IsDragDropInProgress()
109 aura::Window* root = GetOwnerRootWindow(owner_); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerStackingNodeIterator.h 53 RenderLayerStackingNodeIterator(const RenderLayerStackingNode& root, unsigned whichChildren)
54 : m_root(root)
73 RenderLayerStackingNodeReverseIterator(const RenderLayerStackingNode& root, unsigned whichChildren)
74 : m_root(root)
  /external/v8/test/es5conform/
testcfg.py 39 def __init__(self, filename, path, context, root, mode, framework):
43 self.root = root
73 def __init__(self, context, root):
74 super(ES5ConformTestConfiguration, self).__init__(context, root)
78 current_root = join(self.root, 'data', 'TestCases')
80 harness += [join(self.root, 'data', 'SimpleTestHarness', f) for f in HARNESS_FILES]
81 harness += [join(self.root, 'harness-adapt.js')]
82 for root, dirs, files in os.walk(current_root):
86 root_path = root[len(self.root):].split(os.path.sep
    [all...]
  /frameworks/base/tests/backup/
test_backup_common.sh 22 # restart adb as root and wait for it to come back again
25 root_status=$(a root)
26 if [ "$root_status" != "adbd is already running as root" ]; then
27 echo -n "Restarting adb as root..."
  /external/chromium_org/ui/events/
event_targeter.cc 16 EventTarget* EventTargeter::FindTargetForEvent(EventTarget* root,
22 return FindTargetForLocatedEvent(root,
25 return root;
28 EventTarget* EventTargeter::FindTargetForLocatedEvent(EventTarget* root,
30 scoped_ptr<EventTargetIterator> iter = root->GetChildIterator();
32 EventTarget* target = root;
46 target->ConvertEventToTarget(root, event);
48 return root->CanAcceptEvent(*event) ? root : NULL;

Completed in 858 milliseconds

1 23 4 5 6 7 8 91011>>