HomeSort by relevance Sort by last modified time
    Searched refs:parser (Results 1776 - 1800 of 2894) sorted by null

<<71727374757677787980>>

  /external/chromium_org/third_party/webrtc/video/
call_perf_tests.cc 103 RTCPUtility::RTCPParserV2 parser(packet, length, true);
104 EXPECT_TRUE(parser.IsValid());
106 for (RTCPUtility::RTCPPacketTypes packet_type = parser.Begin();
108 packet_type = parser.Iterate()) {
110 const RTCPUtility::RTCPPacket& packet = parser.Packet();
  /external/chromium_org/tools/valgrind/
memcheck_analyze.py 404 '''Create a parser for Memcheck logs.
620 parser = optparse.OptionParser("usage: %prog [options] <files to analyze>")
621 parser.add_option("", "--source-dir",
625 (options, args) = parser.parse_args()
627 parser.error("no filename specified")
  /external/chromium_org/v8/src/
parser.h 323 // Parser state of containing expression, if any.
376 class Parser;
384 typedef v8::internal::Parser* Parser;
406 explicit ParserTraits(Parser* parser) : parser_(parser) {}
585 Parser* parser_;
589 class Parser : public ParserBase<ParserTraits> {
591 explicit Parser(CompilationInfo* info)
    [all...]
  /external/srec/srec/Semproc/src/
SemanticGraphImpl.c 720 arc_token *parser, *atok; local
726 parser = impl->arc_token_list;
727 parser = ARC_TOKEN_PTR(impl->arc_token_list, parser->first_next_arc);
730 for (atok = parser; atok; atok = ARC_TOKEN_PTR(impl->arc_token_list, atok->next_token_index))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
plistlib.py 402 parser = ParserCreate()
403 parser.StartElementHandler = self.handleBeginElement
404 parser.EndElementHandler = self.handleEndElement
405 parser.CharacterDataHandler = self.handleData
406 parser.ParseFile(fileobj)
xmlrpclib.py 7 # the marshalling and response parser code can also be used to
34 # 2001-10-04 fl Make sure import expat gets a parser (from Guido van Rossum)
96 The marshalling and response parser code can also be used to
117 SlowParser Slow but safe standard parser (based on xmllib)
131 getparser Create instance of the fastest available parser & attach
525 FastParser = _xmlrpclib.Parser
544 # fast expat parser for Python 2.0 and later.
546 self._parser = parser = expat.ParserCreate(None, None)
548 parser.StartElementHandler = target.start
549 parser.EndElementHandler = target.en
    [all...]
argparse.py 14 parser = argparse.ArgumentParser(
16 parser.add_argument(
19 parser.add_argument(
22 args = parser.parse_args()
30 the parser with actions for optional and positional arguments. Then
35 there are errors with the parser's actions. Errors raised while
43 - Action -- The base class for parser actions. Typically actions are
53 RawDescriptionHelpFormatter and RawTextHelpFormatter tell the parser
78 'PARSER',
104 PARSER = 'A...
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
plistlib.py 402 parser = ParserCreate()
403 parser.StartElementHandler = self.handleBeginElement
404 parser.EndElementHandler = self.handleEndElement
405 parser.CharacterDataHandler = self.handleData
406 parser.ParseFile(fileobj)
xmlrpclib.py 7 # the marshalling and response parser code can also be used to
34 # 2001-10-04 fl Make sure import expat gets a parser (from Guido van Rossum)
96 The marshalling and response parser code can also be used to
117 SlowParser Slow but safe standard parser (based on xmllib)
131 getparser Create instance of the fastest available parser & attach
525 FastParser = _xmlrpclib.Parser
544 # fast expat parser for Python 2.0 and later.
546 self._parser = parser = expat.ParserCreate(None, None)
548 parser.StartElementHandler = target.start
549 parser.EndElementHandler = target.en
    [all...]
argparse.py 14 parser = argparse.ArgumentParser(
16 parser.add_argument(
19 parser.add_argument(
22 args = parser.parse_args()
30 the parser with actions for optional and positional arguments. Then
35 there are errors with the parser's actions. Errors raised while
43 - Action -- The base class for parser actions. Typically actions are
53 RawDescriptionHelpFormatter and RawTextHelpFormatter tell the parser
78 'PARSER',
104 PARSER = 'A...
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
mux.py 41 import email.parser namespace
251 # email.parser.Parser() parses RFC 2822 (RFC 822) style headers.
254 headers = email.parser.Parser().parsestr(header_lines)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtcp_receiver.cc 325 // Each "case" is responsible for iterate the parser to the
896 RTCPUtility::RTCPParserV2& parser,
898 const RTCPUtility::RTCPPacket& packet = parser.Packet();
902 parser.Iterate();
906 RTCPUtility::RTCPParserV2& parser,
908 const RTCPUtility::RTCPPacket& packet = parser.Packet();
921 parser.Iterate();
925 RTCPUtility::RTCPParserV2& parser,
927 const RTCPUtility::RTCPPacket& packet = parser.Packet();
929 RTCPUtility::RTCPPacketTypes packet_type = parser.Iterate()
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
x86id.c 326 /* Parser enabled at the time of parsing the instruction */
327 unsigned int parser:2; member in struct:x86_id_insn
669 /* Match parser mode */
670 if ((gas_flags & GAS_ONLY) && id_insn->parser != X86_PARSER_GAS)
672 if ((gas_flags & GAS_ILLEGAL) && id_insn->parser == X86_PARSER_GAS)
676 if (id_insn->parser == X86_PARSER_GAS
682 if (id_insn->parser == X86_PARSER_GAS && !(gas_flags & GAS_NO_REV))
    [all...]
  /frameworks/base/services/core/java/com/android/server/input/
InputManagerService.java 939 XmlResourceParser parser = resources.getXml(configResId); local
1492 XmlPullParser parser = null; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 4 * lexer, parser, and tree grammars. This is all the parsing
19 /** State of a lexer, parser, or tree parser are collected into a state
35 /** reset the parser's state; subclasses must rewinds the input stream */
141 * This method sets errorRecovery to indicate the parser is recovering
143 * To get out of recovery mode, the parser must successfully match
278 /** Get number of recognition errors (lexer, parser, tree parser). Each
279 * recognizer tracks its own number. So parser and lexer each have
354 * rule invocation, the parser pushes the set of tokens that ca
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t058rewriteAST.py 70 parser = parserCls(tStream)
71 r = getattr(parser, grammarEntry)()
74 self.assertEquals(len(parser._errors), 0, parser._errors)
89 return result, parser._errors
99 parser = parserCls(tStream)
100 r = getattr(parser, grammarEntry)()
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
auto-ast.rb 15 grammar_module::Parser.send( :include, ANTLR3::Test::CollectErrors )
16 grammar_module::Parser.send( :include, ANTLR3::Test::CaptureOutput )
19 parser = grammar_module::Parser.new( lexer )
21 r = parser.send( rule )
22 parser.reported_errors.should be_empty unless expect_errors
29 return( expect_errors ? [ result, parser.reported_errors ] : result )
43 grammar_module::Parser.send( :include, ANTLR3::Test::CollectErrors )
44 grammar_module::Parser.send( :include, ANTLR3::Test::CaptureOutput )
49 parser = grammar.module::Parser.new( lexer
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLDocumentParser.cpp 27 #include "core/html/parser/HTMLDocumentParser.h"
35 #include "core/html/parser/AtomicHTMLToken.h"
36 #include "core/html/parser/BackgroundHTMLParser.h"
37 #include "core/html/parser/HTMLParserScheduler.h"
38 #include "core/html/parser/HTMLParserThread.h"
39 #include "core/html/parser/HTMLScriptRunner.h"
40 #include "core/html/parser/HTMLTreeBuilder.h"
211 // FIXME: It may not be correct to disable this for the background parser.
215 // pumpTokenizer can cause this parser to be detached from the Document,
278 // pumpTokenizer can cause this parser to be detached from the Document
1010 RefPtrWillBeRawPtr<HTMLDocumentParser> parser = HTMLDocumentParser::create(fragment, contextElement, parserContentPolicy); local
    [all...]
  /external/chromium_org/third_party/libwebp/demux/
demux.c 708 const ChunkParser* parser; local
737 for (parser = kMasterChunks; parser->parse != NULL; ++parser) {
738 if (!memcmp(parser->id, GetBuffer(&dmux->mem_), TAG_SIZE)) {
739 status = parser->parse(dmux);
742 if (status != PARSE_ERROR && !parser->valid(dmux)) status = PARSE_ERROR;
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_func.cpp 24 FX_BOOL Parse(CPDF_SimpleParser& parser);
148 CPDF_SimpleParser parser((FX_LPBYTE)string, size);
149 CFX_ByteStringC word = parser.GetWord();
153 return m_MainProc.Parse(parser);
155 FX_BOOL CPDF_PSProc::Parse(CPDF_SimpleParser& parser)
158 CFX_ByteStringC word = parser.GetWord();
169 if (!pProc->Parse(parser)) {
  /external/webp/src/demux/
demux.c 708 const ChunkParser* parser; local
737 for (parser = kMasterChunks; parser->parse != NULL; ++parser) {
738 if (!memcmp(parser->id, GetBuffer(&dmux->mem_), TAG_SIZE)) {
739 status = parser->parse(dmux);
742 if (status != PARSE_ERROR && !parser->valid(dmux)) status = PARSE_ERROR;
    [all...]
  /external/chromium_org/third_party/ots/src/
layout.cc 176 const ots::LookupSubtableParser* parser) {
188 if (lookup_type == 0 || lookup_type > parser->num_types) {
246 if (!parser->Parse(file, data + subtables[i], length - subtables[i],
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
IntentTest.java 306 XmlResourceParser parser = null; local
310 mIntent = Intent.parseIntent(mContext.getResources(), parser, attrs);
318 parser = ai.loadXmlMetaData(mContext.getPackageManager(), "android.app.alias");
320 attrs = Xml.asAttributeSet(parser);
322 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
326 String nodeName = parser.getName();
331 int outerDepth = parser.getDepth();
332 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
333 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
338 nodeName = parser.getName()
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ClipDrawableTest.java 164 XmlPullParser parser = mContext.getResources().getXml(R.drawable.gradientdrawable); local
165 AttributeSet attrs = Xml.asAttributeSet(parser);
166 clipDrawable.inflate(mContext.getResources(), parser, attrs); local
  /cts/tests/tests/widget/src/android/widget/cts/
FrameLayoutTest.java 315 XmlPullParser parser = mActivity.getResources().getLayout(R.layout.framelayout_layout); local
316 WidgetTestUtils.beginDocument(parser, "LinearLayout");
317 return Xml.asAttributeSet(parser);

Completed in 1705 milliseconds

<<71727374757677787980>>