/external/chromium_org/chrome/browser/ui/bookmarks/ |
bookmark_utils.cc | 91 const BookmarkNode* child = (*parent_)->GetChild(child_index_); local 92 if (child->is_url()) { 93 next_ = &child->url(); 134 const BookmarkNode* child = node->GetChild(i); local 136 if (child->is_folder()) 137 result += ChildURLCountTotal(child);
|
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/ |
VTTRegion.cpp | 374 for (Element* child = ElementTraversal::firstWithin(*m_cueContainer); child && !m_scrollTimer.isActive(); child = ElementTraversal::nextSibling(*child)) { 375 float childTop = toHTMLDivElement(child)->getBoundingClientRect()->top(); 376 float childBottom = toHTMLDivElement(child)->getBoundingClientRect()->bottom();
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
TreeNodeTest.cpp | 97 RefPtr<TestTree> child = TestTree::create(); local 100 root->appendChild(child.get()); 101 root->removeChild(child.get()); 102 EXPECT_EQ(child->next(), nullNode.get()); 103 EXPECT_EQ(child->previous(), nullNode.get()); 104 EXPECT_EQ(child->parent(), nullNode.get());
|
/external/chromium_org/tools/telemetry/telemetry/timeline/ |
thread.py | 245 def _AddSliceIfBounds(self, root, child): 246 ''' Adds a child slice to a root slice its proper row. 247 Return False if the child slice is not in the bounds 250 Because we know that the start time of child is >= the start time 258 child_end_micros = round(child.end * 1000) 260 if child.start >= root.start and child_end_micros <= root_end_micros: 262 if self._AddSliceIfBounds(root.sub_slices[-1], child): 264 child.parent_slice = root 265 root.AddSubSlice(child)
|
/external/chromium_org/ui/views/controls/menu/ |
menu_scroll_view_container.cc | 132 // null scrollbars), but clicking on a child of ScrollView forces the window to 138 explicit MenuScrollView(View* child) { 139 AddChildView(child); 158 View* child = GetContents(); variable 159 child->SetY(-std::max(0, std::min( 160 child->GetPreferredSize().height() - this->height(), 161 dy - child->y())));
|
/external/junit/src/org/junit/runners/ |
ParentRunner.java | 44 * must implement finding the children of the node, describing each child, and 45 * running each child. ParentRunner will filter and sort children, handle 87 * Returns a {@link Description} for {@code child}, which can be assumed to 90 protected abstract Description describeChild(T child); 93 * Runs the test corresponding to {@code child}, which can be assumed to be 98 protected abstract void runChild(T child, RunNotifier notifier); 289 for (T child : getFilteredChildren()) 290 description.addChild(describeChild(child)); 355 private void sortChild(T child) { 356 fSorter.apply(child); [all...] |
/external/wpa_supplicant_8/hs20/client/ |
oma_dm_client.c | 239 xml_node_t *info, *child, *replace; local 256 xml_node_for_each_child(ctx->xml, child, info) { 257 xml_node_for_each_check(ctx->xml, child); 258 name = xml_node_get_localname(ctx->xml, child); 260 txt = xml_node_get_text(ctx->xml, child); 879 * list of children node names in Results element. The child list type is 969 xml_node_t *syncml, *syncbody, *hdr, *body, *child; local 995 xml_node_for_each_child(ctx->xml, child, hdr) { 996 xml_node_for_each_check(ctx->xml, child); 997 name = xml_node_get_localname(ctx->xml, child); [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
ExpandableNotificationRow.java | 88 private void setIconAnimationRunningForChild(boolean running, View child) { 89 if (child != null) { 90 ImageView icon = (ImageView) child.findViewById(com.android.internal.R.id.icon); 92 ImageView rightIcon = (ImageView) child.findViewById( 183 public boolean onRequestSendAccessibilityEvent(View child, AccessibilityEvent event) { 184 if (super.onRequestSendAccessibilityEvent(child, event)) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
ast.py | 144 for child in iter_child_nodes(node): 145 _fix(child, lineno, col_offset) 155 for child in walk(node): 156 if 'lineno' in child._attributes: 157 child.lineno = getattr(child, 'lineno', 0) + n 175 Yield all direct child nodes of *node*, that is, all fields that are nodes 277 Keep in mind that if the node you're operating on has child nodes you must 278 either transform the child nodes yourself or call the :meth:`generic_visit`
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
ast.py | 144 for child in iter_child_nodes(node): 145 _fix(child, lineno, col_offset) 155 for child in walk(node): 156 if 'lineno' in child._attributes: 157 child.lineno = getattr(child, 'lineno', 0) + n 175 Yield all direct child nodes of *node*, that is, all fields that are nodes 277 Keep in mind that if the node you're operating on has child nodes you must 278 either transform the child nodes yourself or call the :meth:`generic_visit`
|
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/ |
StaggeredGridLayoutManager.java | 297 View child = getChildAt(i); 298 LayoutParams lp = (LayoutParams) child.getLayoutParams(); 301 return child; 313 // ensure child's end is below nextChild's end 314 int myEnd = mPrimaryOrientation.getDecoratedEnd(child); 317 return child;//i should have a better position 322 int myStart = mPrimaryOrientation.getDecoratedStart(child); 325 return child;//i should have a better position 334 return child; 671 // last child as the anchor position [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/accessibility/ |
TaskListView.java | 44 * This method will fire whenever a child event wants to send an AccessibilityEvent. As a 50 public boolean onRequestSendAccessibilityEvent(View child, AccessibilityEvent event) { 55 int priority = (Integer) child.getTag(); 64 /** Adds Accessibility information to individual child views of rows in the list. */
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3commontree.c | 77 // Install a vector factory to create, track and free() any child 165 // whatever put it back on the stack (for instance if it had a child vector, 256 // First close the vector factory that supplied all the child pointer 370 /// Create a new vector for holding child nodes using the inbuilt 458 pANTLR3_BASE_TREE child; local 460 child = (pANTLR3_BASE_TREE)tree->getChild(tree, 0); 461 return child->getLine(child); 478 pANTLR3_BASE_TREE child; local 480 child = (pANTLR3_BASE_TREE)tree->getChild(tree, 0) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
TraceDebugEventListener.cs | 107 public override void AddChild(object root, object child) { 109 adaptor.GetUniqueID(child));
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
ITreeAdaptor.cs | 155 /** <summary>Is tree considered a nil node used to make lists of child nodes?</summary> */ 159 * Add a child to the tree t. If child is a flat tree (a list), make all 160 * in list children of t. Warning: if t has no children, but child does 161 * and child isNil then you can decide it is ok to move children to t via 162 * t.children = child.children; i.e., without copying the array. Just 164 * ASTs. Do nothing if t or child is null. 167 void AddChild( object t, object child ); 171 * If not a nil root, make oldRoot a child of newRoot. 178 * If newRoot is a nil-rooted single child tree, use the singl [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
TraceDebugEventListener.cs | 121 public override void AddChild( object root, object child ) 124 adaptor.GetUniqueID( child ) );
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
DebugEventRepeater.java | 84 public void addChild(Object root, Object child) { listener.addChild(root, child); }
|
TraceDebugEventListener.java | 86 public void addChild(Object root, Object child) { 88 adaptor.getUniqueID(child));
|
/external/chromium_org/chrome/browser/resources/ |
crashes.css | 48 #crashList > div:not(:last-child) {
|
/external/chromium_org/chrome/browser/resources/ntp4/ |
incognito_and_guest_tab.css | 49 .content p:last-child {
|
/external/chromium_org/chrome/browser/resources/predictors/ |
predictors.css | 42 tbody > td:first-child {
|
/external/chromium_org/chrome/browser/resources/sync_internals/ |
sync_node_browser.css | 66 #node-details tr:nth-child(odd) {
|
/external/chromium_org/gpu/tools/compositor_model_bench/ |
render_tree.h | 146 void add_child(RenderNode* child) { 147 children_.push_back(child);
|
/external/chromium_org/ppapi/generators/ |
idl_propertynode.py | 65 for child in children: 66 child.AddParent(node)
|
/external/chromium_org/remoting/protocol/ |
jingle_messages.cc | 192 const XmlElement* child = jingle_tag->FirstElement(); local 193 if (child) { 195 info.reset(new XmlElement(*child)); 365 for (const buzz::XmlElement* child = request_stanza->FirstElement(); 366 child != NULL; child = child->NextElement()) { 367 iq->AddElement(new buzz::XmlElement(*child));
|