/external/sepolicy/ |
net.te | 2 type node, node_type;
|
unconfined.te | 16 allow unconfineddomain node_type:node *; 17 allow unconfineddomain node_type:{ tcp_socket udp_socket rawip_socket } node_bind;
|
attributes | 31 attribute node_type;
|
untrusted_app.te | 33 allow untrusted_app node_type:{ tcp_socket udp_socket } node_bind;
|
/external/chromium_org/chromeos/audio/ |
audio_device.cc | 59 chromeos::AudioDeviceType GetAudioType(const std::string& node_type) { 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)
|
/ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/stlport/ |
printers.py | 218 def __init__ (self, node_type, head): 219 self.node_type = node_type 234 node = self.item.cast (self.node_type).dereference() 246 node_type = lookup_stlport_priv_type ('_List_node<%s>' % ta0).pointer() 247 return self.Iterator (node_type, self.val['_M_node']['_M_data']) 269 def __init__ (self, rbiter, node_type): 271 self.node_type = node_type 280 self.pair = (item.cast (self.node_type))['_M_value_field' [all...] |
/prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/stlport/ |
printers.py | 217 def __init__ (self, node_type, head): 218 self.node_type = node_type 233 node = self.item.cast (self.node_type).dereference() 245 node_type = lookup_stlport_priv_type ('_List_node<%s>' % ta0).pointer() 246 return self.Iterator (node_type, self.val['_M_node']['_M_data']) 268 def __init__ (self, rbiter, node_type): 270 self.node_type = node_type 279 self.pair = (item.cast (self.node_type))['_M_value_field' [all...] |
/prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/stlport/ |
printers.py | 218 def __init__ (self, node_type, head): 219 self.node_type = node_type 234 node = self.item.cast (self.node_type).dereference() 246 node_type = lookup_stlport_priv_type ('_List_node<%s>' % ta0).pointer() 247 return self.Iterator (node_type, self.val['_M_node']['_M_data']) 269 def __init__ (self, rbiter, node_type): 271 self.node_type = node_type 280 self.pair = (item.cast (self.node_type))['_M_value_field' [all...] |
/external/chromium_org/chrome/browser/ui/bookmarks/ |
bookmark_editor.cc | 46 BookmarkEditor::EditDetails::EditDetails(Type node_type) 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;
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
BinTree.h | 110 typedef Node<value_type> node_type; typedef in class:mcld::PolicyIteratorBase 133 { return static_cast<node_type*>(IteratorType::m_pNode)->data; } 136 { return *static_cast<node_type*>(IteratorType::m_pNode)->data; } 139 { return (!IteratorType::isRoot() && (0 != static_cast<node_type*>(IteratorType::m_pNode)->data)); } 198 typedef Node<value_type> node_type; typedef in struct:mcld::TreeIterator 219 { return static_cast<node_type*>(m_pNode)->data; } 222 { return *static_cast<node_type*>(m_pNode)->data; } 228 { return (!isRoot() && (0 != static_cast<node_type*>(m_pNode)->data)); } 381 typedef Node<value_type> node_type; typedef in class:mcld::BinaryTree 443 node_type *node = BinaryTreeBase<DataType>::createNode() [all...] |
/frameworks/compile/mclinker/include/mcld/ |
InputTree.h | 92 typedef Node<value_type> node_type; typedef in class:mcld::BinaryTree 187 node_type *node = BinaryTreeBase<Input>::createNode(); 191 const_cast<const node_type*>(node)); 194 const_cast<const node_type*>(node)); 327 BinTreeTy::node_type* node = createNode(); 330 const_cast<const node_type*>(node)); 333 const_cast<const node_type*>(node)); 341 BinTreeTy::node_type* node = createNode(); 345 const_cast<const node_type*>(node)); 348 const_cast<const node_type*>(node)) [all...] |
/external/chromium/chrome/browser/ |
cookies_tree_model.h | 72 DetailedInfo(const string16& origin, NodeType node_type, 82 node_type(node_type), 89 DCHECK((node_type != TYPE_DATABASE) || database_info); 90 DCHECK((node_type != TYPE_LOCAL_STORAGE) || local_storage_info); 91 DCHECK((node_type != TYPE_SESSION_STORAGE) || session_storage_info); 92 DCHECK((node_type != TYPE_APPCACHE) || appcache_info); 93 DCHECK((node_type != TYPE_INDEXED_DB) || indexed_db_info); 96 DetailedInfo(const std::wstring& origin, NodeType node_type, 106 node_type(node_type) 122 NodeType node_type; member in struct:CookieTreeNode::DetailedInfo [all...] |
cookies_tree_model_unittest.cc | 108 CookieTreeNode::DetailedInfo::NodeType node_type) { 112 retval += GetNodesOfChildren(node->GetChild(i), node_type); 116 if (node->GetDetailedInfo().node_type == node_type) { 117 switch (node_type) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/ |
MockXmlNode.java | 53 * @param node_type One of Node.xxx_NODE constants, e.g. Node.ELEMENT_NODE 56 public MockXmlNode(String namespace, String localName, short node_type, 60 mNodeType = node_type;
|
/external/chromium/chrome/browser/accessibility/ |
accessibility_win_browsertest.cc | 687 unsigned short node_type; // NOLINT local 690 &node_type); 692 EXPECT_EQ(NODETYPE_DOCUMENT, node_type); 701 &node_type); 704 EXPECT_EQ(NODETYPE_ELEMENT, node_type); 713 &node_type); 716 EXPECT_EQ(NODETYPE_ELEMENT, node_type);
|
/external/chromium_org/chrome/browser/browsing_data/ |
cookies_tree_model.cc | 47 lhs->GetDetailedInfo().node_type); 49 rhs->GetDetailedInfo().node_type); 148 CHECK_EQ(host->GetDetailedInfo().node_type, 156 : node_type(TYPE_NONE), 171 DCHECK_EQ(TYPE_NONE, node_type); 172 node_type = type; 822 CHECK_EQ(host->GetDetailedInfo().node_type, 892 switch (ct_node->GetDetailedInfo().node_type) { [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
collected_cookies_gtk.cc | 342 if (detailed_info.node_type == CookieTreeNode::DetailedInfo::TYPE_COOKIE) { 387 if (node->GetDetailedInfo().node_type != 449 if (node->GetDetailedInfo().node_type !=
|
/external/libsepol/tests/policies/test-cond/ |
refpolicy-base.conf | 625 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/content/browser/accessibility/ |
accessibility_win_browsertest.cc | 830 unsigned short node_type; \/\/ NOLINT local [all...] |
/external/chromium/chrome/browser/ui/views/ |
collected_cookies_win.cc | 425 if (cookie_node->GetDetailedInfo().node_type == 437 if (cookie_node->GetDetailedInfo().node_type == 457 if (detailed_info.node_type == CookieTreeNode::DetailedInfo::TYPE_COOKIE) {
|
/external/chromium_org/chrome/browser/ui/gtk/ |
collected_cookies_gtk.cc | 386 if (detailed_info.node_type == CookieTreeNode::DetailedInfo::TYPE_COOKIE) { 419 if (node->GetDetailedInfo().node_type != 479 if (node->GetDetailedInfo().node_type !=
|
/external/chromium_org/chrome/browser/ui/views/ |
collected_cookies_views.cc | 499 if (cookie_node->GetDetailedInfo().node_type == 511 if (cookie_node->GetDetailedInfo().node_type == 531 if (detailed_info.node_type == CookieTreeNode::DetailedInfo::TYPE_COOKIE) {
|
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
ConfigureForm.java | 359 String value = getFieldValue(ConfigureNodeFields.node_type);
374 addField(ConfigureNodeFields.node_type, FormField.TYPE_LIST_SINGLE);
375 setAnswer(ConfigureNodeFields.node_type.getFieldName(), getListSingle(type.toString()));
|
/external/chromium/chrome/browser/ui/cocoa/content_settings/ |
collected_cookies_mac.mm | 237 if (cookie->GetDetailedInfo().node_type != 330 if (cookie->GetDetailedInfo().node_type !=
|
/external/chromium_org/third_party/WebKit/Tools/gdb/ |
webkit.py | 328 node_type = gdb.lookup_type('WebCore::Node') 337 if target_type == str(node_type):
|