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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/bin/build/
treescan.py 31 def ScanTreeForJsFiles(root):
35 root: str, Path to a root directory.
40 return ScanTree(root, path_filter=_JS_FILE_REGEX)
43 def ScanTree(root, path_filter=None, ignore_hidden=True):
47 root: str, Path to a root directory.
60 for dirpath, dirnames, filenames in os.walk(root, onerror=OnError):
  /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 19 HANDLE root,
sandbox_utils.cc 16 HANDLE root,
27 InitializeObjectAttributes(obj_attr, uni_name, attributes, root, NULL);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
BidiRunForLine.h 32 TextDirection determinePlaintextDirectionality(RenderObject* 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/gyp/pylib/gyp/
ordered_dict.py 66 self.__root = root = [] # sentinel node
67 root[:] = [root, root, None]
76 root = self.__root
77 last = root[0]
78 last[1] = root[0] = self.__map[key] = [last, root, key]
92 root = self.__root
93 curr = root[1
    [all...]
  /external/chromium_org/ui/views/controls/menu/
menu_message_loop_aura.cc 46 // the menu. Additionally it listens for the root window to be destroyed and
53 ActivationChangeObserverImpl(MenuController* controller, aura::Window* root)
54 : controller_(controller), root_(root) {
113 aura::Window* root = window->GetRootWindow(); local
114 ScreenPositionClient* spc = aura::client::GetScreenPositionClient(root);
119 spc->ConvertPointFromScreen(root, &root_loc);
124 root->GetHost()->dispatcher()->RepostEvent(clone);
132 aura::Window* root = GetOwnerRootWindow(owner_); local
142 if (root) {
145 observer.reset(new ActivationChangeObserverImpl(controller, root));
186 aura::Window* root = GetOwnerRootWindow(owner_); local
    [all...]
  /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/fio/
cgroup.c 18 char *root; member in struct:cgroup_member
66 cm->root = smalloc_strdup(name);
67 if (!cm->root) {
91 rmdir(cm->root);
93 sfree(cm->root);
132 static int cgroup_write_pid(struct thread_data *td, const char *root)
136 return write_int_to_file(td, root, "tasks", val, "cgroup write pid");
140 * Move pid to root class
149 char *root; local
160 root = get_cgroup_root(td, *mnt)
    [all...]
  /external/freetype/src/autofit/
afmodule.h 41 FT_ModuleRec root; member in struct:AF_ModuleRec_
  /external/libcxx/test/
makemake.py 19 for root, _dirs, files in os.walk('.'):
22 path = os.path.join(root, test)
27 with open(os.path.join(root, 'Android.mk'), 'w') as makefile:
29 'external/libcxx/test/', root, 'Android.mk'))
  /external/chromium_org/ui/wm/core/
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.
110 ScopedCaptureClient::ScopedCaptureClient(aura::Window* root)
111 : root_window_(root) {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
WhiteSpaceInfo.java 82 public void recompose(StylesheetRoot root)
84 root.recomposeWhiteSpaceInfo(this);
  /external/chromium_org/build/android/pylib/utils/
host_utils.py 12 for root, dirs, files in os.walk(path):
13 running_size += sum([os.path.getsize(os.path.join(root, f))
  /external/chromium_org/chrome/installer/util/
registry_key_backup.h 29 bool Initialize(HKEY root, const wchar_t* key_path, REGSAM wow64_acccess);
34 bool WriteTo(HKEY root, const wchar_t* key_path, REGSAM wow64_acccess) const;
  /external/chromium_org/third_party/bintrees/bintrees/
cwalker.pxd 13 cdef node_t *root
16 cdef void set_tree(self, node_t *root)
  /external/chromium_org/tools/gyp/test/standalone/
gyptest-standalone.py 21 for root, dirs, files in os.walk("."):
26 file = os.path.join(root, file)
  /external/chromium_org/ui/compositor/
layer_tree_owner.cc 27 LayerTreeOwner::LayerTreeOwner(Layer* root) : root_(root) {}
  /external/chromium_org/ui/events/test/
test_event_processor.cc 15 void TestEventProcessor::SetRoot(scoped_ptr<EventTarget> root) {
16 root_ = root.Pass();
  /external/chromium_org/ui/views/
view_targeter_delegate.cc 30 View* ViewTargeterDelegate::TargetForRect(View* root, const gfx::Rect& rect) {
43 for (int i = root->child_count() - 1; i >= 0; --i) {
44 View* child = root->child_at(i);
53 View::ConvertRectToTarget(root, child, &rect_in_child_coords_f);
65 View::ConvertRectToTarget(cur_view, root, &cur_view_bounds_f);
88 return root;
90 // If |root| is a suitable candidate for rect-based targeting, check to
92 gfx::Rect local_bounds(root->GetLocalBounds());
98 rect_view = root;
  /external/llvm/utils/
countloc.sh 28 TOPDIR=`llvm-config --src-root`
  /external/chromium_org/third_party/WebKit/Source/wtf/
NonCopyingSort.h 37 ptrdiff_t root = start; local
39 while (root * 2 + 1 <= end) {
40 ptrdiff_t child = root * 2 + 1;
44 if (compareLess(array[root], array[child])) {
45 swap(array[root], array[child]);
46 root = child;
  /external/chromium_org/third_party/angle/src/compiler/translator/
Compiler.cpp 184 TIntermNode* root = parseContext.treeRoot; local
185 success = intermediate.postProcess(root);
189 success = limitExpressionComplexity(root);
192 success = detectCallDepth(root, infoSink, (compileOptions & SH_LIMIT_CALL_STACK_DEPTH) != 0);
195 success = validateOutputs(root);
198 success = validateLimitations(root);
201 success = enforceTimingRestrictions(root, (compileOptions & SH_DEPENDENCY_GRAPH) != 0);
204 rewriteCSSShader(root);
210 root->traverse(&marker);
215 root->traverse(&marker)
    [all...]

Completed in 1259 milliseconds

1 2 3 45 6 7 8 91011>>