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

<<51525354555657585960>>

  /external/skia/src/animator/
SkDrawMatrix.h 24 virtual bool addChild(SkAnimateMaker& , SkDisplayable* child) SK_OVERRIDE;
SkDrawPaint.h 29 virtual bool add(SkAnimateMaker* , SkDisplayable* child);
SkDrawPath.h 22 virtual bool addChild(SkAnimateMaker& , SkDisplayable* child) SK_OVERRIDE;
  /external/skia/src/core/
SkQuadTree.cpp 58 // does it belong in a child?
105 // reinsert all the entries of this node to allow child trickle
135 // recurse into and clear all child nodes
137 Node* child = node->fChildren[index]; local
139 if (NULL != child) {
140 this->clear(child);
141 fNodePool.release(child);
  /external/skia/src/svg/
SkSVGElements.h 58 virtual bool onStartElement(SkSVGElement* child);
  /external/valgrind/main/exp-sgcheck/
sg_main.h 42 void sg_pre_thread_ll_create ( ThreadId parent, ThreadId child );
  /external/valgrind/main/include/
pub_tool_libcproc.h 97 extern void VG_(atfork)(vg_atfork_t pre, vg_atfork_t parent, vg_atfork_t child);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapEmailSettingsLoader.java 170 BluetoothMapEmailSettingsItem child = new BluetoothMapEmailSettingsItem( local
177 child.mIsChecked = (c.getInt(c.getColumnIndex(BluetoothMapContract.AccountColumns.FLAG_EXPOSE))!=0);
179 if(child.mIsChecked)
183 children.add(child);
  /packages/apps/Browser/src/com/android/browser/
TabScrollView.java 144 private void ensureChildVisible(View child) {
145 if (child != null) {
146 int childl = child.getLeft();
147 int childr = childl + child.getWidth();
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Path.java 226 Path child = p.mChildren.get(key); local
227 if (child == null) {
233 dumpAll(child, prefix2 + "+-- ", prefix2 + "| ");
235 dumpAll(child, prefix2 + "+-- ", prefix2 + " ");
  /packages/apps/Settings/src/com/android/settings/
MasterClear.java 222 TextView child = (TextView)inflater.inflate(R.layout.master_clear_account, local
224 child.setText(account.name);
226 child.setCompoundDrawablesWithIntrinsicBounds(icon, null, null, null);
228 contents.addView(child);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 116 child = children[0]
117 if child.type == token.STAR:
120 elif child.type == token.PLUS:
123 elif child.type == token.LBRACE:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 116 child = children[0]
117 if child.type == token.STAR:
120 elif child.type == token.PLUS:
123 elif child.type == token.LBRACE:
  /external/chromium_org/third_party/libxslt/libxslt/
xslt.c 4015 xmlNodePtr child = elem->children; local
4038 xmlNodePtr child = elem->children; local
4061 xmlNodePtr child = elem->children; local
4077 xmlNodePtr child = elem->children; local
4105 xmlNodePtr child = elem->children; local
4169 xmlNodePtr child = elem->children; local
4323 xmlNodePtr child = node->children; local
4794 xmlNodePtr child = templ->children; local
4806 xsltParseAnyXSLTElem(XSLT_CCTXT(style), child); local
4814 xsltParseSequenceConstructor(XSLT_CCTXT(style), child); local
6857 xmlNodePtr child; local
    [all...]
  /external/chromium_org/cc/layers/
layer.h 88 void AddChild(scoped_refptr<Layer> child);
89 void InsertChild(scoped_refptr<Layer> child, size_t index);
188 void AddScrollChild(Layer* child);
189 void RemoveScrollChild(Layer* child);
203 void AddClipChild(Layer* child);
204 void RemoveClipChild(Layer* child);
538 // Returns the index of the child or -1 if not found.
542 void RemoveChildOrDependent(Layer* child);
  /external/chromium_org/chrome/browser/ui/webui/
cookies_tree_model_util.cc 295 const CookieTreeNode* child = parent->GetChild(start + i); local
296 if (GetCookieTreeNodeDictionary(*child, dict.get()))
307 const CookieTreeNode* child = NULL; local
317 child = id_map_.Lookup(node_id);
318 child_index = parent->GetIndexOf(child);
322 parent = child;
325 return child_index >= 0 ? child : NULL;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
util.js 352 * Appends a new child to the specified (parent) node.
355 * @param {Node} child Child node to append.
358 function domAppendChild(node, child) {
359 return node.appendChild(child);
393 * Inserts a new child before a given sibling.
397 * @return {Node} Reference to new child.
404 * Replaces an old child node with a new child node.
406 * @param {Node} newChild New child to append
    [all...]
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_android.cc 69 // If it has a focusable child, we definitely can't leave out children.
312 BrowserAccessibility* child = InternalGetChild(i); local
313 text += static_cast<BrowserAccessibilityAndroid*>(child)->GetText();
582 BrowserAccessibility* child = InternalGetChild(i); local
583 if (child->HasState(ui::AX_STATE_FOCUSABLE))
585 if (static_cast<BrowserAccessibilityAndroid*>(child)->HasFocusableChild())
595 BrowserAccessibility* child = InternalGetChild(i); local
596 if (child->GetRole() != ui::AX_ROLE_STATIC_TEXT)
  /external/chromium_org/remoting/host/win/
rdp_client_window.cc 58 // Finds a child window with the class name matching |class_name|. Unlike
60 // is done in breadth-first order. The function returns NULL if the child window
67 HWND child = FindWindowEx(windows.front(), NULL, NULL, NULL); local
68 while (child != NULL) {
71 int length = GetClassName(child, name, arraysize(name));
73 return child;
76 windows.push_back(child);
78 // Go to the next child.
79 child = FindWindowEx(windows.front(), child, NULL, NULL)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXRenderObject.cpp 87 if (RenderObject* child = r->slowFirstChild())
88 return child;
955 AXObject* child = cache->getOrCreate(element); local
956 if (child)
957 children.append(child);
1833 AXObject* child = childObjects[k].get(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImageElement.cpp 231 for (Node* child = parent->firstChild(); child; child = child->nextSibling()) {
232 if (child == this)
235 if (!isHTMLSourceElement(*child))
238 HTMLSourceElement* source = toHTMLSourceElement(child);
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTParser.cpp 507 RefPtrWillBeRawPtr<VTTElement> child = VTTElement::create(nodeType, &document); local
509 child->setAttribute(classAttr, m_token.classes());
512 child->setAttribute(VTTElement::voiceAttributeName(), m_token.annotation());
515 child->setAttribute(VTTElement::langAttributeName(), m_languageStack.last());
518 child->setLanguage(m_languageStack.last());
519 m_currentNode->parserAppendChild(child);
520 m_currentNode = child;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineFlowBox.h 97 for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
98 child->setConstructed();
101 void addToLine(InlineBox* child);
203 void removeChild(InlineBox* child, MarkLineBoxes);
  /external/chromium_org/third_party/jstemplate/
util.js 348 * Appends a new child to the specified (parent) node.
351 * @param {Node} child Child node to append.
354 function domAppendChild(node, child) {
355 return node.appendChild(child);
389 * Inserts a new child before a given sibling.
393 * @return {Node} Reference to new child.
400 * Replaces an old child node with a new child node.
402 * @param {Node} newChild New child to append
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
nssidentity.cc 173 static bool Certifies(CERTCertificate* parent, CERTCertificate* child) {
183 // Check that the parent's name is the same as the child's claimed issuer.
185 CERT_CompareName(&child->issuer, &parent->subject);
195 // Check that the parent's privkey was actually used to generate the child's
198 &child->signatureWrap, parent_key, NULL);
204 CERTCertListNode* child = CERT_LIST_HEAD(cert_list); local
205 for (CERTCertListNode* parent = CERT_LIST_NEXT(child);
207 child = parent, parent = CERT_LIST_NEXT(parent)) {
208 if (!Certifies(parent->cert, child->cert))

Completed in 731 milliseconds

<<51525354555657585960>>