| /external/pdfium/core/fxcrt/ |
| fx_xml_parser.cpp | 660 CXML_Parser parser; local 661 if (!parser.Init(static_cast<const uint8_t*>(pBuffer), size)) 663 return parser.ParseElement(nullptr, false);
|
| /external/pdfium/third_party/freetype/src/cff/ |
| cffload.c | 1312 CFF_ParserRec parser; local [all...] |
| /external/pdfium/third_party/freetype/src/type1/ |
| t1load.c | 576 T1_ToTokenArray( &loader->parser, axis_tokens, 636 loader->parser.root.error = error; 647 T1_Parser parser = &loader->parser; local 654 T1_ToTokenArray( parser, design_tokens, 671 FT_Byte* old_cursor = parser->root.cursor; 672 FT_Byte* old_limit = parser->root.limit; 688 parser->root.cursor = token->start; 689 parser->root.limit = token->limit; 690 T1_ToTokenArray( parser, axis_tokens, T1_MAX_MM_AXIS, &n_axis ) 744 T1_Parser parser = &loader->parser; local 843 T1_Parser parser = &loader->parser; local 1117 T1_Parser parser = &loader->parser; local 1173 T1_Parser parser = &loader->parser; local 1399 T1_Parser parser = &loader->parser; local 1535 T1_Parser parser = &loader->parser; local 1892 T1_Parser parser = &loader->parser; local 2107 T1_Parser parser = &loader->parser; local 2126 T1_Parser parser; local [all...] |
| /external/selinux/python/sepolgen/src/sepolgen/ |
| refparser.py | 23 # This is a parser for the refpolicy policy "language" - i.e., the 25 # constructs on top of that base language. This parser is primarily 29 # Both the lexer and parser are included in this file. The are implemented 282 # Parser 978 # Interface to the parser 982 global error, parse_file, success, parser 994 parser = None variable 997 global parser, lexer, m, spt 999 if not parser: 1001 parser = yacc.yacc(method="LALR", debug=debug, write_tables=0 [all...] |
| /external/snakeyaml/src/test/java/org/pyyaml/ |
| PyStructureTest.java | 39 import org.yaml.snakeyaml.parser.ParserImpl; 202 CanonicalParser parser = new CanonicalParser(buffer.toString()); local 203 Composer composer = new Composer(parser, new Resolver()); 224 CanonicalParser parser = new CanonicalParser(buffer.toString()); local 225 Composer composer = new Composer(parser, resolver);
|
| /frameworks/base/core/java/com/android/server/ |
| SystemConfig.java | 301 XmlPullParser parser = Xml.newPullParser(); local 302 parser.setInput(permReader); 305 while ((type=parser.next()) != parser.START_TAG 306 && type != parser.END_DOCUMENT) { 310 if (type != parser.START_TAG) { 314 if (!parser.getName().equals("permissions") && !parser.getName().equals("config")) { 316 + ": found " + parser.getName() + ", expected 'permissions' or 'config'"); 326 XmlUtils.nextElement(parser); [all...] |
| /frameworks/base/packages/SettingsLib/src/com/android/settingslib/ |
| SuggestionParser.java | 388 XmlPullParser parser = mContext.getResources().getXml(resource); local 389 final AttributeSet attrs = Xml.asAttributeSet(parser); 394 type = parser.next(); 398 throw new InflateException(parser.getPositionDescription() 403 Object xmlRoot = onCreateItem(parser.getName(), attrs); 406 rParse(parser, xmlRoot, attrs); 409 Log.w(TAG, "Problem parser resource " + resource, e); 418 private void rParse(XmlPullParser parser, Object parent, final AttributeSet attrs) 420 final int depth = parser.getDepth(); 423 while (((type = parser.next()) != XmlPullParser.END_TAG | [all...] |
| /frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/ |
| ProxyServer.java | 340 ProxyConnection parser = new ProxyConnection(socket); local 342 threadExecutor.execute(parser);
|
| /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
| GraphReader.java | 475 SAXParser parser = mParserFactory.newSAXParser(); local 476 XMLReader reader = parser.getXMLReader();
|
| /frameworks/base/tools/layoutlib/bridge/src/android/content/res/ |
| Resources_Delegate.java | 432 XmlPullParser parser = null; local 435 // check if the current parser can provide us with a custom parser. 437 parser = resources.mLayoutlibCallback.getParser(value); 441 if (parser == null) { 444 // we need to create a pull parser around the layout XML file, and then 446 parser = ParserFactory.create(xml, true); 450 if (parser != null) { 451 return new BridgeXmlBlockParser(parser, resources.mContext, 456 "Failed to configure parser for " + value.getValue(), e, null /*data*/) 477 XmlPullParser parser; local 868 XmlPullParser parser = ParserFactory.create(f); local 908 XmlPullParser parser = ParserFactory.create(f); local [all...] |
| /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/ |
| RenderTestBase.java | 513 // Create the layout pull parser. 514 LayoutPullParser parser = createLayoutPullParser(layoutFileName); local 521 return getSessionParams(parser, deviceConfig, layoutLibCallback, "AppTheme", true,
|
| /frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/ |
| BindingExpressionBaseListener.java | 2 package android.databinding.parser;
|
| BindingExpressionListener.java | 2 package android.databinding.parser;
|
| /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/ |
| XmlEditor.java | 19 import android.databinding.parser.BindingExpressionBaseVisitor; 20 import android.databinding.parser.BindingExpressionLexer; 21 import android.databinding.parser.BindingExpressionParser; 22 import android.databinding.parser.XMLLexer; 23 import android.databinding.parser.XMLParser; 24 import android.databinding.parser.XMLParser.AttributeContext; 25 import android.databinding.parser.XMLParser.ElementContext; 58 XMLParser parser = new XMLParser(tokenStream); local 59 XMLParser.DocumentContext expr = parser.document(); 346 BindingExpressionParser parser = new BindingExpressionParser(tokenStream) local [all...] |
| /frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/ |
| XMLParser.java | 2 package android.databinding.parser; 13 public class XMLParser extends Parser {
|
| /frameworks/support/graphics/drawable/animated/tests/src/android/support/graphics/drawable/tests/ |
| AnimatedVectorDrawableTest.java | 125 XmlPullParser parser = mResources.getXml(DRAWABLE_RES_ID); local 126 AttributeSet attrs = Xml.asAttributeSet(parser); 129 while ((type = parser.next()) != XmlPullParser.START_TAG && 138 mAnimatedVectorDrawable.inflate(mResources, parser, attrs);
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/ |
| DocumentBuilderFactoryTest.java | 322 // Expected, since Android doesn't have a validating parser. 377 DocumentBuilder parser = null; local 380 parser = dbf.newDocumentBuilder(); 382 parser.setErrorHandler(errorHandler); 384 Document document = parser.parse(getClass().getResourceAsStream( 395 parser.setErrorHandler(null); 408 parser = dbf.newDocumentBuilder(); 410 parser.setErrorHandler(errorHandler); 412 Document document = parser.parse(getClass().getResourceAsStream( 425 parser.setErrorHandler(null) 440 DocumentBuilder parser = null; local 543 DocumentBuilder parser = dbf.newDocumentBuilder(); local 566 DocumentBuilder parser = dbf.newDocumentBuilder(); local 592 DocumentBuilder parser = dbf.newDocumentBuilder(); local 611 DocumentBuilder parser = dbf.newDocumentBuilder(); local 635 DocumentBuilder parser = dbf.newDocumentBuilder(); local 654 DocumentBuilder parser = dbf.newDocumentBuilder(); local [all...] |
| /libcore/ojluni/src/main/java/javax/crypto/ |
| Cipher.java | 356 StringTokenizer parser = new StringTokenizer(transformation, "/"); local 358 while (parser.hasMoreTokens() && count < 3) { 359 parts[count++] = parser.nextToken().trim(); 361 if (count == 0 || count == 2 || parser.hasMoreTokens()) { [all...] |
| /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/ |
| HtmlParser.java | 16 package com.google.android.mail.common.html.parser; 37 * HtmlParser is a simple but efficient html parser. 39 * parser. It assumes that the entire html text is available. 135 * the parser is configured to use. By default, the parser uses the standard 149 * processing an element or attribute. By default, the parser only uses 200 // At any one time, the parser is in one of these states: 866 // parser but trick a browser into executing a script. 930 // parser but trick a browser into executing a script. [all...] |
| /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/ |
| AddressListParserTokenManager.java | 17 package org.apache.james.mime4j.field.address.parser;
|
| /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/ |
| ContentTypeParserTokenManager.java | 17 package org.apache.james.mime4j.field.contenttype.parser;
|
| /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/ |
| DateTimeParserTokenManager.java | 17 package org.apache.james.mime4j.field.datetime.parser;
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
| argp.h | 129 actual option parser), but rather an arbitrary piece of documentation that 175 The third case is where every parser returned ARGP_KEY_UNKNOWN for an 181 function returned an error value), then the parser is called with 185 parser receiving this key returns success, the fact is recorded, and the 187 argument, a parser function decrements the NEXT field of the state it's 192 /* There are remaining arguments not parsed by any parser, which may be found 195 otherwise, the parser should adjust STATE->next to reflect any arguments 237 argp_parser_t parser; 293 /* The child parser. */ 346 the number of children for the current parser. * 235 argp_parser_t parser; member in struct:argp [all...] |
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
| argp.h | 129 actual option parser), but rather an arbitrary piece of documentation that 175 The third case is where every parser returned ARGP_KEY_UNKNOWN for an 181 function returned an error value), then the parser is called with 185 parser receiving this key returns success, the fact is recorded, and the 187 argument, a parser function decrements the NEXT field of the state it's 192 /* There are remaining arguments not parsed by any parser, which may be found 195 otherwise, the parser should adjust STATE->next to reflect any arguments 237 argp_parser_t parser; 293 /* The child parser. */ 346 the number of children for the current parser. * 235 argp_parser_t parser; member in struct:argp [all...] |
| /prebuilts/go/darwin-x86/src/go/parser/ |
| parser.go | 5 // Package parser implements a parser for Go source files. Input may be 8 // parser is invoked through one of the Parse* functions. 10 // The parser accepts a larger language than is syntactically permitted by 17 package parser package 29 // The parser structure holds the parser's internal state. 30 type parser struct { type 53 // loops across multiple parser functions during error recovery) 57 // Non-syntactic parser contro [all...] |