HomeSort by: relevance | last modified time | path
    Searched refs:parsed (Results 1 - 25 of 131) sorted by relevancy

1 2 3 4 5 6

  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/tools/
compare.py 260 parsed = self.parser.parse_args(
262 self.assertFalse(parsed.display_aggregates_only)
263 self.assertTrue(parsed.utest)
264 self.assertEqual(parsed.mode, 'benchmarks')
265 self.assertEqual(parsed.test_baseline[0].name, self.testInput0)
266 self.assertEqual(parsed.test_contender[0].name, self.testInput1)
267 self.assertFalse(parsed.benchmark_options)
270 parsed = self.parser.parse_args(
272 self.assertFalse(parsed.display_aggregates_only)
273 self.assertFalse(parsed.utest
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/tools/
compare.py 229 parsed = self.parser.parse_args(
231 self.assertEqual(parsed.mode, 'benchmarks')
232 self.assertEqual(parsed.test_baseline[0].name, self.testInput0)
233 self.assertEqual(parsed.test_contender[0].name, self.testInput1)
234 self.assertFalse(parsed.benchmark_options)
237 parsed = self.parser.parse_args(
239 self.assertEqual(parsed.mode, 'benchmarks')
240 self.assertEqual(parsed.test_baseline[0].name, self.testInput0)
241 self.assertEqual(parsed.test_contender[0].name, self.testInput1)
242 self.assertEqual(parsed.benchmark_options, ['d']
    [all...]
  /src/external/gpl2/groff/dist/src/utils/xtotroff/
xtotroff.c 64 XFontName parsed; local
66 if (!XParseFontName(font_name, &parsed, &attributes)) {
74 XFormatFontName(&parsed, attributes, canon_font_name);
110 XFontName parsed; local
118 if (!XParseFontName(font_name, &parsed, &attributes)) {
127 parsed.ResolutionX = resolution;
128 parsed.ResolutionY = resolution;
129 parsed.PointSize = point_size * 10;
130 XFormatFontName(&parsed, attributes, name_string);
141 XParseFontName(names[0], &parsed, &attributes)
    [all...]
  /src/etc/
MAKEDEV.awk 125 parsed = substr(md_deventry, 1, RSTART - 1) dev
128 md_deventry = parsed md_deventry
302 parsed = ""
322 parsed = parsed substr(line, 1, RSTART - 1) id
325 $0 = parsed line
341 parsed = ""
358 parsed = parsed substr(deventry, 1, RSTART - 1) dev
362 print parsed deventr
    [all...]
  /src/external/lgpl3/gmp/dist/demos/expr/
exprfa.c 91 goto parsed;
97 goto parsed;
106 goto parsed;
110 goto parsed;
117 goto parsed;
123 goto parsed;
129 parsed:
130 TRACE (printf (" parsed i=%u \"%.*s\"\n", i, (int) i, e));
  /src/usr.bin/make/unit-tests/
cond-func.exp 5 make: cond-func.mk:107: A plain function name is parsed as defined(...).
6 make: cond-func.mk:115: A plain function name is parsed as defined(...).
varname-dot-parsedir.mk 4 # of the file that is currently parsed.
40 # being parsed. Technically, it's possible though, but only if the file
41 # being parsed is a relative pathname. See PrintLocation for details.
varname-dot-parsefile.mk 4 # of the file that is currently parsed.
35 # being parsed. Technically, it's possible though, but only if the file
36 # being parsed is a relative pathname. See PrintLocation for details.
varmod-ifelse.mk 36 # ' == ""' though, which cannot be parsed because the left-hand side looks
53 # When the :? is parsed, it is greedy. The else branch spans all the
190 # Since the condition of the '?:' modifier is expanded before being parsed and
204 # 1. The whole expression is only parsed.
205 # 2. The expression is parsed and the 'then' branch is evaluated.
206 # 3. The expression is parsed and the 'else' branch is evaluated.
208 # In all of these cases, the expression must be parsed in the same way,
212 # parsed differently, depending on whether the branch was taken or not. When
219 # that in both cases the expression is parsed in the same way, taking the
234 # everywhere else the modifier parts have their subexpressions parsed in th
    [all...]
dep-colon-bug-cross-file.mk 12 # After the file has been parsed completely, it is parsed again in pass 2.
recursive.mk 9 # parsed with VARE_PARSE for that purpose.
32 # When the variable is only parsed but not evaluated, bugs in nested
cond-func.mk 88 # default function that is called when a bare word is parsed. For the plain
106 # expect+1: A plain function name is parsed as defined(...).
107 . info A plain function name is parsed as defined(...).
114 # expect+1: A plain function name is parsed as defined(...).
115 . info A plain function name is parsed as defined(...).
parse-var.mk 90 # depended on whether the expression was actually evaluated or merely parsed.
92 # If it was evaluated, nested expressions were parsed correctly, parsing each
95 # If the expression was merely parsed but not evaluated (for example, because
99 # expression was not parsed correctly. Instead, make only counted the opening
116 # is parsed correctly.
varmod-match-escape.mk 31 # comparison is parsed differently though. First, the expression
32 # is parsed, resulting in ':' and needSubst=true. After that, the escaped
56 # parsed as an escaped '$'. Instead, ParseModifier_Match first scans for
varmod-sysv.mk 45 # When the modifier ':from=to' is parsed, it lasts until the closing brace
109 # Before 2020-07-20, when a SysV modifier was parsed, a single dollar
110 # before the '=' was parsed (but not interpreted) as an anchor.
116 # Before 2020-07-20, the modifier ':e$=x' was parsed as having a left-hand
117 # side 'e' and a right-hand side 'x'. The dollar was parsed (but not
223 # parts of the modifier are parsed using ParseModifierPart, which scans
cmdline-undefined.mk 6 # When the command line is parsed, variable assignments using the
  /src/external/gpl3/gdb.old/dist/gdbserver/
gdbreplay.cc 145 parsed_connection_spec parsed = parse_connection_spec (name, &hint); local
147 if (parsed.port_str.empty ())
160 int r = getaddrinfo (parsed.host_str.c_str (), parsed.port_str.c_str (),
166 parsed.host_str.c_str (), parsed.port_str.c_str (),
  /src/external/gpl3/gdb/dist/gdbserver/
gdbreplay.cc 145 parsed_connection_spec parsed = parse_connection_spec (name, &hint); local
147 if (parsed.port_str.empty ())
160 int r = getaddrinfo (parsed.host_str.c_str (), parsed.port_str.c_str (),
166 parsed.host_str.c_str (), parsed.port_str.c_str (),
  /src/external/gpl3/gdb.old/dist/gdb/
ser-tcp.c 294 parsed_connection_spec parsed = parse_connection_spec (name, &hint); local
296 if (parsed.port_str.empty ())
299 int r = getaddrinfo (parsed.host_str.c_str (),
300 parsed.port_str.c_str (),
  /src/external/gpl3/gdb/dist/gdb/
ser-tcp.c 294 parsed_connection_spec parsed = parse_connection_spec (name, &hint); local
296 if (parsed.port_str.empty ())
299 int r = getaddrinfo (parsed.host_str.c_str (),
300 parsed.port_str.c_str (),
  /src/external/mit/isl/dist/
isl_arg.c 1118 int first, parsed; local
1126 parsed = parse_option(decl->u.child.child->args, arg, prefixes, child);
1129 return parsed;
1138 int parsed = 0; local
1141 parsed = parse_choice_option(&decl[i], arg,
1145 parsed = parse_flags_option(&decl[i], arg,
1149 parsed = parse_int_option(&decl[i], arg, prefixes, opt);
1152 parsed = parse_long_option(&decl[i], arg,
1156 parsed = parse_ulong_option(&decl[i], arg,
1160 parsed = parse_bool_option(&decl[i], arg
1274 int parsed; local
    [all...]
  /src/external/bsd/ntp/dist/ntpd/
refclock_ripencc.c 3219 /* keep track of whether the message has been successfully parsed */
3221 parsed; variable
3276 parsed = BADLEN_PARSE;
3327 parsed = BADLEN_PARSE;
3359 parsed = BADLEN_PARSE;
3379 parsed = BADLEN_PARSE;
3400 parsed = BADLEN_PARSE;
3427 parsed = BADLEN_PARSE;
3467 parsed = BADLEN_PARSE;
3499 parsed = BADLEN_PARSE
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/scripts/
make_graph.py 96 parsed = self.__parse_result_sets(f_name, cntnr_list)
97 x_label = parsed[0]
98 y_label = parsed[1]
99 cntnr_descs = parsed[2]
100 res_sets = parsed[3]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/scripts/
make_graph.py 96 parsed = self.__parse_result_sets(f_name, cntnr_list)
97 x_label = parsed[0]
98 y_label = parsed[1]
99 cntnr_descs = parsed[2]
100 res_sets = parsed[3]
  /src/external/bsd/zstd/dist/contrib/freestanding_lib/
freestanding.py 682 parsed = define.split('=')
683 if len(parsed) == 1:
684 output.append((parsed[0], None))
685 elif len(parsed) == 2:
686 output.append((parsed[0], parsed[1]))
695 parsed = rewritten_include.split('=')
696 if len(parsed) == 2:
697 output.append((parsed[0], parsed[1])
    [all...]

Completed in 49 milliseconds

1 2 3 4 5 6