HomeSort by relevance Sort by last modified time
    Searched defs:parse (Results 1 - 25 of 942) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_iterate.c 36 struct tgsi_parse_context parse; local
38 if (tgsi_parse_init( &parse, tokens ) != TGSI_PARSE_OK)
41 ctx->processor = parse.FullHeader.Processor;
47 while (!tgsi_parse_end_of_tokens( &parse )) {
48 tgsi_parse_token( &parse );
50 switch (parse.FullToken.Token.Type) {
53 if (!ctx->iterate_instruction( ctx, &parse.FullToken.FullInstruction ))
59 if (!ctx->iterate_declaration( ctx, &parse.FullToken.FullDeclaration ))
65 if (!ctx->iterate_immediate( ctx, &parse.FullToken.FullImmediate ))
71 if (!ctx->iterate_property( ctx, &parse.FullToken.FullProperty )
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkXMLParser_empty.cpp 10 bool SkXMLParser::parse(SkStream& docStream) function in class:SkXMLParser
15 bool SkXMLParser::parse(const char doc[], size_t len) function in class:SkXMLParser
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_iterate.c 36 struct tgsi_parse_context parse; local
38 if (tgsi_parse_init( &parse, tokens ) != TGSI_PARSE_OK)
41 ctx->processor = parse.FullHeader.Processor;
47 while (!tgsi_parse_end_of_tokens( &parse )) {
48 tgsi_parse_token( &parse );
50 switch (parse.FullToken.Token.Type) {
53 if (!ctx->iterate_instruction( ctx, &parse.FullToken.FullInstruction ))
59 if (!ctx->iterate_declaration( ctx, &parse.FullToken.FullDeclaration ))
65 if (!ctx->iterate_immediate( ctx, &parse.FullToken.FullImmediate ))
71 if (!ctx->iterate_property( ctx, &parse.FullToken.FullProperty )
    [all...]
  /external/skia/src/ports/
SkXMLParser_empty.cpp 10 bool SkXMLParser::parse(SkStream& docStream) function in class:SkXMLParser
15 bool SkXMLParser::parse(const char doc[], size_t len) function in class:SkXMLParser
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
auto-ast.rb 8 def parse( grammar, rule, input, expect_errors = false ) method in class:TestAutoAST
61 result = parse( <<-'END', :a, 'abc 34' )
73 result = parse( <<-'END', :a, 'abc 34' )
85 result = parse( <<-'END', :a, 'abc 34' )
97 result = parse( <<-'END', :a, '34 abc' )
109 result = parse( <<-'END', :a, 'abc 34 dag 4532' )
122 result = parse( <<-'END', :a, 'a 1 b' )
134 result = parse( <<-'END', :a, 'void foo;' )
146 result = parse( <<-'END', :a, 'void foo;' )
158 result = parse( <<-'END', :a, 'void foo;'
    [all...]
rewrites.rb 8 def parse( grammar, rule, input, expect_errors = false ) method in class:TestASTViaRewriteRules
60 result = parse( <<-'END', :a, 'abc 34' )
73 result = parse( <<-'END', :a, 'abc' )
87 result = parse( <<-'END', :a, 'abc' )
101 result = parse( <<-'END', :a, 'abc' )
115 result = parse( <<-'END', :a, 'abc' )
128 result = parse( <<-'END', :a, 'c' )
142 result = parse( <<-'END', :a, 'ick' )
156 result = parse( <<-'END', :a, 'abc' )
171 result = parse( <<-'END', :a, 'abc 34'
    [all...]
hetero-nodes.rb 593 def parse( grammar_name, grammar_rule, input ) method in class:TestHeterogeneousNodeTypes
621 result = parse( :VToken, :a, 'a' )
627 result = parse( :TokenWithQualifiedType, :a, 'a' )
633 result = parse( :TokenWithLabel, :a, 'a' )
639 result = parse( :TokenWithListLabel, :a, 'a' )
645 result = parse( :TokenRoot, :a, 'a' )
651 result = parse( :TokenRootWithListLabel, :a, 'a' )
657 result = parse( :FromString, :a, 'begin' )
663 result = parse( :StringRoot, :a, 'begin' )
669 result = parse( :RewriteToken, :a, 'a'
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/template-output/
template-output.rb 8 def parse( grammar, input, options = nil ) method in class:TestTemplateOutput
29 ANTLR3::Template::Group.parse( source.fixed_indent( 0 ) )
34 text = parse( <<-'END', "abc 34" )
61 text = parse( <<-'END', 'a + b', :templates => templates )
82 text = parse( <<-'END', 'abc 34' )
101 text = parse( <<-'END', "abc def ghi" )
122 text = parse( <<-'END', "abc" )
140 text = parse( <<-'END', 'abc' )
157 # text = parse( <<-'END', 'abc' )
185 text = parse( <<-'END', 'abc', :templates => templates
    [all...]
  /external/proguard/src/proguard/util/
StringParser.java 34 public StringMatcher parse(String regularExpression); method in interface:StringParser
  /frameworks/opt/net/voip/src/jni/rtp/
util.cpp 25 int parse(JNIEnv *env, jstring jAddress, int port, sockaddr_storage *ss) function
  /packages/apps/Tag/src/com/android/apps/tag/message/
NdefMessageParser.java 42 /** Parse an NdefMessage */
43 public static ParsedNdefMessage parse(NdefMessage message) { method in class:NdefMessageParser
55 elements.add(SmartPoster.parse(record));
57 elements.add(UriRecord.parse(record));
59 elements.add(TextRecord.parse(record));
61 elements.add(ImageRecord.parse(record));
63 elements.add(VCardRecord.parse(record));
65 elements.add(MimeRecord.parse(record));
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
debug-mode.rb 66 def parse( grammar, rule, input, options = {} ) method in class:TestDebugGrammars
99 parse( grammar, :a, 'a', :listener => listener )
121 debugger = parse( grammar, :a, 'a' )
151 debugger = parse( grammar, :a, "a b" )
189 debugger = parse( grammar, :a, "a" )
223 debugger = parse( grammar, :a, "a 1 b c 3" )
294 debugger = parse( grammar, :a, "a 1 b c 3" )
364 debugger = parse( grammar, :a, "a" )
403 debugger = parse( grammar, :a, "a 1" )
456 debugger = parse( grammar, :a, "a !"
    [all...]
  /external/smack/src/com/kenai/jbosh/
BodyParser.java 30 * @param xml XML to parse
32 * @throws BOSHException on parse error
34 BodyParserResults parse(String xml) throws BOSHException; method in interface:BodyParser
  /external/apache-http/src/org/apache/http/io/
HttpMessageParser.java 50 HttpMessage parse() method in interface:HttpMessageParser
  /external/bison/examples/calc++/
calc++-driver.cc 17 calcxx_driver::parse (const std::string &f) function in class:calcxx_driver
23 int res = parser.parse ();
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
InFilesParser.pm 75 # parse take 3 attributes:
80 sub parse($) subroutine
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
FieldParser.java 20 Field parse(final String name, final String body, final String raw); method in interface:FieldParser
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
__init__.py 6 parse(buf, mode="exec") -> AST
11 The same as parse(open(path))
29 from compiler.transformer import parse, parseFile namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
__init__.py 6 parse(buf, mode="exec") -> AST
11 The same as parse(open(path))
29 from compiler.transformer import parse, parseFile namespace
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
UserDataBox.java 41 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException { method in class:UserDataBox
42 super.parse(readableByteChannel, header, contentSize, boxParser); //To change body of overridden methods use File | Settings | File Templates.
  /external/apache-http/src/org/apache/http/cookie/
CookieAttributeHandler.java 49 * Parse the given cookie attribute value and update the corresponding
55 void parse(SetCookie cookie, String value) method in interface:CookieAttributeHandler
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicCommentHandler.java 42 public void parse(final SetCookie cookie, final String value) method in class:BasicCommentHandler
BasicSecureHandler.java 44 public void parse(final SetCookie cookie, final String value) method in class:BasicSecureHandler
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLengthList.cpp 54 void SVGLengthList::parse(const String& value, SVGLengthMode mode) function in class:WebCore::SVGLengthList
SVGNumberList.cpp 41 void SVGNumberList::parse(const String& value) function in class:WebCore::SVGNumberList

Completed in 250 milliseconds

1 2 3 4 5 6 7 8 91011>>