/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
CommonTreeNodeStream.java | 42 protected Object root; field in class:CommonTreeNodeStream 44 /** If this tree (root) was created from a token stream, track it. */ 59 /** Tracks tree depth. Level=0 means we're at root node level. */ 67 this.root = tree; 69 it = new TreeIterator(adaptor,root); 91 if ( level==0 && adaptor.isNil(t) ) { // if nil root, scarf nil, DOWN 104 public Object getTreeSource() { return root; }
|
TreeIterator.java | 43 protected Object root; field in class:TreeIterator 64 this.root = tree; 73 tree = root; 78 if ( firstTime ) return root!=null; 82 return adaptor.getParent(tree)!=null; // back at root? 108 // while we're out of siblings, keep popping back up towards root 118 tree = null; // back at root? nothing left then
|
/external/blktrace/ |
btrace.spec | 48 %defattr(-,root,root)
|
/external/chromium_org/ash/display/ |
screen_position_controller.cc | 63 // Finds the root window at |location| in |window|'s coordinates and returns a 64 // pair of root window and location in that root window's coordinates. The 66 // is moved outside the |window|'s root while the mouse is captured, it returns 67 // the other root window. 83 // the secondary root window's coordinates, or (1000, 123) in 86 // in the *primary* root window's coordinates, is sent to Chrome 87 // (Remember that in the native X11 world, the two root windows 90 // primary root window's coordinates is actually (0, 123) in the 91 // extended root window's coordinates 125 const aura::Window* root = window->GetRootWindow(); local 135 const aura::Window* root = window->GetRootWindow(); local 145 aura::Window* root = root_window->GetRootWindow(); local [all...] |
/external/chromium_org/ash/shelf/ |
shelf_alignment_menu.h | 22 explicit ShelfAlignmentMenu(aura::Window* root);
|
/external/chromium_org/ash/shell/ |
context_menu.h | 24 explicit ContextMenu(aura::Window* root);
|
/external/chromium_org/athena/screen/public/ |
screen_manager.h | 41 static ScreenManager* Create(aura::Window* root);
|
/external/chromium_org/chrome/browser/media_galleries/ |
imported_media_gallery_registry.cc | 54 base::FilePath root = ImportedRoot(); local 55 if (root.empty()) 61 root.AppendASCII("picasa")); 91 base::FilePath root = ImportedRoot(); local 92 if (root.empty()) 98 root.AppendASCII("itunes")); 130 base::FilePath root = ImportedRoot(); local 131 if (root.empty()) 137 root.AppendASCII("iphoto"));
|
/external/chromium_org/chrome/browser/ui/webui/ |
cookies_tree_model_util.h | 35 // Gets tree node from |path| under |root|. |path| is comma separated list of 38 const CookieTreeNode* GetTreeNodeFromPath(const CookieTreeNode* root,
|
/external/chromium_org/chrome/common/ |
ini_parser.h | 51 const base::DictionaryValue& root() const { return root_; } function in class:DictionaryValueINIParser
|
/external/chromium_org/chrome/installer/util/ |
product_unittest.cc | 79 HKEY root = installer_state.root_key(); local 82 override_manager.OverrideRegistry(root); 90 RegKey version_key(root, distribution->GetVersionKey().c_str(), 114 key.Create(root, state_key_path.c_str(), KEY_ALL_ACCESS));
|
/external/chromium_org/components/component_updater/ |
component_patcher.cc | 34 scoped_ptr<base::Value> root(serializer.Deserialize(NULL, NULL)); 36 return (root.get() && root->IsType(base::Value::TYPE_LIST)) 37 ? static_cast<base::ListValue*>(root.release())
|
/external/chromium_org/content/browser/accessibility/ |
browser_accessibility_manager_mac.h | 25 virtual BrowserAccessibility* GetFocus(BrowserAccessibility* root) OVERRIDE;
|
/external/chromium_org/content/public/browser/android/ |
compositor.h | 45 virtual void SetRootLayer(scoped_refptr<cc::Layer> root) = 0;
|
/external/chromium_org/extensions/common/ |
update_manifest.cc | 59 // Returns child nodes of |root| with name |name| in namespace |xml_namespace|. 60 static std::vector<xmlNode*> GetChildren(xmlNode* root, xmlNs* xml_namespace, 63 for (xmlNode* child = root->children; child != NULL; child = child->next) { 236 xmlNode *root = xmlDocGetRootElement(document.get()); local 237 if (!root) { 238 ParseError("Missing root node"); 243 xmlNs* gupdate_ns = GetNamespace(root, kExpectedGupdateXmlns); 249 if (!TagNameEquals(root, "gupdate", gupdate_ns)) { 255 if (GetAttribute(root, "protocol") != kExpectedGupdateProtocol) { 262 std::vector<xmlNode*> daystarts = GetChildren(root, gupdate_ns, "daystart") [all...] |
/external/chromium_org/gpu/config/ |
gpu_dx_diagnostics_win.cc | 113 IDxDiagContainer* root = NULL; local 114 hr = provider->GetRootContainer(&root); 119 hr = root->GetChildContainer(L"DxDiag_DisplayDevices", 127 root->Release();
|
/external/chromium_org/mojo/tools/package_manager/ |
manifest.h | 37 bool PopulateDeps(const base::DictionaryValue* root, std::string* err_msg);
|
/external/chromium_org/sync/syncable/ |
deferred_on_disk_directory_backing_store_unittest.cc | 39 // Test initialization of root entry when calling Load(). 45 ASSERT_EQ(1u, handles_map_.size()); // root node 47 EntryKernel* root = handles_map_[1]; local 48 EXPECT_TRUE(root->ref(ID).IsRoot()); 49 EXPECT_EQ(1, root->ref(META_HANDLE)); 50 EXPECT_TRUE(root->ref(IS_DIR)); 106 ASSERT_TRUE(handles_map_.count(1)); // root node
|
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/ |
ShadowRoot.cpp | 168 if (ShadowRoot* root = host()->containingShadowRoot()) { 169 root->addChildShadowRoot(); 179 ShadowRoot* root = host()->containingShadowRoot(); local 180 if (!root) 181 root = insertionPoint->containingShadowRoot(); 182 if (root) 183 root->removeChildShadowRoot(); 198 if (ShadowRoot* root = point->containingShadowRoot()) 199 root->owner()->setNeedsDistributionRecalc();
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
DOMFileSystemSync.h | 60 DirectoryEntrySync* root();
|
/external/chromium_org/third_party/angle/src/compiler/translator/ |
TranslatorHLSL.h | 25 virtual void translate(TIntermNode* root);
|
/external/chromium_org/third_party/icu/source/test/letest/ |
letest.h | 47 U_CFUNC void addCTests(TestNode **root);
|
/external/chromium_org/third_party/skia/gm/rebaseline_server/ |
results.py | 199 def _read_builder_dicts_from_root(self, root, pattern='*.json'): 205 root: path to root of directory tree 206 pattern: which files to read within root (fnmatch-style pattern) 214 IOError if root does not refer to an existing directory 218 if not os.path.isdir(root): 219 raise IOError('no directory found at path %s' % root) 221 for dirpath, _, filenames in os.walk(root): 231 def read_dicts_from_root(root, pattern='*.json'): 238 root: path to root of directory tre [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkRTree.h | 115 * A node in the tree, has between fMinChildren and fMaxChildren (the root is a special case) 160 Branch* insert(Node* root, Branch* branch, uint16_t level = 0); 162 int chooseSubtree(Node* root, Branch* branch); 165 void search(Node* root, const SkIRect query, SkTDArray<void*>* results) const; 181 int validateSubtree(Node* root, SkIRect bounds, bool isRoot = false) const;
|
/external/chromium_org/third_party/webrtc/tools/rtcbot/test/ |
ping_pong.js | 4 // that can be found in the LICENSE file in the root of the source 7 // be found in the AUTHORS file in the root of the source tree.
|