/external/dbus/dbus/ |
D | dbus-object-tree.c | 51 static DBusObjectSubtree* _dbus_object_subtree_ref (DBusObjectSubtree *subtree); 52 static void _dbus_object_subtree_unref (DBusObjectSubtree *subtree); 163 find_subtree_recurse (DBusObjectSubtree *subtree, in find_subtree_recurse() argument 180 subtree->name); in find_subtree_recurse() 184 return subtree; in find_subtree_recurse() 189 subtree->name, path[0]); in find_subtree_recurse() 193 j = subtree->n_subtrees; in find_subtree_recurse() 199 v = strcmp (path[0], subtree->subtrees[k]->name); in find_subtree_recurse() 203 path[0], subtree->subtrees[k]->name, in find_subtree_recurse() 221 next = find_subtree_recurse (subtree->subtrees[k], in find_subtree_recurse() [all …]
|
/external/llvm/lib/Support/ |
D | IntervalMap.cpp | 22 path.insert(path.begin() + 1, Entry(subtree(0), Offsets.second)); in replaceRoot() 40 NodeRef NR = path[l].subtree(path[l].offset - 1); in getLeftSibling() 44 NR = NR.subtree(NR.size() - 1); in getLeftSibling() 65 NodeRef NR = subtree(l); in moveLeft() 70 NR = NR.subtree(NR.size() - 1); in moveLeft() 90 NodeRef NR = path[l].subtree(path[l].offset + 1); in getRightSibling() 94 NR = NR.subtree(0); in getRightSibling() 110 NodeRef NR = subtree(l); in moveRight() 114 NR = NR.subtree(0); in moveRight()
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
D | PKIXNameConstraintValidator.java | 48 ASN1Sequence subtree) in withinDNSubtree() argument 50 if (subtree.size() < 1) in withinDNSubtree() 55 if (subtree.size() > dns.size()) in withinDNSubtree() 60 for (int j = subtree.size() - 1; j >= 0; j--) in withinDNSubtree() 62 if (!subtree.getObjectAt(j).equals(dns.getObjectAt(j))) in withinDNSubtree() 99 ASN1Sequence subtree = (ASN1Sequence)it.next(); in checkPermittedDN() local 101 if (withinDNSubtree(dns, subtree)) in checkPermittedDN() 123 ASN1Sequence subtree = (ASN1Sequence)it.next(); in checkExcludedDN() local 125 if (withinDNSubtree(dns, subtree)) in checkExcludedDN() 152 ASN1Sequence subtree = (ASN1Sequence)_iter.next(); in intersectDN() local [all …]
|
D | RFC3280CertPathUtilities.java | 1698 GeneralSubtree subtree = GeneralSubtree.getInstance(e.nextElement()); in prepareNextCertG() local 1699 nameConstraintValidator.addExcludedSubtree(subtree); in prepareNextCertG()
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/ |
D | NameConstraints.java | 62 private DERSequence createSequence(Vector subtree) in createSequence() argument 65 Enumeration e = subtree.elements(); in createSequence()
|
/external/llvm/include/llvm/ADT/ |
D | IntervalMap.h | 496 NodeRef &subtree(unsigned i) const { in subtree() function 680 const NodeRef &subtree(unsigned i) const { return this->first[i]; } in subtree() function 683 NodeRef &subtree(unsigned i) { return this->first[i]; } in subtree() function 718 return subtree(safeFind(0, x)); in safeLookup() 730 subtree(i) = Node; in insert() 759 : node(&Node.subtree(0)), size(Node.size()), offset(Offset) {} in Entry() 761 NodeRef &subtree(unsigned i) const { in subtree() function 798 NodeRef &subtree(unsigned Level) const { in subtree() function 799 return path[Level].subtree(path[Level].offset); in subtree() 805 path[Level] = Entry(subtree(Level - 1), offset(Level)); in reset() [all …]
|
/external/antlr/src/org/antlr/runtime/tree/ |
D | TreePatternParser.java | 75 Object subtree = parseTree(); in parseTree() local 76 adaptor.addChild(root, subtree); in parseTree()
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebPDFDocumentExtras.mm | 40 static void appendValuesInPDFNameSubtreeToVector(CGPDFDictionaryRef subtree, Vector<CGPDFObjectRef>… 43 if (CGPDFDictionaryGetArray(subtree, "Names", &names)) { 54 if (!CGPDFDictionaryGetArray(subtree, "Kids", &kids))
|
/external/ipsec-tools/src/racoon/ |
D | isakmp_xauth.h | 164 int subtree; member
|
D | isakmp_xauth.c | 809 xauth_ldap_config.subtree = 0; in xauth_ldap_init_conf() 981 if (xauth_ldap_config.subtree) 1198 if (xauth_ldap_config.subtree)
|
D | cfparse.y | 668 xauth_ldap_config.subtree = $2;
|
/external/webkit/Source/WebCore/svg/ |
D | SVGUseElement.cpp | 782 void SVGUseElement::removeDisallowedElementsFromSubtree(Node* subtree) in removeDisallowedElementsFromSubtree() argument 784 ASSERT(!subtree->inDocument()); in removeDisallowedElementsFromSubtree() 786 Node* node = subtree->firstChild(); in removeDisallowedElementsFromSubtree() 789 Node* next = node->traverseNextSibling(subtree); in removeDisallowedElementsFromSubtree() 794 node = node->traverseNextNode(subtree); in removeDisallowedElementsFromSubtree()
|
/external/chromium/chrome/common/extensions/ |
D | extension_message_bundle_unittest.cc | 38 DictionaryValue* subtree, in SetDictionary() argument 40 target->Set(name, static_cast<Value*>(subtree)); in SetDictionary()
|
/external/webkit/Source/WebCore/page/ |
D | FrameView.cpp | 861 bool subtree = m_layoutRoot; in layout() local 868 RenderObject* root = subtree ? m_layoutRoot : document->renderer(); in layout() 913 m_doFullRepaint = !subtree && (m_firstLayout || toRenderView(root)->printing()); in layout() 915 if (!subtree) { in layout() 964 if (subtree) { in layout() 978 if (subtree) { in layout() 988 if (!subtree && !toRenderView(root)->printing()) in layout() 1000 subtree ? 0 : &cachedOffset); in layout()
|
/external/chromium/net/tools/spdyshark/ |
D | packet-spdy.c | 1482 proto_tree *subtree; in dissect_message_spdy() local 1492 subtree = proto_item_add_subtree(ti, ett_message_spdy); in dissect_message_spdy() 1499 proto_tree_add_text(subtree, tvb, offset, next_offset - offset, in dissect_message_spdy()
|
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/ |
D | X509CertSelectorTest.java | 1787 GeneralSubtree subtree = in testSetNameConstraints0() local 1791 subtrees.addSubtree(subtree); in testSetNameConstraints0() 1939 GeneralSubtree subtree = in testSetNameConstraints1() local 1943 subtrees.addSubtree(subtree); in testSetNameConstraints1()
|
/external/libxslt/libxslt/ |
D | xslt.c | 6915 xmlNodePtr subtree, newtree; in xsltLoadStylesheetPI() local 6927 subtree = ID->parent; in xsltLoadStylesheetPI() 6942 newtree = xmlDocCopyNode(subtree, fake, 1); in xsltLoadStylesheetPI() 6944 fake->URL = xmlNodeGetBase(doc, subtree->parent); in xsltLoadStylesheetPI() 6955 while ((subtree = subtree->parent) != (xmlNodePtr)doc) { in xsltLoadStylesheetPI() 6956 for (ns = subtree->ns; ns; ns = ns->next) { in xsltLoadStylesheetPI()
|
/external/webkit/Source/JavaScriptCore/parser/ |
D | JSParser.cpp | 1192 TreeSourceElements subtree = parseSourceElements<DontCheckForStrictMode>(context); in parseBlockStatement() local 1193 failIfFalse(subtree); in parseBlockStatement() 1196 return context.createBlockStatement(subtree, start, m_lastLine); in parseBlockStatement()
|
/external/iproute2/doc/ |
D | ip-tunnels.tex | 465 transmitted via tunnel, you can build CBQ subtree,
|
/external/dnsmasq/po/ |
D | pt_BR.po | 429 msgid "Export files by TFTP only from the specified subtree."
|
D | fi.po | 429 msgid "Export files by TFTP only from the specified subtree."
|
D | it.po | 429 msgid "Export files by TFTP only from the specified subtree."
|
D | de.po | 465 msgid "Export files by TFTP only from the specified subtree."
|
D | no.po | 443 msgid "Export files by TFTP only from the specified subtree."
|
D | id.po | 514 msgid "Export files by TFTP only from the specified subtree."
|