Searched defs:root (Results 201 - 225 of 557) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemVariable.java346 // it was already added by stylesheet root.
450 * @param root The root stylesheet for this transformation.
452 public void recompose(StylesheetRoot root) argument
454 root.recomposeVariables(this);
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DAxesWalker.java189 * The root node of the TreeWalker, as specified in setRoot(int root).
211 * Set the root node of the TreeWalker.
214 * @param root The context node of this step.
216 public void setRoot(int root) argument
220 m_dtm = xctxt.getDTM(root);
224 m_root = root;
225 m_currentNode = root;
227 if (DTM.NULL == root)
230 XSLMessages.createXPATHMessage(XPATHErrorResources.ER_SETTING_WALKER_ROOT_TO_NULL, null)); //"\n !!!! Error! Setting the root o
[all...]
/external/blktrace/btt/
H A Dseek.c38 struct rb_root root; member in struct:seeki
62 static void __insert(struct rb_root *root, long long sectors) argument
66 struct rb_node **p = &root->rb_node;
86 rb_insert_color(&sbp->rb_node, root);
218 memset(&sip->root, 0, sizeof(sip->root));
247 __destroy(sip->root.rb_node);
267 __insert(&sip->root, dist);
288 if (sip->root.rb_node)
289 (void)__median(sip->root
298 struct rb_root *root = &sip->root; local
[all...]
/external/chromium/base/json/
H A Djson_reader.cc78 "Unexpected data after root element.";
101 Value* root = reader.JsonToValue(json, true, allow_trailing_comma); local
102 if (root)
103 return root;
172 scoped_ptr<Value> root(BuildValue(check_root));
173 if (root.get()) {
175 return root.release();
206 // The root token must be an array or an object.
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility.cc131 // Adjust top left position by the root document's scroll offset.
132 BrowserAccessibility* root = manager_->GetRoot(); local
135 root->GetAttributeAsInt(
137 root->GetAttributeAsInt(
H A Dbrowser_accessibility_manager.cc230 BrowserAccessibility* root) {
231 if (focus_ && (!root || focus_->IsDescendantOf(root)))
229 GetFocus( BrowserAccessibility* root) argument
H A Dbrowser_accessibility_manager_unittest.cc72 WebAccessibility root; local
73 root.id = 1;
74 root.name = UTF8ToUTF16("Document");
75 root.role = WebAccessibility::ROLE_DOCUMENT;
76 root.state = 0;
77 root.children.push_back(button);
78 root.children.push_back(checkbox);
88 root,
103 root,
133 // root
[all...]
/external/chromium/chrome/browser/
H A Dcookies_tree_model_unittest.cc71 // 32 because there's the root, then foo1 -> cookies -> a,
169 CookieTreeRootNode* root = static_cast<CookieTreeRootNode*>( local
171 std::string retval = GetNodesOfChildren(root, type);
207 // Do not call on the root.
352 // root -> foo1 -> cookies -> a, foo2, foo3 -> cookies -> c
418 // root -> foo1 -> cookies -> a, foo2, foo3 -> cookies -> c
485 // 33 because there's the root, then foo1 -> cookies -> a,
547 // 34 because there's the root, then foo1 -> cookies -> a,
600 // 11 because there's the root, then foo1 -> cookies -> a,
611 // Left with root
670 CookieTreeRootNode* root = local
[all...]
H A Dmemory_details_linux.cc173 const pid_t root, const pid_t zygote,
176 out->push_back(root);
179 wavefront.insert(root);
172 GetAllChildren(const std::vector<Process>& processes, const pid_t root, const pid_t zygote, std::vector<pid_t>* out) argument
/external/chromium/chrome/browser/history/
H A Dquery_parser.cc270 QueryNodeList root; local
271 if (!ParseQueryImpl(query, &root))
273 return root.AppendToSQLiteQuery(sqlite_query);
278 QueryNodeList root; local
279 if (ParseQueryImpl(l10n_util::ToLower(query), &root))
280 nodes->swap(*root.children());
286 QueryNodeList root; local
287 if (!ParseQueryImpl(query, &root))
289 root.AppendWords(words);
324 QueryNodeList* root) {
323 ParseQueryImpl(const string16& query, QueryNodeList* root) argument
[all...]
/external/chromium/chrome/browser/sync/glue/
H A Dpreference_model_associator.cc47 const sync_api::BaseNode& root,
99 if (!write_node.InitUniqueByCreation(syncable::PREFERENCES, root, tag)) {
126 sync_api::ReadNode root(&trans);
127 if (!root.InitByIdLookup(root_id)) {
138 InitPrefNodeAndAssociate(&trans, root, pref);
45 InitPrefNodeAndAssociate( sync_api::WriteTransaction* trans, const sync_api::BaseNode& root, const PrefService::Preference* pref) argument
/external/chromium/chrome/browser/ui/gtk/
H A Dtab_contents_drag_source.cc277 gfx::Point root = gtk_util::ScreenPoint(GetContentNativeView()); local
282 client.x(), client.y(), root.x(), root.y(),
349 gfx::Point root = gtk_util::ScreenPoint(GetContentNativeView()); local
354 client.x(), client.y(), root.x(), root.y(),
/external/chromium/chrome/browser/ui/webui/
H A Dcookies_tree_model_util.cc197 CookieTreeNode* GetTreeNodeFromPath(CookieTreeNode* root, argument
203 CookieTreeNode* parent = root;
/external/chromium/chrome/common/extensions/
H A Dupdate_manifest.cc57 // Returns child nodes of |root| with name |name| in namespace |xml_namespace|.
58 static std::vector<xmlNode*> GetChildren(xmlNode* root, xmlNs* xml_namespace, argument
61 for (xmlNode* child = root->children; child != NULL; child = child->next) {
218 xmlNode *root = xmlDocGetRootElement(document.get()); local
219 if (!root) {
220 ParseError("Missing root node");
225 xmlNs* gupdate_ns = GetNamespace(root, kExpectedGupdateXmlns);
231 if (!TagNameEquals(root, "gupdate", gupdate_ns)) {
237 if (GetAttribute(root, "protocol") != kExpectedGupdateProtocol) {
244 std::vector<xmlNode*> daystarts = GetChildren(root, gupdate_n
[all...]
/external/chromium/net/base/
H A Dcert_database_nss.cc202 X509Certificate* root = FindRootInList(certificates); local
203 bool success = psm::ImportCACerts(certificates, root, trust_bits,
/external/chromium/third_party/libjingle/source/talk/session/tunnel/
H A Dsecuretunnelsessionclient.cc247 buzz::XmlElement* root = local
251 root->AddElement(type_elem);
256 root->AddElement(client_cert_elem);
262 root->AddElement(server_cert_elem);
264 *elem = root;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DLLVMConventionsChecker.cpp219 ASTFieldVisitor(const CXXRecordDecl *root, BugReporter &br) argument
220 : Root(root), BR(br) {}
/external/elfutils/libebl/
H A Deblgstrtab.c93 struct Ebl_GStrent *root; member in struct:Ebl_GStrtab
270 sep = searchstring (&st->root, newstr);
377 copystrings (st->root, &endp, &copylen);
H A Deblstrtab.c93 struct Ebl_Strent *root; member in struct:Ebl_Strtab
253 struct Ebl_Strent **sep = searchstring (&st->root, newstr);
355 copystrings (st->root, &endp, &copylen);
H A Deblwstrtab.c94 struct Ebl_WStrent *root; member in struct:Ebl_WStrtab
264 sep = searchstring (&st->root, newstr);
371 copystrings (st->root, &endp, &copylen);
/external/freetype/include/freetype/internal/
H A Dftdriver.h125 /* root :: The parent module. */
184 FT_Module_Class root; member in struct:FT_Driver_ClassRec_
/external/freetype/src/autofit/
H A Daflatin.h119 AF_ScriptMetricsRec root; member in struct:AF_LatinMetricsRec_
/external/freetype/src/base/
H A Dftcalc.c113 FT_UInt32 val, root, newroot, mask; local
116 root = 0;
122 newroot = root + mask;
126 root = newroot + mask;
129 root >>= 1;
134 return root;
808 FT_UInt32 root, rem_hi, rem_lo, test_div; local
812 root = 0;
823 root <<= 1;
824 test_div = ( root <<
[all...]
/external/freetype/src/sfnt/
H A Dsfobjs.c139 FT_Memory memory = face->root.memory;
444 FT_Library library = face->root.driver->root.library;
491 face->root.num_faces = face->ttc_header.count;
492 face->root.face_index = face_index;
593 has_outline = FT_BOOL( face->root.internal->incremental_interface != 0 ||
657 if ( face->root.internal->incremental_interface &&
658 face->root.internal->incremental_interface->funcs->
684 if ( face->root.internal->incremental_interface &&
685 face->root
789 FT_Face root = &face->root; local
[all...]
/external/icu4c/test/cintltst/
H A Dcdtdptst.c32 void addDtFrDepTest(TestNode** root);
34 void addDtFrDepTest(TestNode** root) argument
36 addTest(root, &TestTwoDigitYearDSTParse, "tsformat/cdtdptst/TestTwoDigitYearDSTParse");
37 addTest(root, &TestPartialParse994, "tsformat/cdtdptst/TestPartialParse994");
38 addTest(root, &TestRunTogetherPattern985, "tsformat/cdtdptst/TestRunTogetherPattern985");
39 addTest(root, &TestCzechMonths459, "tsformat/cdtdptst/TestCzechMonths459");
40 addTest(root, &TestQuotePattern161, "tsformat/cdtdptst/TestQuotePattern161");

Completed in 239 milliseconds

1234567891011>>