Home
last modified time | relevance | path

Searched refs:parse (Results 926 - 950 of 2030) sorted by relevance

1...<<31323334353637383940>>...82

/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/
H A DExpressionParser.y100 %parse-param {Context *context}
444 bool ExpressionParser::parse(Token *token,
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Ddecimfmt.h75 * numbers. It has a variety of features designed to make it possible to parse
126 * form->parse(form->format(myNumber,str), fmtable, success);
150 * format->parse(form->format(myNumber, str), fmtable, success);
297 * suffixes must be distinct for parse() to be able
380 * <p>For currency parsing, the formatter is able to parse every currency
383 * NumberFormat.getInstance(ULocale, NumberFormat.CURRENCYSTYLE) can parse
386 * <p>If parse(UnicodeString&,Formattable&,ParsePosition&)
387 * fails to parse a string, it leaves the parse position unchanged.
388 * The convenience method parse(UnicodeStrin
[all...]
H A Dnumfmt.h69 * NumberFormat helps you to format and parse numbers for any locale.
114 * You can use a \c NumberFormat to parse also.
118 * nf->parse(myString, result, success);
147 * You can also use forms of the parse and format methods with
150 * <li>(a) progressively parse through pieces of a string.
334 * parse), while trailing whitespace is left as is.
339 * @param result Formattable to be set to the parse result.
340 * If parse fails, return contents are undefined.
630 * @param result Formattable to be set to the parse result.
631 * If parse fail
[all...]
H A Dsmpdtfmt.h35 * \brief C++ API: Format and parse dates in a language-independent manner.
670 * UDate currentTime_2 = formatter->parse(dateString, pp );
694 * only in lenient parse mode, the default) "01/02/-3" is parsed as Jan 2, 4 BC.
706 * parse "1234". In other words, the leftmost field of the run is flexible,
707 * while the others keep a fixed width. If the parse fails anywhere in the run,
709 * parsed again. This is repeated until either the parse succeeds or the
710 * leftmost field is one character in length. If the parse still fails at that
711 * point, the parse of the run fails.
927 using DateFormat::parse;
930 * Parse a date/time string beginning at the given parse positio
[all...]
H A Dtzfmt.h29 * Constants for time zone display format style used by format/parse APIs
225 * Constants for parse option flags, used for specifying optional parse behavior.
428 * Returns the bitwise flags of UTimeZoneFormatParseOption representing the default parse
430 * @return the default parse options.
437 * Sets the default parse options.
439 * created by {@link #createInstance} has no parse options set (UTZFMT_PARSE_OPTION_NONE).
588 * the given parse position, the specified format style and parse options.
593 * @param parseOptions The parse option
[all...]
/third_party/pulseaudio/src/pulsecore/
H A Dconf-parser.c47 for (item = state->item_table; item->parse; item++) { in normal_assignment()
60 return item->parse(state); in normal_assignment()
74 pa_log("[%s:%u] Failed to parse a proplist entry: %s = %s", state->filename, state->lineno, state->lvalue, state->rvalue); in proplist_assignment()
162 /* Go through the file and parse each line */
306 pa_log("[%s:%u] Failed to parse numeric value: %s", state->filename, state->lineno, state->rvalue); in pa_config_parse_int()
323 pa_log("[%s:%u] Failed to parse numeric value: %s", state->filename, state->lineno, state->rvalue); in pa_config_parse_unsigned()
340 pa_log("[%s:%u] Failed to parse numeric value: %s", state->filename, state->lineno, state->rvalue); in pa_config_parse_size()
357 pa_log("[%s:%u] Failed to parse boolean value: %s", state->filename, state->lineno, state->rvalue); in pa_config_parse_bool()
375 pa_log("[%s:%u] Failed to parse boolean value: %s", state->filename, state->lineno, state->rvalue); in pa_config_parse_not_bool()
/third_party/python/Lib/
H A Dmimetypes.py13 knownfiles -- list of files to parse
21 init([files]) -- parse a list of files, default knownfiles (on Windows, the
23 read_mime_types(file) -- parse one file, return a dictionary or None
29 import urllib.parse namespace
123 scheme, url = urllib.parse._splittype(url)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugFrame.h72 Error parse(DWARFDataExtractor Data, uint64_t *Offset, uint64_t EndOffset);
291 void parse(DWARFDataExtractor Data);
H A DDWARFDebugLine.h140 Error parse(const DWARFDataExtractor &DebugLineData, uint64_t *OffsetPtr,
283 Error parse(DWARFDataExtractor &DebugLineData, uint64_t *OffsetPtr,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
H A DWindowsResource.h157 Error parse(WindowsResource *WR, std::vector<std::string> &Duplicates);
158 Error parse(ResourceSectionRef &RSR, StringRef Filename,
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
H A DTimestamps.java232 public static Timestamp parse(String value) throws ParseException { in parse() method in Timestamps
235 throw new ParseException("Failed to parse timestamp: invalid timestamp \"" + value + "\"", 0); in parse()
245 throw new ParseException("Failed to parse timestamp: missing valid timezone offset.", 0); in parse()
256 Date date = timestampFormat.get().parse(secondValue); in parse()
263 "Failed to parse timestamp: invalid trailing data \"" in parse()
280 throw new ParseException("Failed to parse timestamp: timestamp is out of range.", 0); in parse()
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-golang/parse-number-fxx-test-data/slowstrconv/
H A Dslowstrconv.go78 if !h.parse(s) {
169 func (h *highPrecisionDecimal) parse(s []byte) (ok bool) {
/third_party/rust/crates/nom/examples/
H A Ds_expression.rs44 /// For a list of numbers, we have `'(1 2 3)`, which we'll parse to:
106 /// The next easiest thing to parse are keywords.
124 digit_str.parse::<i32>().map(Atom::Num) in parse_num()
127 Atom::Num(-1 * digit_str.parse::<i32>().unwrap()) in parse_num()
133 /// We can now parse half of our language!
148 /// Before continuing, we need a helper function to parse lists.
170 /// that we need to parse an expression and then parse 0 or more expressions, all
184 /// defined `Expr::If` to have an `Option` for the else block), we parse both
224 // looking for an s-expression of 0 or more expressions, and then parse the in parse_quote()
[all...]
/third_party/rust/crates/regex/regex-syntax/src/hir/
H A Dprint.rs257 let hir = builder.build().parse(given).unwrap(); in roundtrip_with()
264 builder.build().parse(&dst).unwrap(); in roundtrip_with()
/third_party/rust/crates/syn/tests/
H A Dtest_lit.rs151 assert_eq!(lit.base10_digits().parse::<u64>().unwrap(), value); in ints()
191 assert_eq!(lit.base10_digits().parse::<f64>().unwrap(), value); in floats()
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi_insn.c3676 struct tgsi_parse_context parse; in pre_parse_tokens() local
3679 tgsi_parse_init( &parse, tokens ); in pre_parse_tokens()
3681 while (!tgsi_parse_end_of_tokens( &parse )) { in pre_parse_tokens()
3682 tgsi_parse_token( &parse ); in pre_parse_tokens()
3683 switch (parse.FullToken.Token.Type) { in pre_parse_tokens()
3688 if (parse.FullToken.FullInstruction.Instruction.Opcode == in pre_parse_tokens()
3692 if (!pre_parse_instruction( emit, &parse.FullToken.FullInstruction, in pre_parse_tokens()
3760 struct tgsi_parse_context parse; in svga_shader_emit_instructions() local
3786 tgsi_parse_init( &parse, tokens ); in svga_shader_emit_instructions()
3797 while (!tgsi_parse_end_of_tokens( &parse )) { in svga_shader_emit_instructions()
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath11k/
H A Dwmi.c154 ath11k_err(ab, "wmi tlv parse failure at byte %zd (%zu bytes left, %zu expected)\n", in ath11k_wmi_tlv_iter()
166 ath11k_err(ab, "wmi tlv parse failure of tag %hhu at byte %zd (%zu bytes left, %hhu expected)\n", in ath11k_wmi_tlv_iter()
174 ath11k_err(ab, "wmi tlv parse failure of tag %hhu at byte %zd (%hhu bytes is less than min length %zu)\n", in ath11k_wmi_tlv_iter()
541 ath11k_warn(ab, "failed to parse tlv %d\n", ret); in ath11k_service_ready_event()
3460 struct wmi_tlv_dma_buf_release_parse *parse = data; in ath11k_wmi_tlv_dma_buf_entry_parse() local
3465 if (parse->num_buf_entry >= parse->fixed.num_buf_release_entry) in ath11k_wmi_tlv_dma_buf_entry_parse()
3468 parse->num_buf_entry++; in ath11k_wmi_tlv_dma_buf_entry_parse()
3476 struct wmi_tlv_dma_buf_release_parse *parse = data; in ath11k_wmi_tlv_dma_buf_meta_parse() local
3481 if (parse in ath11k_wmi_tlv_dma_buf_meta_parse()
3492 struct wmi_tlv_dma_buf_release_parse *parse = data; ath11k_wmi_tlv_dma_buf_parse() local
3541 struct wmi_tlv_dma_buf_release_parse parse = { }; ath11k_wmi_pdev_dma_ring_buf_release_event() local
3769 struct wmi_tlv_dma_ring_caps_parse *parse = data; ath11k_wmi_tlv_dma_ring_caps_parse() local
3961 struct wmi_tlv_svc_rdy_ext2_parse *parse = data; ath11k_wmi_tlv_svc_rdy_ext2_parse() local
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dtzfmttst.cpp202 // Before parse, set unknown zone to SimpleDateFormat instance in TestTimeZoneRoundTrip()
211 errln("Failed to create an instance of calendar for receiving parse result."); in TestTimeZoneRoundTrip()
218 sdf->parse(tzstr, *outcal, pos); in TestTimeZoneRoundTrip()
680 UDate parsedDate = sdf->parse(text, status); in RunTimeRoundTripTests()
882 TimeZone* tz = tzfmt->parse(DATA[i].style, DATA[i].text, pos, DATA[i].parseOptions, &ttype); in TestParse()
1055 sdf->parse(UnicodeString(ISO_STR[i][j]), *(outcal.getAlias()), pos); in TestISOFormat()
1058 errln((UnicodeString)"FAIL: Failed to parse the entire input string: " + ISO_STR[i][j]); in TestISOFormat()
1359 // Test for checking parse results are same for a same input string
1398 UDate dUS = sdfUS.parse(testInputs[i], status); in TestCentralTime()
1399 UDate dBZ = sdfBZ.parse(testInput in TestCentralTime()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DTimeZoneFormatTest.java168 // Before parse, set unknown zone to SimpleDateFormat instance in TestTimeZoneRoundTrip()
179 sdf.parse(tzstr, outcal, pos); in TestTimeZoneRoundTrip()
475 Date parsedDate = sdf.parse(text); in TestTimeRoundTrip()
667 TimeZone tz = tzfmt.parse(style, text, pos, options, timeType); in TestParse()
690 // Coverage tests for other versions of the parse() method. All of them end up
691 // calling the full parse() method tested on the TestParse() test.
697 // Test parse(String) in TestParseCoverage()
699 TimeZone tz1 = fmt.parse("America/Los_Angeles"); in TestParseCoverage()
701 errln("Parse failure using parse(String) - expected: " + expectedTZ.getID()); in TestParseCoverage()
703 errln("Parsed TimeZone: '" + tz1.getID() + "' using parse(Strin in TestParseCoverage()
[all...]
/third_party/jinja2/
H A Dparser.py48 extensions and can be used to parse expressions or statements.
69 self.extensions[tag] = extension.parse
198 is reached. This is used to parse the body of statements as it also
481 tuples, this function can parse all allowed assignment targets. Per
707 parse = self.parse_primary
709 parse = self.parse_expression
712 def parse() -> nodes.Expr: function
723 args.append(parse())
1030 def parse(self) -> nodes.Template: member in Parser
/third_party/node/deps/v8/third_party/jinja2/
H A Dparser.py40 extensions and can be used to parse expressions or statements.
52 self.extensions[tag] = extension.parse
162 is reached. This is used to parse the body of statements as it also
413 tuples, this function can parse all allowed assignment targets. Per
629 parse = self.parse_primary
631 parse = self.parse_expression
634 def parse(): function
644 args.append(parse())
935 def parse(self): member in Parser
/third_party/node/tools/inspector_protocol/jinja2/
H A Dparser.py34 extensions and can be used to parse expressions or statements.
47 self.extensions[tag] = extension.parse
151 is reached. This is used to parse the body of statements as it also
399 tuples, this function can parse all allowed assignment targets. Per
608 parse = self.parse_primary
610 parse = self.parse_expression
612 parse = lambda: self.parse_expression(with_condexpr=False)
620 args.append(parse())
899 def parse(self): member in Parser
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp211 "failed to parse entry content descriptions" in parseV5EntryFormat()
238 "failed to parse directory entry because " in parseV5DirFileTables()
245 "failed to parse directory entry because " in parseV5DirFileTables()
265 "failed to parse file entry because " in parseV5DirFileTables()
287 "failed to parse file entry because the MD5 hash is invalid"); in parseV5DirFileTables()
300 Error DWARFDebugLine::Prologue::parse(const DWARFDataExtractor &DebugLineData, in parse() function in DWARFDebugLine::Prologue
502 LT->parse(DebugLineData, &Offset, Ctx, U, RecoverableErrorCallback)) in getOrParseLineTable()
509 Error DWARFDebugLine::LineTable::parse( in parse() function in DWARFDebugLine::LineTable
517 Error PrologueErr = Prologue.parse(DebugLineData, OffsetPtr, Ctx, U); in parse()
1146 if (Error Err = LT.parse(DebugLineDat in parseNext()
[all...]
/third_party/skia/third_party/externals/jinja2/
H A Dparser.py40 extensions and can be used to parse expressions or statements.
52 self.extensions[tag] = extension.parse
162 is reached. This is used to parse the body of statements as it also
413 tuples, this function can parse all allowed assignment targets. Per
629 parse = self.parse_primary
631 parse = self.parse_expression
634 def parse(): function
644 args.append(parse())
935 def parse(self): member in Parser
/third_party/protobuf/python/google/protobuf/internal/
H A Djson_format_test.py609 # Can't parse back if the Value message is not set.
813 'Failed to parse repeatedInt32Value field: '
819 'Failed to parse repeatedMessageValue field: null is not'
839 'Failed to parse repeatedFloatValue field: '
892 'Failed to parse enumValue field: Invalid enum value baz '
901 'Failed to parse optionalNestedEnum field: Invalid enum value 12345 '
949 'Failed to parse boolValue field: '
952 'Failed to parse boolValue field: '
961 'Failed to parse int32Value field: '
962 'Couldn\'t parse intege
[all...]

Completed in 34 milliseconds

1...<<31323334353637383940>>...82