Home
last modified time | relevance | path

Searched refs:HasAttributes (Results 1 – 13 of 13) sorted by relevance

/third_party/cef/tests/ceftests/
Dxml_reader_unittest.cc71 ASSERT_TRUE(reader->HasAttributes()); in TEST()
91 ASSERT_FALSE(reader->HasAttributes()); in TEST()
112 ASSERT_FALSE(reader->HasAttributes()); in TEST()
142 ASSERT_FALSE(reader->HasAttributes()); in TEST()
158 ASSERT_FALSE(reader->HasAttributes()); in TEST()
177 ASSERT_FALSE(reader->HasAttributes()); in TEST()
193 ASSERT_FALSE(reader->HasAttributes()); in TEST()
212 ASSERT_FALSE(reader->HasAttributes()); in TEST()
228 ASSERT_FALSE(reader->HasAttributes()); in TEST()
249 ASSERT_FALSE(reader->HasAttributes()); in TEST()
[all …]
/third_party/libxml2/python/tests/
Dreadernext.py26 reader.NodeType() != 1 or reader.HasAttributes() != 0:
34 reader.NodeType() != 1 or reader.HasAttributes() != 0:
42 reader.HasAttributes() != 0:
57 reader.NodeType() != 1 or reader.HasAttributes() != 0:
65 reader.NodeType() != 15 or reader.HasAttributes() != 0:
Dreader.py26 reader.NodeType() != 1 or reader.HasAttributes() != 0:
34 reader.NodeType() != 1 or reader.HasAttributes() != 1:
42 reader.NodeType() != 1 or reader.HasAttributes() != 0:
50 reader.NodeType() != 3 or reader.HasAttributes() != 0 or \
59 reader.NodeType() != 15 or reader.HasAttributes() != 0:
67 reader.NodeType() != 15 or reader.HasAttributes() != 0:
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMIRPrinter.cpp608 bool HasAttributes = false; in print() local
613 HasAttributes = true; in print()
623 OS << (HasAttributes ? ", " : " ("); in print()
625 HasAttributes = true; in print()
628 OS << (HasAttributes ? ", " : " ("); in print()
630 HasAttributes = true; in print()
633 OS << (HasAttributes ? ", " : " ("); in print()
635 HasAttributes = true; in print()
637 if (HasAttributes) in print()
DMachineBasicBlock.cpp304 bool HasAttributes = false; in print() local
309 HasAttributes = true; in print()
320 OS << (HasAttributes ? ", " : " ("); in print()
322 HasAttributes = true; in print()
325 OS << (HasAttributes ? ", " : " ("); in print()
327 HasAttributes = true; in print()
330 OS << (HasAttributes ? ", " : " ("); in print()
332 HasAttributes = true; in print()
334 if (HasAttributes) in print()
/third_party/cef/libcef_dll/wrapper/
Dcef_xml_object.cc82 if (reader->HasAttributes() && reader->MoveToFirstAttribute()) { in Load()
201 if (object->HasAttributes()) { in Append()
283 bool CefXmlObject::HasAttributes() { in HasAttributes() function in CefXmlObject
/third_party/cef/libcef_dll/ctocpp/
Dxml_reader_ctocpp.h52 bool HasAttributes() override;
Dxml_reader_ctocpp.cc304 NO_SANITIZE("cfi-icall") bool CefXmlReaderCToCpp::HasAttributes() { in HasAttributes() function in CefXmlReaderCToCpp
/third_party/cef/include/
Dcef_xml_reader.h171 virtual bool HasAttributes() = 0;
/third_party/cef/libcef/browser/
Dxml_reader_impl.h41 bool HasAttributes() override;
Dxml_reader_impl.cc324 bool CefXmlReaderImpl::HasAttributes() { in HasAttributes() function in CefXmlReaderImpl
/third_party/cef/include/wrapper/
Dcef_xml_object.h148 bool HasAttributes();
/third_party/cef/libcef_dll/cpptoc/
Dxml_reader_cpptoc.cc309 bool _retval = CefXmlReaderCppToC::Get(self)->HasAttributes(); in xml_reader_has_attributes()