HomeSort by relevance Sort by last modified time
    Searched refs:parse (Results 1626 - 1650 of 4368) sorted by null

<<61626364656667686970>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ast.py 12 a flag to the `compile()` builtin function or by using the `parse()`
32 def parse(source, filename='<unknown>', mode='exec'): function
34 Parse the source into an AST node.
49 node_or_string = parse(node_or_string, mode='eval')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
xmlbuilder.py 185 return self.parse(input)
187 def parse(self, input): member in class:DOMBuilder
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ast.py 12 a flag to the `compile()` builtin function or by using the `parse()`
32 def parse(source, filename='<unknown>', mode='exec'): function
34 Parse the source into an AST node.
49 node_or_string = parse(node_or_string, mode='eval')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
xmlbuilder.py 185 return self.parse(input)
187 def parse(self, input): member in class:DOMBuilder
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-module-fml/1.0/
doxia-module-fml-1.0.jar 
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mt/
msys.s 31 ; Check to make sure that the parse routines that allow predifined
  /cts/libs/testserver/src/android/webkit/cts/
CtsTestServer.java 444 return Uri.parse(getBaseUri())
594 List <NameValuePair> args = URLEncodedUtils.parse(uri, "UTF-8");
659 String location = Uri.parse(uriString).getQueryParameter("dest");
692 Uri parsedUri = Uri.parse(uriString);
700 String src = Uri.parse(uriString).getQueryParameter("url");
712 response = createTestDownloadResponse(Uri.parse(uriString));
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
wizard.rb 186 def self.parse( pattern, token_scheme, adaptor ) singleton method in class:ANTLR3.AST.Wizard.PatternParser
283 def self.parse( pattern_str, scheme ) singleton method in class:ANTLR3.AST.Wizard.Pattern
284 PatternParser.parse(
338 PatternParser.parse( pattern, @token_scheme, @adaptor )
404 pattern = Pattern.parse( pattern, @token_scheme )
417 pattern = Pattern.parse( pattern, @token_scheme )
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/
protorpc.js 183 * Try to parse RpcStatus from message.
187 var rpcStatus = goog.json.parse(content);
201 this.response_ = goog.json.parse(content);
  /external/deqp/framework/common/
tcuCommandLine.cpp 638 * \note CommandLine is not fully initialized until parse() has been called.
649 * Calls parse() with given arguments
657 if (!parse(argc, argv))
658 throw Exception("Failed to parse command line");
664 * Calls parse() with given argument.
671 if (!parse(cmdLine))
672 throw Exception("Failed to parse command line");
700 * \brief Parse command line from standard argc, argv pair.
701 * \note parse() must be called exactly once.
705 bool CommandLine::parse (int argc, const char* const* argv function in class:tcu::CommandLine
784 bool CommandLine::parse (const std::string& cmdLine) function in class:tcu::CommandLine
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DateFormat.java 43 * DateFormat helps you to format and parse dates for any locale. Your code can be completely independent of the locale
81 * You can use a DateFormat to parse also.
84 * myDate = df.parse(myString);
123 * You can also use forms of the parse and format methods with ParsePosition and FieldPosition to allow you to
125 * <li>progressively parse through pieces of a string.
617 * possible. Assuming no parse errors were encountered, this function
620 * parse() that takes a ParsePosition.
624 * the parse succeeds. Clients may insist on strict adherence to the
634 * recommended that clients parse using the parse method that takes a Calenda
646 public Date parse(String text) throws ParseException method in class:DateFormat
696 public abstract void parse(String text, Calendar cal, ParsePosition pos); method in class:DateFormat
729 public Date parse(String text, ParsePosition pos) { method in class:DateFormat
734 parse(text, calendar, pos); method
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
TimeZoneFormatTest.java 160 // Before parse, set unknown zone to SimpleDateFormat instance
165 // Parse
171 sdf.parse(tzstr, outcal, pos);
461 Date parsedDate = sdf.parse(text);
    [all...]
  /external/icu/icu4c/source/extra/uconv/
uconv.cpp 652 UParseError parse; local
657 parse.line = -1;
660 t = Transliterator::createFromRules(UNICODE_STRING_SIMPLE("Uconv"), str, UTRANS_FORWARD, parse, err);
669 if (parse.line >= 0) {
671 uprv_itou(linebuf, 20, parse.line, 10, 0);
672 uprv_itou(offsetbuf, 20, parse.offset, 10, 0);
    [all...]
  /external/icu/icu4c/source/i18n/
nfsubs.cpp 648 * performed on the result of the parse and the value passed in
649 * and returned as the result. The parse position is updated to
651 * @param text The string to parse
655 * @param baseValue A partial parse result that should be
656 * combined with the result of this parse
664 * formatter isn't in lenient-parse mode, but is also false
666 * lenient-parse mode.)
692 // use our rule set to parse the text. If that fails and
695 // be false even when the formatter's lenient-parse mode is
699 ruleSet->parse(text, parsePosition, upperBound, result)
    [all...]
  /external/icu/icu4c/source/test/intltest/
dcfmapts.cpp 202 // ======= Test parse()
204 logln((UnicodeString)"Testing parse()");
215 pat.parse(text, result1, pos);
217 errln((UnicodeString)"ERROR: Roundtrip failed (via parse()) for " + text);
222 pat.parse(text, result2, status);
224 errln((UnicodeString)"ERROR: parse() failed");
227 errln((UnicodeString)"ERROR: Roundtrip failed (via parse()) for " + text);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateFormat.java 42 * DateFormat helps you to format and parse dates for any locale. Your code can be completely independent of the locale
80 * You can use a DateFormat to parse also.
83 * myDate = df.parse(myString);
122 * You can also use forms of the parse and format methods with ParsePosition and FieldPosition to allow you to
124 * <li>progressively parse through pieces of a string.
665 * possible. Assuming no parse errors were encountered, this function
668 * parse() that takes a ParsePosition.
672 * the parse succeeds. Clients may insist on strict adherence to the
682 * recommended that clients parse using the parse method that takes a Calenda
695 public Date parse(String text) throws ParseException method in class:DateFormat
746 public abstract void parse(String text, Calendar cal, ParsePosition pos); method in class:DateFormat
780 public Date parse(String text, ParsePosition pos) { method in class:DateFormat
785 parse(text, calendar, pos); method
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
TimeZoneFormatTest.java 156 // Before parse, set unknown zone to SimpleDateFormat instance
161 // Parse
167 sdf.parse(tzstr, outcal, pos);
457 Date parsedDate = sdf.parse(text);
    [all...]
  /external/jsoncpp/src/lib_json/
json_reader.cpp 90 Reader::parse(const std::string& document, Value& root, bool collectComments) { function in class:Json::Reader
94 return parse(begin, end, root, collectComments);
97 bool Reader::parse(std::istream& sin, Value& root, bool collectComments) { function in class:Json::Reader
100 // Those would allow streamed input from a file, if parse() were a
107 return parse(doc, root, collectComments);
110 bool Reader::parse(const char* beginDoc, function in class:Json::Reader
516 // Attempts to parse the number as an integer. If the number is
574 return addError("Unable to parse token length", token);
676 "additional six characters expected to parse unicode surrogate pair.",
876 bool ok = reader.parse(sin, root, true)
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
jFormatString.jar 
  /libcore/ojluni/src/main/java/sun/security/x509/
X509CRLImpl.java 146 parse(new DerValue(crlData)); method
161 parse(val);
177 parse(new DerValue(inStrm)); method
1004 private void parse(DerValue val) throws CRLException, IOException { method in class:X509CRLImpl
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapAppParams.java 213 * Parse an application parameter OBEX header stored in a byte array.
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ImportVCardActivity.java 325 mVCardParser.parse(is);
344 mVCardParser.parse(is);
452 destUri = Uri.parse(context.getFileStreamPath(filename).toURI().toString());
530 return Uri.parse(getFileStreamPath(fileName).toURI().toString());
568 sourceUri = Uri.parse(getFileStreamPath(localTmpFileName).toURI().toString());
623 final Uri localUri = Uri.parse(
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jFormatString/2.0.1/
jFormatString-2.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jFormatString/3.0.0/
jFormatString-3.0.0.jar 
  /prebuilts/tools/common/m2/repository/joda-time/joda-time/2.9.1/
joda-time-2.9.1.jar 

Completed in 456 milliseconds

<<61626364656667686970>>