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

1 2 3 4 56 7 8 91011>>

  /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):
  /external/chromium_org/chrome/installer/util/
uninstall_metrics.h 18 bool ExtractUninstallMetrics(const base::DictionaryValue& root,
  /external/chromium_org/extensions/common/
file_util.h 21 // points a file outside of root, this function will return empty FilePath.
23 const base::FilePath& root);
  /external/chromium_org/gpu/tools/compositor_model_bench/
render_model_utils.h 27 explicit TextureGenerator(RenderNode* root);
43 void DiscoverInputIDs(RenderNode* root);
46 void WriteOutNewIDs(RenderNode* root);
48 void BuildTextureImages(RenderNode* root);
  /external/chromium_org/sandbox/win/src/
sandbox_utils.h 22 HANDLE root,
  /external/chromium_org/third_party/freetype/include/freetype/internal/
pcftypes.h 41 FT_FaceRec root; member in struct:PCF_Public_FaceRec_
  /external/chromium_org/third_party/freetype/src/autofit/
afmodule.h 41 FT_ModuleRec root; member in struct:AF_ModuleRec_
  /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()):
37 def FormatDefines(root, output_all_resource_defines=True):
41 root: A GritNode.
46 tids = GetIds(root)
49 items = root.Preorder()
51 items = root.ActiveDescendants()
64 for item in root.ActiveDescendants()
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
ordered_dict.py 45 self.__root = root = [] # sentinel node
46 root[:] = [root, root, None]
55 root = self.__root
56 last = root[0]
57 last[1] = root[0] = self.__map[key] = [last, root, key]
71 root = self.__root
72 curr = root[1
    [all...]
  /external/chromium_org/ui/base/x/
root_window_property_watcher_x.cc 24 GdkWindow* root = gdk_get_default_root_window(); local
29 gdk_window_set_events(root,
30 static_cast<GdkEventMask>(gdk_window_get_events(root) |
32 gdk_window_add_filter(root,
  /external/chromium_org/ui/events/
event_processor_unittest.cc 22 root()->SetEventTargeter(make_scoped_ptr(new EventTargeter()));
25 TestEventTarget* root() { function in class:ui::test::EventProcessorTest
41 root()->AddChild(child.Pass());
46 EXPECT_TRUE(root()->child_at(0)->DidReceiveEvent(ET_MOUSE_MOVED));
47 EXPECT_FALSE(root()->DidReceiveEvent(ET_MOUSE_MOVED));
49 root()->RemoveChild(root()->child_at(0));
51 EXPECT_TRUE(root()->DidReceiveEvent(ET_MOUSE_MOVED));
120 root()->AddChild(scoped_ptr<TestEventTarget>(parent.Pass()));
122 ASSERT_EQ(1u, root()->child_count())
    [all...]
  /external/chromium_org/ui/oak/
oak_tree_model.cc 31 TreeOfWindows* GenerateModel(aura::Window* root) {
32 WindowNode* root_node = new WindowNode(GetNodeTitleForWindow(root), root);
34 AddChildWindows(root, root_node);
oak_tree_model.h 21 TreeOfWindows* GenerateModel(aura::Window* root);
  /external/chromium_org/v8/tools/testrunner/local/
junit_output.py 34 self.root = xml.Element("testsuite")
35 self.root.attrib["name"] = test_suite_name
45 self.root.append(testCaseElement)
48 xml.ElementTree(self.root).write(file, "UTF-8")
  /external/freetype/include/freetype/internal/
pcftypes.h 41 FT_FaceRec root; member in struct:PCF_Public_FaceRec_
  /external/freetype/src/autofit/
afmodule.h 41 FT_ModuleRec root; member in struct:AF_ModuleRec_
  /external/v8/src/
snapshot-common.cc 77 Object* root; local
78 deserializer.DeserializePartial(&root);
79 CHECK(root->IsContext());
80 return Handle<Context>(Context::cast(root));
  /external/v8/test/mozilla/
testcfg.py 59 def __init__(self, filename, path, context, root, mode, framework):
63 self.root = root
78 [ '--expose-gc', join(self.root, 'mozilla-shell-emulation.js') ]
92 def __init__(self, context, root):
93 super(MozillaTestConfiguration, self).__init__(context, root)
98 current_root = join(self.root, 'data', test_dir)
99 for root, dirs, files in os.walk(current_root):
106 root_path = root[len(self.root):].split(os.path.sep
    [all...]
  /frameworks/native/opengl/tests/gldual/src/com/android/gldual/
GLDualActivity.java 34 View root = getLayoutInflater().inflate(R.layout.gldual_activity, null); local
35 mGLView = (GLSurfaceView) root.findViewById(R.id.gl1);
38 mGL2View = (GLDualGL2View) root.findViewById(R.id.gl2);
39 setContentView(root);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementnormalize.java 66 Element root; local
72 root = doc.getDocumentElement();
73 root.normalize();
74 elementList = root.getElementsByTagName("name");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkFont.py 66 def __init__(self, root=None, font=None, name=None, exists=False, **options):
67 if not root:
68 root = Tkinter._default_root
71 font = root.tk.splitlist(root.tk.call("font", "actual", font))
81 if self.name not in root.tk.call("font", "names"):
85 root.tk.call("font", "configure", self.name, *font)
88 root.tk.call("font", "create", self.name, *font)
91 self._root = root
92 self._split = root.tk.splitlis
183 root = Tkinter.Tk() variable
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkFont.py 66 def __init__(self, root=None, font=None, name=None, exists=False, **options):
67 if not root:
68 root = Tkinter._default_root
71 font = root.tk.splitlist(root.tk.call("font", "actual", font))
81 if self.name not in root.tk.call("font", "names"):
85 root.tk.call("font", "configure", self.name, *font)
88 root.tk.call("font", "create", self.name, *font)
91 self._root = root
92 self._split = root.tk.splitlis
183 root = Tkinter.Tk() variable
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
LayoutRenderer.java 78 ViewNode root = scene.getRoot(); local
79 if (root == null) {
83 int x = (getWidth() - insets.left - insets.right - root.width) / 2;
84 int y = (getHeight() - insets.top - insets.bottom - root.height) / 2;
88 g.drawRect(root.left, root.top, root.width - 1, root.height - 1);
89 g.clipRect(root.left - 1, root.top - 1, root.width + 1, root.height + 1)
139 ViewNode root = scene.getRoot(); local
    [all...]
  /external/chromium_org/ui/views/corewm/
capture_controller.cc 16 void CaptureController::Attach(aura::Window* root) {
17 DCHECK_EQ(0u, root_windows_.count(root));
18 root_windows_.insert(root);
19 aura::client::SetCaptureClient(root, this);
22 void CaptureController::Detach(aura::Window* root) {
23 root_windows_.erase(root);
24 aura::client::SetCaptureClient(root, NULL);
34 // Make sure window has a root window.
109 ScopedCaptureClient::ScopedCaptureClient(aura::Window* root)
110 : root_window_(root) {
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DisplayListLayersActivity.java 43 LinearLayout root = createContainer(); local
44 addChild(root, new LayerView(this, 0xffff0000, LAYER_TYPE_HARDWARE, "hardware"),
46 addChild(root, new LayerView(this, 0xff0000ff, LAYER_TYPE_SOFTWARE, "software"),
48 addChild(root, createButton(root), WRAP_CONTENT, WRAP_CONTENT);
50 setContentView(root);
53 private Button createButton(final LinearLayout root) {
59 for (int i = 0; i < root.getChildCount(); i++) {
60 View child = root.getChildAt(i);
71 private void addChild(LinearLayout root, View child, int width, int height)
    [all...]

Completed in 463 milliseconds

1 2 3 4 56 7 8 91011>>