HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 1351 - 1375 of 2913) sorted by null

<<51525354555657585960>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventRepeater.cs 185 public virtual void AddChild( object root, object child )
187 _listener.AddChild( root, child );
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
trace-event-listener.rb 81 def add_child( root, child )
83 @adaptor.unique_id( child )
  /external/chromium_org/ash/system/chromeos/settings/
tray_settings.cc 99 virtual void ChildPreferredSizeChanged(views::View* child) OVERRIDE {
100 views::View::ChildPreferredSizeChanged(child);
  /external/chromium_org/base/files/
file_path.h 191 // and BaseName().value() on each child component.
201 // Returns true if this FilePath is a strict parent of the |child|. Absolute
206 bool IsParent(const FilePath& child) const;
208 // If IsParent(child) holds, appends to path (if non-NULL) the
209 // relative path to child and returns true. For example, if parent
210 // holds "/Users/johndoe/Library/Application Support", child holds
213 // parent.AppendRelativePath(child, path) is called *path will hold
216 bool AppendRelativePath(const FilePath& child, FilePath* path) const;
  /external/chromium_org/base/
tracked_objects.cc 36 // Flag to compile out parent-child link recording.
408 Births* child; local
410 child = it->second;
411 child->RecordBirth();
413 child = new Births(location, *this); // Leak this.
417 birth_map_[location] = child;
423 ParentChildPair pair(parent, child);
432 return child;
884 child(*parent_child.second) {
  /external/chromium_org/build/android/gyp/
jarjar_resources.py 56 for child in node.childNodes:
57 RenameNodes(child, rules)
  /external/chromium_org/chrome/browser/resources/
about_memory.css 32 h2:first-child {
156 table.list:not([class*='filtered']) tr:nth-child(odd) td {
188 table.list tr td:nth-last-child(1),
189 table.list tr th:nth-last-child(1) {
  /external/chromium_org/chrome/browser/resources/sync_file_system_internals/
main.css 31 tbody tr:nth-child(odd) {
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_button.h 133 // Called just before a child folder puts itself on screen.
134 - (void)childFolderWillShow:(id<BookmarkButtonControllerProtocol>)child;
136 // Called just before a child folder closes.
137 - (void)childFolderWillClose:(id<BookmarkButtonControllerProtocol>)child;
  /external/chromium_org/content/renderer/compositor_bindings/
web_layer_impl.h 63 virtual void addChild(blink::WebLayer* child);
64 virtual void insertChild(blink::WebLayer* child, size_t index);
  /external/chromium_org/ppapi/generators/
idl_lint.py 102 for child in childdata:
103 warnings += child
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Node.cpp 659 for (Node* child = firstChild(); child; child = child->nextSibling()) {
660 if (child->childNeedsDistributionRecalc())
661 child->recalcDistribution();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ComposedTreeWalker.h 167 while (Node* child = traverseLastChild(previous))
168 previous = child;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
layersPanel.css 72 .layer-details-view table td:first-child {
  /external/chromium_org/third_party/skia/samplecode/
SampleApp.h 147 virtual void beforeChild(SkView* child, SkCanvas* canvas) SK_OVERRIDE;
148 virtual void afterChild(SkView* child, SkCanvas* canvas) SK_OVERRIDE;
  /external/chromium_org/third_party/skia/src/animator/
SkAnimateMaker.h 47 void childrenAdd(SkDisplayable* child) { *fChildren.append() = child; }
  /external/chromium_org/tools/cr/cr/targets/
target.py 85 for child in cls.__subclasses__():
86 for t in child.AllTargets():
  /external/chromium_org/tools/grit/grit/gather/
interface.py 51 overridden by the child gatherer.
62 overridden by the child gatherer.
  /external/chromium_org/ui/gfx/geometry/
r_tree_base.h 62 // Recomputes our bounds by taking the union of all child rects, then calls
124 // this Node as its sole child. Valid to call only on root Nodes, meaning
139 // Given a pointer to a child node within this Node, removes it from our
140 // list. If that child had any children, appends them to the supplied orphan
141 // list. Returns the removed child. Does not recompute bounds, as the caller
146 // Returns the best parent for insertion of the provided |node| as a child.
149 // Adds |node| as a child of this Node, and recomputes the bounds of this
150 // node after the addition of the child. Returns the new count of children
160 const NodeBase* child(size_t i) const { return children_[i]; } function in class:gfx::RTreeBase::Node
161 NodeBase* child(size_t i) { return children_[i]; function in class:gfx::RTreeBase::Node
    [all...]
  /external/chromium_org/v8/src/
heap-snapshot-generator.h 400 Object* child,
405 Object* child);
409 Object* child);
413 Object* child,
418 Object* child,
423 Object* child);
437 Object* child,
444 VisitorSynchronization::SyncTag tag, bool is_weak, Object* child);
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringSyntaxChecker.cpp 173 if (Stmt *child = *I)
174 Visit(child);
ObjCContainersASTChecker.cpp 157 if (Stmt *child = *I)
158 Visit(child);
VirtualCallChecker.cpp 129 if (Stmt *child = *I)
130 Visit(child);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
DomFront.java 132 for (SsaBasicBlock child : node.getDomChildren()) {
136 sb.append(child);
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 334 // values, loads, and calls as well as the generation. There is a child
342 DomTreeNode::iterator child, DomTreeNode::iterator end) :
344 ChildIter(child), EndIter(end),
355 DomTreeNode *child = *ChildIter; local
357 return child;
603 // Push the next child onto the stack.
604 DomTreeNode *child = NodeToProcess->nextChild(); local
609 NodeToProcess->childGeneration(), child,
610 child->begin(), child->end()))
    [all...]

Completed in 1307 milliseconds

<<51525354555657585960>>