HomeSort by relevance Sort by last modified time
    Searched refs:parsing (Results 1 - 25 of 37) sorted by null

1 2

  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/
DefaultPolicyScanner.java 103 * Performs the main parsing loop. Starts with creating and configuring a
123 //main parsing loop
124 parsing: while (true) {
127 break parsing; local
207 parsing: while (true) {
235 break parsing; local
239 break parsing; local
307 parsing: while (true) {
339 continue parsing; local
349 break parsing; local
    [all...]
  /system/bluetooth/data/
blacklist.conf 1 // Do NOT change this file format without updating the parsing logic in
auto_pairing.conf 1 // Do NOT change this file format without updating the parsing logic in
  /external/webkit/WebCore/html/
HTMLHtmlElement.cpp 67 if (!document()->parsing())
HTMLTokenizer.cpp 438 // Reset m_currentScriptTagStartLineNumber to indicate that we've finished parsing the current script element
676 return state; // Finished parsing comment
695 return state; // Finished parsing server include
719 return state; // Finished parsing comment!
    [all...]
  /dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
ParserAdapter.java 401 if (parsing) {
405 parsing = true;
409 parsing = false;
411 parsing = false;
794 * Throw an exception if we are parsing.
807 if (parsing) {
810 name + " while parsing");
825 private boolean parsing = false;
821 private boolean parsing = false; field in class:ParserAdapter
  /dalvik/libcore/luni/src/main/java/java/net/
SocketPermission.java 212 boolean parsing = true;
216 while (parsing) {
223 parsing = false;
  /external/expat/amiga/include/inline4/
expat.h 78 #define XML_SetParamEntityParsing(parser, parsing) IExpat->XML_SetParamEntityParsing(parser, parsing)
  /external/expat/amiga/include/libraries/
expat.h 451 enum XML_Parsing parsing; member in struct:__anon1872
471 enum XML_ParamEntityParsing parsing);
  /external/expat/amiga/
expat_vectors.c 81 extern int _Expat_XML_SetParamEntityParsing(struct ExpatIFace *, XML_Parser parser, enum XML_ParamEntityParsing parsing);
432 int _Expat_XML_SetParamEntityParsing(struct ExpatIFace * Self, XML_Parser parser, enum XML_ParamEntityParsing parsing)
434 return XML_SetParamEntityParsing(parser, parsing);
  /external/expat/lib/
expat.h 392 If parameter entity parsing is enabled, then in addition to the
403 The parser argument is the parser parsing the entity containing the
418 The context argument specifies the parsing context in the format
763 /* Stops parsing, causing XML_Parse() or XML_ParseBuffer() to return.
773 except when parsing an external parameter entity and resumable != 0.
778 - XML_ERROR_SUSPEND_PE: when suspending while parsing an external PE.
780 When resumable != 0 (true) then parsing is suspended, that is,
782 Otherwise, parsing is aborted, that is, XML_Parse() and XML_ParseBuffer()
787 there is a parent parser then it will continue parsing when the
790 parser (recursively), if one wants to stop parsing altogether
820 enum XML_Parsing parsing; member in struct:__anon1877
    [all...]
  /ndk/build/core/
build-all.mk 26 # Prepare the build for parsing Android.mk files
  /external/e2fsprogs/lib/blkid/
read.c 131 * Start parsing a new line from the cache.
133 * line starts with "<device" return 1 -> continue parsing line
194 printf("blkid: short line parsing dev: %s\n", *cp));
482 "Test parsing of the cache (filename)\n", argv[0]);
  /external/bison/doc/
refcard.tex 353 \key{Tell {\tt bison} where to start parsing.}
443 \key{Recognize an error \& continue parsing.}{error}
490 \key{Quit parsing immediately. Return 1.} {YYABORT}
491 \key{Quit parsing immediately. Return 0.} {YYACCEPT}
  /external/expat/amiga/include/interfaces/
expat.h 81 int APICALL (*XML_SetParamEntityParsing)(struct ExpatIFace *Self, XML_Parser parser, enum XML_ParamEntityParsing parsing);
  /external/webkit/WebCore/svg/
SVGStyledElement.cpp 176 // tell StyledElement about the change to avoid parsing the class list twice
228 if (document->parsing())
  /external/v8/test/mjsunit/
date-parse.js 40 // For local time we just test that parsing returns non-NaN positive
  /external/v8/tools/
logreader.js 40 * @param {Array.<Object>} dispatchTable A table used for parsing and processing
  /external/webkit/WebKitTools/Scripts/webkitpy/
BeautifulSoup.py 26 Beautiful Soup defines classes for two main parsing strategies:
28 * BeautifulStoneSoup, for parsing XML, SGML, or your domain-specific
31 * BeautifulSoup, for parsing run-of-the-mill HTML code, be it valid
663 # you modify an attribute value after parsing
    [all...]
  /external/webkit/WebCore/loader/
DocumentLoader.cpp 214 // still parsing. Failure to do so can cause a world leak.
217 if (loading || doc->parsing())
278 // Both unloading the old page and parsing the new page may execute JavaScript which destroys the datasource
loader.cpp 320 // For non-named hosts - everything but http(s) - we should only enforce the limit if the document isn't done parsing
322 bool shouldLimitRequests = !m_name.isNull() || docLoader->doc()->parsing() || !docLoader->doc()->haveStylesheetsLoaded();
FrameLoader.cpp 573 if (m_frame->document() && m_frame->document()->parsing()) {
    [all...]
  /external/v8/src/
date.js 418 // The Date cache is used to limit the cost of parsing the same Date
449 // given time, we re-use that instead of parsing the string again.
670 // Reused output buffer. Used when parsing date strings.
    [all...]
  /external/webkit/WebCore/page/
FrameView.cpp     [all...]
  /external/webkit/WebCore/dom/
Document.h 542 bool parsing() const { return m_bParsing; }
689 * when a meta tag is encountered during document parsing, and also when a script dynamically changes or adds a meta
    [all...]

Completed in 819 milliseconds

1 2