Home
last modified time | relevance | path

Searched refs:parseOne (Results 1 – 8 of 8) sorted by relevance

/aosp12/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardParser_V30.java91 public void parseOne(InputStream is) throws IOException, VCardException { in parseOne() method in VCardParser_V30
92 mVCardParserImpl.parseOne(is); in parseOne()
H A DVCardParser_V40.java79 public void parseOne(InputStream is) throws IOException, VCardException { in parseOne() method in VCardParser_V40
80 mVCardParserImpl.parseOne(is); in parseOne()
H A DVCardParser_V21.java112 public void parseOne(InputStream is) throws IOException, VCardException { in parseOne() method in VCardParser_V21
113 mVCardParserImpl.parseOne(is); in parseOne()
H A DVCardParser.java74 public abstract void parseOne(InputStream is) throws IOException, VCardException; in parseOne() method in VCardParser
H A DVCardParserImpl_V21.java1032 public void parseOne(InputStream is) throws IOException, VCardException {
/aosp12/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardParserTests.java235 parser.parseOne(inputStream); in testParseOne()
/aosp12/build/blueprint/
H A Dcontext_test.go157 _, _, errs := ctx.parseOne(".", "Blueprint", r, parser.NewScope(nil), nil)
H A Dcontext.go1065 file, subBlueprints, errs = c.parseOne(rootDir, filename, f, scope, parent)
1090 func (c *Context) parseOne(rootDir, filename string, reader io.Reader, func