/external/chromium_org/third_party/WebKit/Source/web/painting/ |
ContinuousPainter.cpp | 55 const Vector<GraphicsLayer*>& children = layer->children(); local 57 for (it = children.begin(); it != children.end(); ++it)
|
/external/chromium_org/gpu/config/ |
dx_diag_node.h | 22 std::map<std::string, DxDiagNode> children; member in struct:gpu::DxDiagNode
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRBaseTree.h | 31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable 46 // is nil, add all children of t to this' children. 56 // Indicates the node is a nil node but may still have children, meaning 77 - (id) copyWithZone:(NSZone *)aZone; // the children themselves are not copied here! 100 NSMutableArray *children; variable 104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable 121 // is nil, add all children of t to this' children. 130 // Indicates the node is a nil node but may still have children, meanin [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRBaseTree.h | 31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable 46 // is nil, add all children of t to this' children. 56 // Indicates the node is a nil node but may still have children, meaning 77 - (id) copyWithZone:(NSZone *)aZone; // the children themselves are not copied here! 100 NSMutableArray *children; variable 104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable 121 // is nil, add all children of t to this' children. 130 // Indicates the node is a nil node but may still have children, meanin [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRBaseTree.h | 31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable 46 // is nil, add all children of t to this' children. 56 // Indicates the node is a nil node but may still have children, meaning 77 - (id) copyWithZone:(NSZone *)aZone; // the children themselves are not copied here! 100 NSMutableArray *children; variable 104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable 121 // is nil, add all children of t to this' children. 130 // Indicates the node is a nil node but may still have children, meanin [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRBaseTree.h | 42 - (AMutableArray *)children; 48 // is nil, add all children of t to this' children. 58 // Indicates the node is a nil node but may still have children, meaning 79 - (id) copyWithZone:(NSZone *)aZone; // the children themselves are not copied here! 98 @property (retain) AMutableArray *children; variable 105 __strong AMutableArray *children; variable 117 - (AMutableArray *)children; 125 // is nil, add all children of t to this' children 173 @property (retain) AMutableArray *children; variable [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ParentNode.h | 40 static PassRefPtr<HTMLCollection> children(ContainerNode* node) function in class:WebCore::ParentNode 42 return node->children();
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
RemoveNodePreservingChildrenCommand.cpp | 44 Vector<RefPtr<Node> > children; local 46 children.append(child); 48 size_t size = children.size(); 50 RefPtr<Node> child = children[i].release();
|
ReplaceNodeWithSpanCommand.cpp | 57 NodeVector children; local 58 getChildNodes(nodeToReplace, children); 59 for (size_t i = 0; i < children.size(); ++i) 60 newNode->appendChild(children[i]);
|
MergeIdenticalElementsCommand.cpp | 52 Vector<RefPtr<Node> > children; local 54 children.append(child); 56 size_t size = children.size(); 58 m_element2->insertBefore(children[i].release(), m_atChild.get(), IGNORE_EXCEPTION); 80 Vector<RefPtr<Node> > children; 82 children.append(child); 84 size_t size = children.size(); 86 m_element1->appendChild(children[i].release(), exceptionState);
|
WrapContentsInDummySpanCommand.cpp | 44 Vector<RefPtr<Node> > children; local 46 children.append(child); 48 size_t size = children.size(); 50 m_dummySpan->appendChild(children[i].release(), IGNORE_EXCEPTION); 69 Vector<RefPtr<Node> > children; 71 children.append(child); 73 size_t size = children.size(); 75 m_element->appendChild(children[i].release(), IGNORE_EXCEPTION);
|
/external/chromium/chrome/browser/accessibility/ |
browser_accessibility_cocoa.h | 35 // Invalidate children for a non-ignored ancestor (including self). 38 // Children is an array of BrowserAccessibility objects, representing 39 // the accessibility children of this object. 40 @property(nonatomic, readonly) NSArray* children; variable
|
/external/chromium/chrome/browser/extensions/ |
extension_bookmarks_unittest.cc | 38 ListValue* children; local 39 tree->GetList(keys::kChildrenKey, &children); 40 ASSERT_EQ(3U, children->GetSize()); 48 ListValue* children; local 49 tree->GetList(keys::kChildrenKey, &children); 50 ASSERT_EQ(1U, children->GetSize()); 58 ListValue* children; local 59 tree->GetList(keys::kChildrenKey, &children); 60 ASSERT_EQ(4U, children->GetSize()); 62 ASSERT_TRUE(children->GetDictionary(1, &digg)) 73 ListValue* children; local [all...] |
extension_bookmark_helpers.cc | 50 ListValue* children = new ListValue(); local 55 children->Append(dict); 58 dict->Set(keys::kChildrenKey, children);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderMedia.h | 40 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } 41 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); } 43 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::RenderMedia 44 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::RenderMedia 52 virtual RenderObjectChildList* virtualChildren() OVERRIDE FINAL { return children(); } 53 virtual const RenderObjectChildList* virtualChildren() const OVERRIDE FINAL { return children(); } 55 // FIXME: RenderMedia::layout makes assumptions about what children are allowed
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
DOMStorageItemsView.js | 93 var children = rootNode.children; variable 97 for (var i = 0; i < children.length; ++i) { 98 var childNode = children[i]; 101 this.deleteButton.visible = (children.length > 1); 117 var children = rootNode.children; variable 122 for (var i = 0; i < children.length; ++i) 123 if (children[i].data.key === storageData.key) 127 rootNode.insertChild(childNode, children.length - 1) 140 var children = rootNode.children; variable 243 var children = rootNode.children; variable [all...] |
/frameworks/base/services/java/com/android/server/firewall/ |
FilterList.java | 27 protected final ArrayList<Filter> children = new ArrayList<Filter>(); field in class:FilterList 39 children.add(filter);
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
NodeListImpl.java | 36 private List<NodeImpl> children; field in class:NodeListImpl 39 children = new ArrayList<NodeImpl>(); 43 children = list; 47 children.add(node); 51 return children.size(); 55 if (index >= children.size()) { 58 return children.get(index);
|
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
ProfileData.java | 41 public ArrayList<Node> children; field in class:ProfileData.Node 82 if (node.children == null) { 83 node.children = new ArrayList<Node>(); 87 ArrayList<Node> children = node.children; local 89 for (j = 0; j < children.size(); j++) { 90 if (children.get(j).id == id) break; 92 if (j == children.size()) { 93 children.add(new Node(node, id)); 96 node = children.get(j) 145 ArrayList<Node> children = node.children; local [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
CompositeGrammarTree.java | 35 protected List<CompositeGrammarTree> children; field in class:CompositeGrammarTree 50 if ( children==null ) { 51 children = new ArrayList<CompositeGrammarTree>(); 53 children.add(t); 62 for (int i = 0; r==null && children!=null && i < children.size(); i++) { 63 CompositeGrammarTree child = children.get(i); 93 for (int i = 0; n==null && children!=null && i < children.size(); i++) { 94 CompositeGrammarTree child = children.get(i) [all...] |
/external/doclava/src/com/google/doclava/ |
Hierarchy.java | 129 Data children = hdf.getChild("derived"); local 134 children.setValue(index, ""); 135 recurse(nodes, s, children.getChild(index), totalDepth, remainingDepth);
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
CompoundCollisionShape.java | 55 protected ArrayList<ChildCollisionShape> children = new ArrayList<ChildCollisionShape>(); field in class:CompoundCollisionShape 70 // children.add(new ChildCollisionShape(location.clone(), new Matrix3f(), shape)); 82 throw new IllegalStateException("CompoundCollisionShapes cannot have CompoundCollisionShapes as children!"); 87 children.add(new ChildCollisionShape(location.clone(), rotation.clone(), shape)); 94 throw new IllegalStateException("CompoundCollisionShapes cannot have CompoundCollisionShapes as children!"); 110 for (Iterator<ChildCollisionShape> it = children.iterator(); it.hasNext();) { 119 return children; 139 capsule.writeSavableArrayList(children, "children", new ArrayList<ChildCollisionShape>()); 145 children = capsule.readSavableArrayList("children", new ArrayList<ChildCollisionShape>()) [all...] |
/libcore/luni/src/test/java/libcore/xml/ |
NodeTest.java | 84 NodeList children = node.getChildNodes(); local 85 for (int i = 0; i < children.getLength(); i++) { 86 traverse(children.item(i), sink);
|
/external/chromium/chrome/browser/bookmarks/ |
bookmark_node_data.h | 57 // Children, only used for non-URL nodes. 58 std::vector<Element> children; member in struct:BookmarkNodeData::Element
|
/external/chromium/chrome/browser/ui/gtk/bookmarks/ |
bookmark_bar_gtk_unittest.cc | 93 // We should expect two children to the bookmark bar's toolbar. 94 GList* children = gtk_container_get_children( local 96 EXPECT_EQ(2U, g_list_length(children)); 97 g_list_free(children);
|