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

<<51525354555657585960>>

  /external/chromium_org/third_party/webrtc/base/
nssidentity.cc 155 static bool Certifies(CERTCertificate* parent, CERTCertificate* child) {
165 // Check that the parent's name is the same as the child's claimed issuer.
167 CERT_CompareName(&child->issuer, &parent->subject);
177 // Check that the parent's privkey was actually used to generate the child's
180 &child->signatureWrap, parent_key, NULL);
186 CERTCertListNode* child = CERT_LIST_HEAD(cert_list); local
187 for (CERTCertListNode* parent = CERT_LIST_NEXT(child);
189 child = parent, parent = CERT_LIST_NEXT(parent)) {
190 if (!Certifies(parent->cert, child->cert))
  /external/chromium_org/tools/grit/grit/node/
structure.py 74 def _IsValidChild(self, child):
75 return isinstance(child, variant.SkeletonNode)
106 for child in self.children:
107 assert isinstance(child, variant.SkeletonNode)
108 skel = gathertype(child.attrs['file'],
110 child.GetEncodingToUse(),
112 skel.SetGrdNode(self) # TODO(benrg): Or child? Only used for ToRealPath
118 self.skeletons[child.attrs['expr']] = skel
337 '''Creates a new node which is a child of 'parent', with attributes set
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 40 * the HashMap on the 5th child.
52 // First child (first sibling of children)
54 // Last child (last sibling of children)
88 * Creates a child of this node.
90 * @param chunk name to give the new child node.
97 // If the parent node's child count is 5 or more and it does not have a
108 // If the parent node has a children map, add the new child node to it.
115 // Update previous lastChild to point to new child.
188 * can have a value, a child, and a next peer.
280 * Returns number of child nodes
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPNode.java 46 /** list of child nodes, lazy initialized */
61 /** flag if the node has an "rdf:value" child node. */
117 * @return Returns the child with the requested index.
126 * Adds a node as child to this node.
140 * Adds a node as child to this node.
169 * Removes a child at the requested index.
180 * Removes a child node.
183 * @param node the child node to delete.
227 * @param expr child node name to look for
454 XMPNode child = (XMPNode) it.next()
    [all...]
XMPSerializerRDF.java 850 XMPNode child = (XMPNode) it.next(); local
851 declareUsedNamespaces(child, usedPrefixes, indent);
1067 XMPNode child = (XMPNode) it.next(); local
1068 serializePrettyRDFProperty(child, false, indent + 2);
1089 XMPNode child = (XMPNode) it.next(); local
1090 serializePrettyRDFProperty(child, false, indent + 1);
1100 XMPNode child = (XMPNode) it.next(); local
1101 if (!canBeRDFAttrProp(child))
1109 write(child.getName());
1111 appendNodeValue(child.getValue(), true)
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
RawContactModifier.java 110 * @return The child (either newly created or the first existing one), or null if the
123 // Create child when none exists and valid kind
124 final ValuesDelta child = insertChild(state, kind); local
126 child.setFromTemplate(true);
128 return child;
345 * Insert a new child of kind {@link DataKind} into the given
362 * Insert a new child of kind {@link DataKind} into the given
383 final ValuesDelta child = ValuesDelta.fromAfter(after); local
384 state.addEntry(child);
385 return child;
571 final ValuesDelta child = RawContactModifier.insertChild(state, kindOrg); local
588 final ValuesDelta child = RawContactModifier.insertChild(state, kindNotes); local
607 final ValuesDelta child = state.getPrimaryEntry(StructuredName.CONTENT_ITEM_TYPE); local
664 final ValuesDelta child = parseExtras(state, kind, extras, Insert.POSTAL_TYPE, local
927 final ValuesDelta child = RawContactModifier.insertChild(state, kind, editType); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
MoveHandler.java 78 for (INode child : layout.getChildren()) {
79 Rect bc = child.getBounds();
93 String id = child.getStringAttr(ANDROID_URI, ATTR_ID);
97 boolean addHorizontal = !mHorizontalDeps.contains(child);
98 boolean addVertical = !mVerticalDeps.contains(child);
100 addBounds(child, id, addHorizontal, addVertical);
102 addBaseLine(child, id);
  /frameworks/base/core/java/android/widget/
AbsListView.java 575 * The select child's view (from the adapter's getView) is enabled.
1160 final View child = getChildAt(i); local
2222 View child = getChildAt(0); local
2344 final View child = mAdapter.getView(position, scrapView, this); local
3054 final View child = getChildAt(motionPosition - mFirstPosition); local
3136 View child = getChildAt(position - mFirstPosition); local
3218 final View child = getChildAt(i); local
3254 final View child = getChildAt(mMotionPosition - mFirstPosition); local
3633 final View child = getChildAt(motionPosition - mFirstPosition); local
3654 final View child = getChildAt(motionPosition - mFirstPosition); local
3785 final View child = getChildAt(motionPosition - mFirstPosition); local
4289 final View child = getChildAt(i); local
5987 View child = getChildAt(i); local
6416 View child = getChildAt(i); local
    [all...]
  /external/chromium_org/base/files/
file_path_watcher_linux.cc 95 // watch that fired, |child| indicates what has changed, and is relative to
102 const FilePath::StringType& child,
326 FilePath::StringType child(event->len ? event->name : FILE_PATH_LITERAL(""));
333 child,
345 const FilePath::StringType& child,
354 fired_watch, child, created, deleted, is_dir));
379 child.empty() ||
380 (child == watch_entry.linkname) ||
381 (child == watch_entry.subdir);
383 // Check if the change references |target_| or a direct child of |target_|
    [all...]
  /external/chromium_org/chrome/browser/resources/
about_stats.js 66 var child = getCounterDeltaFromCounterNode(node);
67 var delta = child.innerHTML;
69 child.style.color = 'Green';
71 child.style.color = 'Black';
73 child.style.color = 'Red';
  /external/chromium_org/chrome/browser/ui/views/accessibility/
accessibility_event_router_views.cc 502 views::View* child = view->child_at(i); local
503 views::View* result = FindDescendantWithAccessibleRole(child, role);
518 views::View* child = menu->child_at(i); local
519 if (!child->visible())
523 RecursiveGetMenuItemIndexAndCount(child, item, index, count);
525 child->GetAccessibleState(&state);
528 if (item == child)
532 if (item == child)
548 views::View* child = view->child_at(i); local
549 std::string result = RecursiveGetStaticText(child);
    [all...]
  /external/chromium_org/content/renderer/accessibility/
blink_ax_tree_source.cc 44 // Returns true if |ancestor| is the first unignored parent of |child|,
45 // which means that when walking up the parent chain from |child|,
49 WebAXObject child) {
50 WebAXObject parent = child.parentObject();
136 blink::WebAXObject child = parent.childAt(i); local
138 // The child may be invalid due to issues in blink accessibility code.
139 if (child.isDetached())
144 if (!is_iframe && !IsParentUnignoredOf(parent, child))
147 out_children->push_back(child);
512 // cell, which is a child of both a row and a column. Because the cell'
517 WebAXObject child = src.childAt(i); local
    [all...]
  /external/chromium_org/content/renderer/
v8_value_converter_impl.cc 231 const base::Value* child = NULL; local
232 CHECK(val->Get(i, &child));
235 ToV8ValueImpl(isolate, creation_context, child);
411 base::Value* child = FromV8ValueImpl(state, child_v8, isolate); local
412 if (child)
413 result->Append(child);
521 scoped_ptr<base::Value> child(FromV8ValueImpl(state, child_v8, isolate));
522 if (!child)
547 if (strip_null_from_objects_ && child->IsType(base::Value::TYPE_NULL))
551 child.release())
    [all...]
  /external/chromium_org/remoting/webapp/
format_iq.js 112 * @param {Node} query Xml query node with jingleinfo in the child nodes.
173 * info contained in child nodes.
248 * child nodes.
271 * @param {Node} jingle Xml node with jingle transport info contained in child
328 * @param {Node} jingle Xml node with jingle action contained in child nodes.
349 * @param {Node} error Xml node containing error information in child nodes.
369 var child = children[i];
370 result += '\n ' + child.nodeName;
424 var child = iq_children[0];
425 if (child.nodeName == 'query')
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
LayerTreeModel.js 471 * @param {!WebInspector.Layer} child
473 addChild: function(child) { },
603 * @param {!WebInspector.Layer} child
605 addChild: function(child)
607 if (child._parent)
608 console.assert(false, "Child already has a parent");
609 this._children.push(child);
610 child._parent = this;
910 * @param {!WebInspector.Layer} child
912 addChild: function(child)
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
caller-property.js 27 function child()
29 return (child.caller !== null);
34 return child();
37 var childHasCallerWhenExecutingGlobalCode = (child.caller !== null);
38 var childHasCallerWhenCalledWithoutParent = child();
  /external/chromium_org/v8/tools/
profile.js 571 * Finds an immediate child of the specified parent with the specified
572 * label, creates a child node if necessary. If a parent node isn't
575 * @param {string} label Child node label.
604 var child = (parent ? parent : subTree).findOrAddChild(node.label);
605 child.selfWeight += node.selfWeight;
606 return child;
647 node.forEachChild(function (child) {
648 morePairsToProcess.push({node: child, param: newParam}); });
701 * Adds a child node.
703 * @param {string} label Child node label
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedAddEntryTask.java 283 for (Node child=element.getFirstChild(); child != null; child=child.getNextSibling()) {
284 if ("updated".equals(child.getLocalName())) { //$NON-NLS-1$
286 System.out.println(Messages.getString("RSSFeedCommon.Set") + " <" + child.getLocalName()+ ">"+ now+ "</"+ child.getLocalName()+ ">"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
288 ((Element)child).setTextContent(now);
290 else if ("id".equals(child.getLocalName())) { //$NON-NLS-1$
305 Node refNode=child.getNextSibling()
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarOverlayLayout.java 479 final View child = getChildAt(i);
480 if (child.getVisibility() != GONE) {
481 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
483 final int width = child.getMeasuredWidth();
484 final int height = child.getMeasuredHeight();
488 if (child == mActionBarBottom) {
494 child.layout(childLeft, childTop, childLeft + width, childTop + height);
517 public boolean onStartNestedScroll(View child, View target, int axes) {
525 public void onNestedScrollAccepted(View child, View target, int axes) {
526 super.onNestedScrollAccepted(child, target, axes)
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActionBarOverlayLayout.java 487 final View child = getChildAt(i); local
488 if (child.getVisibility() != GONE) {
489 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
491 final int width = child.getMeasuredWidth();
492 final int height = child.getMeasuredHeight();
496 if (child == mActionBarBottom) {
502 child.layout(childLeft, childTop, childLeft + width, childTop + height);
526 public boolean onStartNestedScroll(View child, View target, int axes) {
534 public void onNestedScrollAccepted(View child, View target, int axes) {
535 super.onNestedScrollAccepted(child, target, axes)
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
GridLayoutManagerTest.java 259 assertEquals("reference child non existent", -1, ssl.findReferenceIndexFromCache(2));
261 assertEquals("reference child non existent", -1, ssl.findReferenceIndexFromCache(3));
263 assertEquals("reference child itself", -1, ssl.findReferenceIndexFromCache(4));
264 assertEquals("reference child before", 4, ssl.findReferenceIndexFromCache(5));
265 assertEquals("reference child before", 4, ssl.findReferenceIndexFromCache(100));
267 assertEquals("reference child before", 6, ssl.findReferenceIndexFromCache(7));
268 assertEquals("reference child before", 4, ssl.findReferenceIndexFromCache(6));
269 assertEquals("reference child itself", -1, ssl.findReferenceIndexFromCache(4));
271 assertEquals("reference child before", 12, ssl.findReferenceIndexFromCache(13));
272 assertEquals("reference child before", 6, ssl.findReferenceIndexFromCache(12))
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
PriorityBlockingQueue.java 359 int child = (k << 1) + 1; // assume left child is least local
360 Object c = array[child];
361 int right = child + 1;
364 c = array[child = right];
368 k = child;
380 int child = (k << 1) + 1; local
381 Object c = array[child];
382 int right = child + 1;
384 c = array[child = right]
    [all...]
  /libcore/luni/src/main/java/java/util/prefs/
AbstractPreferences.java 107 /** cached child nodes */
166 * Returns an array of all cached child nodes.
168 * @return the array of cached child nodes.
175 * Returns the child node with the specified name or {@code null} if it
182 * the name of the desired child node.
183 * @return the child node with the given name or {@code null} if it doesn't
232 * Returns the names of all of the child nodes of this node or an empty
244 * Returns the child preference node with the given name, creating it
256 * the name of the child preference to be returned.
257 * @return the child preference node
713 AbstractPreferences child = childSpi(childrenName); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 115 for child in self.children:
116 child.deselecttree()
189 child = self.__class__(self.canvas, self, item)
190 self.children.append(child)
194 for child in self.children:
197 cy = child.draw(cx, cy)
198 if child.item._IsExpandable():
199 if child.state == 'expanded':
201 callback = child.collapse
204 callback = child.expan
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 115 for child in self.children:
116 child.deselecttree()
189 child = self.__class__(self.canvas, self, item)
190 self.children.append(child)
194 for child in self.children:
197 cy = child.draw(cx, cy)
198 if child.item._IsExpandable():
199 if child.state == 'expanded':
201 callback = child.collapse
204 callback = child.expan
    [all...]

Completed in 1255 milliseconds

<<51525354555657585960>>