Searched refs:node_type (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium_org/chromeos/audio/
H A Daudio_device.cc59 chromeos::AudioDeviceType GetAudioType(const std::string& node_type) { argument
60 if (node_type.find("HEADPHONE") != std::string::npos)
62 else if (node_type.find("INTERNAL_MIC") != std::string::npos)
64 else if (node_type.find("MIC") != std::string::npos)
66 else if (node_type.find("USB") != std::string::npos)
68 else if (node_type.find("BLUETOOTH") != std::string::npos)
70 else if (node_type.find("HDMI") != std::string::npos)
72 else if (node_type.find("INTERNAL_SPEAKER") != std::string::npos)
/external/kernel-headers/original/uapi/rdma/
H A Drdma_netlink.h31 __u8 node_type; member in struct:rdma_cm_id_stats
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DConfigureNodeFields.java125 node_type, enum constant in enum:ConfigureNodeFields
H A DConfigureForm.java359 String value = getFieldValue(ConfigureNodeFields.node_type);
374 addField(ConfigureNodeFields.node_type, FormField.TYPE_LIST_SINGLE);
375 setAnswer(ConfigureNodeFields.node_type.getFieldName(), getListSingle(type.toString()));
H A DPubSubManager.java128 FormField nodeTypeField = config.getField(ConfigureNodeFields.node_type.getFieldName());
/external/chromium_org/chrome/browser/ui/bookmarks/
H A Dbookmark_editor.cc46 BookmarkEditor::EditDetails::EditDetails(Type node_type) argument
47 : type(node_type), existing_node(NULL), parent_node(NULL), index(-1) {
51 BookmarkNode::Type node_type = BookmarkNode::URL; local
54 node_type = existing_node->type();
57 node_type = BookmarkNode::URL;
60 node_type = BookmarkNode::FOLDER;
65 return node_type;
H A Dbookmark_editor.h95 explicit EditDetails(Type node_type);
/external/sepolicy/
H A Dattributes34 attribute node_type;
H A Dunconfined.te87 allow unconfineddomain node_type:node *;
/external/chromium_org/third_party/jinja2/
H A Dnodes.py177 def find(self, node_type):
181 for result in self.find_all(node_type):
184 def find_all(self, node_type):
189 if isinstance(child, node_type):
191 for result in child.find_all(node_type):
/external/chromium_org/content/browser/accessibility/
H A Daccessibility_win_browsertest.cc698 unsigned short node_type; // NOLINT local
701 &unique_id, &node_type);
703 EXPECT_EQ(NODETYPE_DOCUMENT, node_type);
714 &unique_id, &node_type);
717 EXPECT_EQ(NODETYPE_ELEMENT, node_type);
728 &unique_id, &node_type);
731 EXPECT_EQ(NODETYPE_ELEMENT, node_type);
/external/chromium_org/chrome/browser/browsing_data/
H A Dcookies_tree_model.cc48 lhs->GetDetailedInfo().node_type);
50 rhs->GetDetailedInfo().node_type);
149 CHECK_EQ(host->GetDetailedInfo().node_type,
157 : node_type(TYPE_NONE),
172 DCHECK_EQ(TYPE_NONE, node_type);
173 node_type = type;
829 CHECK_EQ(host->GetDetailedInfo().node_type,
899 switch (ct_node->GetDetailedInfo().node_type) {
973 if (!TypeIsProtected(info.node_type))
H A Dcookies_tree_model_unittest.cc180 CookieTreeNode::DetailedInfo::NodeType node_type) {
184 retval += GetNodesOfChildren(node->GetChild(i), node_type);
189 if (node->GetDetailedInfo().node_type != node_type)
192 switch (node_type) {
178 GetNodesOfChildren( const CookieTreeNode* node, CookieTreeNode::DetailedInfo::NodeType node_type) argument
/external/chromium_org/chrome/browser/ui/views/
H A Dcollected_cookies_views.cc479 if (cookie_node->GetDetailedInfo().node_type ==
492 if (cookie_node->GetDetailedInfo().node_type ==
512 if (detailed_info.node_type == CookieTreeNode::DetailedInfo::TYPE_COOKIE) {
/external/chromium_org/third_party/WebKit/Tools/gdb/
H A Dwebkit.py359 node_type = gdb.lookup_type('WebCore::Node')
368 if target_type == str(node_type):
/external/lldb/source/DataFormatters/
H A DLibCxxMap.cpp295 ClangASTType node_type(node->GetClangType());
297 if (node_type.GetIndexOfFieldWithName("__value_", NULL, &bit_offset) == UINT32_MAX)
/external/libsepol/tests/policies/test-cond/
H A Drefpolicy-base.conf625 attribute node_type;
805 type node_t, node_type;
806 type compat_ipv4_node_t alias node_compat_ipv4_t, node_type;
807 type inaddr_any_node_t alias node_inaddr_any_t, node_type;
808 type node_internal_t, node_type;
809 type link_local_node_t alias node_link_local_t, node_type;
810 type lo_node_t alias node_lo_t, node_type;
811 type mapped_ipv4_node_t alias node_mapped_ipv4_t, node_type;
812 type multicast_node_t alias node_multicast_t, node_type;
813 type site_local_node_t alias node_site_local_t, node_type;
[all...]
/external/chromium_org/components/autofill/content/renderer/
H A Dform_autofill_util.cc214 WebNode::NodeType node_type = previous.nodeType(); local
215 if (node_type == WebNode::CommentNode)
219 if (node_type != WebNode::TextNode &&
220 node_type != WebNode::ElementNode)
/external/opencv/cxcore/include/
H A Dcxtypes.h1198 #define CV_TREE_NODE_FIELDS(node_type) \
1201 struct node_type* h_prev; /* Previous sequence. */ \
1202 struct node_type* h_next; /* Next sequence. */ \
1203 struct node_type* v_prev; /* 2nd previous sequence. */ \
1204 struct node_type* v_next /* 2nd next sequence. */
/external/chromium_org/third_party/libxml/src/
H A Dc14n.c183 xmlC14NErrInvalidNode(const char *node_type, const char *extra) argument
188 "Node %s is invalid here : %s\n", node_type, extra);
198 xmlC14NErrUnknownNode(int node_type, const char *extra) argument
203 "Unknown node type %d found : %s\n", node_type, extra);
/external/libxml2/
H A Dc14n.c185 xmlC14NErrInvalidNode(const char *node_type, const char *extra) argument
190 "Node %s is invalid here : %s\n", node_type, extra);
200 xmlC14NErrUnknownNode(int node_type, const char *extra) argument
205 "Unknown node type %d found : %s\n", node_type, extra);
/external/lldb/examples/synthetic/
H A Dlibcxx.py514 node_type = node.GetType()
515 fields_count = node_type.GetNumberOfFields()
517 field = node_type.GetFieldAtIndex(i)
/external/chromium_org/chrome/browser/ui/webui/
H A Dcookies_tree_model_util.cc102 switch (node.GetDetailedInfo().node_type) {
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
H A Dwizard.rb264 node_type = @token_scheme[ token_name ] || INVALID_TOKEN_TYPE
265 node = @adaptor.create_from_type( node_type, text )
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dbookmarks_helper.cc135 // Returns the number of nodes of node type |node_type| in |model| whose
138 BookmarkNode::Type node_type,
142 // |node_type| whose titles match |title|.
146 if ((node->type() == node_type) && (node->GetTitle() == title))
137 CountNodesWithTitlesMatching(BookmarkModel* model, BookmarkNode::Type node_type, const base::string16& title) argument

Completed in 786 milliseconds

12