/external/deqp/framework/common/ |
D | tcuSeedBuilder.cpp | 67 void SeedBuilder::feed (size_t size, const void* ptr) in feed() function in tcu::SeedBuilder 76 builder.feed(sizeof(val), &val); in operator <<() 84 builder.feed(sizeof(val), &val); in operator <<() 92 builder.feed(sizeof(val), &val); in operator <<() 105 builder.feed(sizeof(data), data); in operator <<() 118 builder.feed(sizeof(data), data); in operator <<() 133 builder.feed(sizeof(data), data); in operator <<() 148 builder.feed(sizeof(data), data); in operator <<() 168 builder.feed(sizeof(data), data); in operator <<() 188 builder.feed(sizeof(data), data); in operator <<() [all …]
|
D | tcuSeedBuilder.hpp | 44 void feed (size_t size, const void* ptr);
|
/external/autotest/client/site_tests/webrtc_PausePlayPeerConnections/ |
D | pause-play.js | 150 this.elements.forEach((feed) => { 152 feed.play(); 154 feed.pause(); 164 this.elements.forEach((feed) => { 165 feed.pause();
|
/external/python/cpython2/Lib/test/ |
D | test_sax.py | 688 parser.feed('<!DOCTYPE doc [\n') 689 parser.feed(' <!ENTITY img SYSTEM "expat.gif" NDATA GIF>\n') 690 …parser.feed(' <!NOTATION GIF PUBLIC "-//CompuServe//NOTATION Graphics Interchange Format 89a//EN"… 691 parser.feed(']>\n') 692 parser.feed('<doc></doc>') 714 parser.feed('<!DOCTYPE doc [\n') 715 parser.feed(' <!ENTITY test SYSTEM "whatever">\n') 716 parser.feed(']>\n') 717 parser.feed('<doc>&test;</doc>') 738 parser.feed("<doc/>") [all …]
|
D | test_xmllib.py | 28 parser.feed(c) 36 h.feed(nsdoc)
|
D | test_htmllib.py | 35 parser.feed( 50 parser.feed(
|
D | test_sgmllib.py | 107 parser.feed(s) 129 parser.feed(source) 364 fp.feed(data)
|
/external/autotest/frontend/afe/ |
D | urls.py | 3 from autotest_lib.frontend.afe.feeds import feed 6 'jobs' : feed.JobFeed
|
/external/python/cpython2/Doc/library/ |
D | htmlparser.rst | 78 parser.feed('<html><head><title>Test</title></head>' 105 .. method:: HTMLParser.feed(data) 287 >>> parser.feed('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" ' 293 >>> parser.feed('<img src="python-logo.png" alt="The Python logo">') 298 >>> parser.feed('<h1>Python</h1>') 306 >>> parser.feed('<style type="text/css">#python { color: green }</style>') 312 >>> parser.feed('<script type="text/javascript">' 321 >>> parser.feed('<!-- a comment -->' 329 >>> parser.feed('>>>') 334 Feeding incomplete chunks to :meth:`~HTMLParser.feed` works, but [all …]
|
D | htmllib.rst | 39 * The interface to feed data to an instance is through the :meth:`feed` method, 41 text at a time as desired; ``p.feed(a); p.feed(b)`` has the same effect as 42 ``p.feed(a+b)``. When the data contains complete HTML markup constructs, these 48 parser.feed(open('myfile.html').read())
|
D | curses.ascii.rst | 42 | :const:`LF` | Line feed | 48 | :const:`FF` | Form feed | 156 Checks for ASCII white-space characters; space, line feed, carriage return, form 157 feed, horizontal tab, vertical tab.
|
D | xml.sax.reader.rst | 26 In some cases, it is desirable not to parse an input source at once, but to feed 33 feed method immediately. After parsing has been finished with a call to close 35 either from feed or using the parse method. 41 interface using the feed, close and reset methods of the IncrementalParser 203 .. method:: IncrementalParser.feed(data) 218 is ready to parse new documents. The results of calling parse or feed after
|
/external/tpm2/generator/ |
D | generator.py | 134 html_parser.feed(open(structures_file).read()) 140 html_parser.feed(open(commands_file).read())
|
/external/deqp/executor/ |
D | xeXMLParser.cpp | 82 void Tokenizer::feed (const deUint8* bytes, int numBytes) in feed() function in xe::xml::Tokenizer 373 void Parser::feed (const deUint8* bytes, int numBytes) in feed() function in xe::xml::Parser 375 m_tokenizer.feed(bytes, numBytes); in feed()
|
D | xeXMLParser.hpp | 91 void feed (const deUint8* bytes, int numBytes); 147 void feed (const deUint8* bytes, int numBytes);
|
D | xeContainerFormatParser.hpp | 61 void feed (const deUint8* bytes, size_t numBytes);
|
/external/python/cpython2/Lib/xml/sax/ |
D | xmlreader.py | 123 self.feed(buffer) 127 def feed(self, data): member in IncrementalParser
|
/external/autotest/client/site_tests/firmware_TouchMTB/ |
D | noise_summary.py | 233 c.feed(html) 235 p.feed(html)
|
/external/clang/www/ |
D | libstdc++4.4-clang0x.patch | 126 * std::swap(d1,d2) will feed to this function. 231 * that std::swap(m1,m2) will feed to this function. 246 * std::swap(m1,m2) will feed to this function. 261 * std::swap(s1,s2) will feed to this function. 354 * std::swap(s1,s2) will feed to this function. 408 * std::swap(v1,v2) will feed to this function.
|
/external/python/cpython2/Lib/email/ |
D | parser.py | 71 feedparser.feed(data)
|
/external/autotest/site_utils/ |
D | phapi_lib.py | 458 feed = self.list_issues(q=search_text, can=search_space, 465 for t_issue in self._get_property_values(feed):
|
/external/markdown/docs/extensions/ |
D | RSS.txt | 29 * **TITLE** : The title for the feed.
|
/external/python/cpython2/Lib/xml/etree/ |
D | ElementTree.py | 656 parser.feed(data) 1281 self._parser.feed(data) 1311 parser.feed(text) 1327 parser.feed(text) 1360 parser.feed(text) 1649 def feed(self, data): member in XMLParser
|
/external/skia/tools/ |
D | compare_codereview.py | 51 parser.feed(urllib2.urlopen(url).read()) 172 parser.feed(urllib2.urlopen(url).read())
|
/external/swiftshader/third_party/LLVM/test/Transforms/DeadArgElim/ |
D | keepalive.ll | 7 ; Check if the pass doesn't modify anything that doesn't need changing. We feed
|