/external/chromium_org/chrome/browser/resources/quota_internals/ |
main.css | 22 .tree-item:not([may-have-children]) > .tree-row > .tree-label {
|
/external/chromium_org/ui/accessibility/ |
ax_node.h | 26 const std::vector<AXNode*>& children() const { return children_; } function in class:ui::AXNode 38 // Swap the internal children vector with |children|. This instance 39 // now owns all of the passed children. 40 virtual void SwapChildren(std::vector<AXNode*>& children);
|
/external/chromium_org/ui/oak/ |
oak_tree_model.cc | 23 aura::Window::Windows::const_iterator it = parent_window->children().begin(); 24 for (; it != parent_window->children().end(); ++it) {
|
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/ |
CompoundCollisionShape.java | 58 protected ArrayList<ChildCollisionShape> children = new ArrayList<ChildCollisionShape>(); field in class:CompoundCollisionShape 72 children.add(new ChildCollisionShape(location.clone(), new Matrix3f(), shape)); 83 throw new IllegalStateException("CompoundCollisionShapes cannot have CompoundCollisionShapes as children!"); 88 children.add(new ChildCollisionShape(location.clone(), rotation.clone(), shape)); 94 throw new IllegalStateException("CompoundCollisionShapes cannot have CompoundCollisionShapes as children!"); 108 for (Iterator<ChildCollisionShape> it = children.iterator(); it.hasNext();) { 117 return children; 131 capsule.writeSavableArrayList(children, "children", new ArrayList<ChildCollisionShape>()); 137 children = capsule.readSavableArrayList("children", new ArrayList<ChildCollisionShape>()) [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
ChainedData.java | 31 * second Data object, then fetching children of foo will return only foo.1 foo.2 foo.3 from first 93 ArrayList<Data> children = null; local 107 } else if (children == null) { 109 children = new ArrayList<Data>(dataList.length); 110 children.add(first); 111 children.add(child); 114 children.add(child); 118 if (children == null) { 124 logger.info("Found " + children.size() + " matches for path " + path);
|
/frameworks/base/services/java/com/android/server/firewall/ |
AndFilter.java | 30 for (int i=0; i<children.size(); i++) { 31 if (!children.get(i).matches(ifw, resolvedComponent, intent, callerUid, callerPid,
|
FilterList.java | 27 protected final ArrayList<Filter> children = new ArrayList<Filter>(); field in class:FilterList 39 children.add(filter);
|
OrFilter.java | 30 for (int i=0; i<children.size(); i++) { 31 if (children.get(i).matches(ifw, resolvedComponent, intent, callerUid, callerPid,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/descriptors/ |
ItemElementDescriptor.java | 32 * tooltip, SDK url, attributes list, children list and mandatory. 39 * @param children The list of allowed children. Can be null or empty. 47 ElementDescriptor[] children, boolean mandatory) { 48 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
DrawableContainerStateTest.java | 61 Drawable[] children = mDrawableContainerState.getChildren(); local 62 assertNotNull(children); 63 assertTrue(children.length >= 1); 64 assertSame(dr0, children[0]); 65 assertNull(children[1]); 73 children = mDrawableContainerState.getChildren(); 74 assertNotNull(children); 75 assertTrue(children.length >= 2); 76 assertSame(dr0, children[0]); 77 assertSame(dr1, children[1]) [all...] |
/external/chromium/chrome/browser/ui/cocoa/content_settings/ |
cookie_tree_node.h | 30 // operate on the children. Note that this lazily creates children. 32 - (NSArray*)children;
|
/external/chromium/chrome/common/safe_browsing/ |
safebrowsing_messages.h | 25 // children of this node. Can be emtpy. 26 IPC_STRUCT_MEMBER(std::vector<GURL>, children)
|
/external/chromium_org/chrome/common/safe_browsing/ |
safebrowsing_messages.h | 24 // children of this node. Can be emtpy. 25 IPC_STRUCT_MEMBER(std::vector<GURL>, children)
|
/external/chromium_org/content/browser/accessibility/ |
browser_accessibility_mac.h | 27 virtual void SwapChildren(std::vector<BrowserAccessibility*>& children)
|
/external/chromium_org/third_party/skia/include/core/ |
SkInstCnt.h | 89 SkTArray<int (*)(int, bool)>* children = \ 91 int childCount = children->count(); \ 94 count -= (*(*children)[i])(level+1, cleanUp); \ 101 delete children; \
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
CheckerHelpers.h | 31 for (Stmt::const_child_range I = S->children(); I; ++I)
|
/external/skia/include/core/ |
SkInstCnt.h | 89 SkTArray<int (*)(int, bool)>* children = \ 91 int childCount = children->count(); \ 94 count -= (*(*children)[i])(level+1, cleanUp); \ 101 delete children; \
|
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
ConfigureNodeFields.java | 96 children,
enum constant in enum:ConfigureNodeFields
|
/frameworks/base/sax/java/android/sax/ |
Children.java | 20 * Contains element children. Using this class instead of HashMap results in 23 class Children { 25 Child[] children = new Child[16]; field in class:Children 34 Child current = children[index]; 36 // We have no children in this bucket yet. 38 children[index] = current; 69 Child current = children[index];
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
TableRowRule.java | 57 final @NonNull List<? extends INode> children) { 58 super.addLayoutActions(actions, parentNode, children); 63 if (children != null) { 67 children);
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
ParseTree.java | 114 for (int i = 0; children!=null && i < children.size(); i++) { 115 ParseTree t = (ParseTree)children.get(i);
|
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/ |
profiler_unittest.js | 15 // Model object cant contain 'children' and 'size' together. 16 if ('children' in model && 'size' in model || 17 !('children' in model) && !('size' in model)) 25 // If model contains children, every child also must be valid. 26 if ('children' in model) { 27 return model.children.reduce(function(previous, current) {
|
/external/oprofile/libpp/ |
callgraph_container.h | 68 * allow quick lookup of children (we'll do this several times 75 typedef std::map<symbol_entry, count_array_t, less_symbol> children; typedef in struct:arc_recorder::cg_data 78 children callers; 80 children callees;
|
symbol.h | 108 typedef std::vector<symbol_entry> children; typedef in class:cg_symbol 111 children callers; 116 children callees;
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
documentcreatedocumentfragment.java | 64 NodeList children; local 71 children = newDocFragment.getChildNodes(); 72 length = (int) children.getLength();
|