HomeSort by relevance Sort by last modified time
    Searched refs:input_line (Results 1 - 9 of 9) sorted by null

  /external/llvm/utils/
update_llc_test_checks.py 123 def should_add_line_to_output(input_line, prefix_set):
125 if input_line.strip() == ';':
128 #if input_line.strip() == '':
131 m = CHECK_RE.match(input_line)
208 for input_line in input_lines:
210 if input_line == '':
212 if input_line.lstrip().startswith(';'):
213 m = CHECK_RE.match(input_line)
215 output_lines.append(input_line)
223 if should_add_line_to_output(input_line, prefix_set) == True
    [all...]
update_test_checks.py 255 def should_add_line_to_output(input_line, prefix_set):
257 if input_line.strip() == ';':
260 #if input_line.strip() == '':
263 m = CHECK_RE.match(input_line)
346 for input_line in input_lines:
348 if input_line == '':
350 if input_line.lstrip().startswith(';'):
351 m = CHECK_RE.match(input_line)
353 output_lines.append(input_line)
361 if should_add_line_to_output(input_line, prefix_set) == True
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
input.h 59 #define input_line LOCATION_LINE (input_location) macro
  /system/update_engine/
hardware_chromeos.cc 169 string input_line; local
173 bool success = Subprocess::SynchronousExec(cmd, &exit_code, &input_line);
179 return utils::ParseECVersion(input_line);
  /toolchain/binutils/binutils-2.25/gas/config/
tc-xgate.c 476 md_assemble (char *input_line)
482 char *saved_input_line = input_line;
491 input_line = extract_word (input_line, op_name, sizeof(op_name));
506 operandCount = xgate_get_operands (input_line, new_operands);
537 input_line = skip_whitespace (input_line);
538 char *macro_inline = input_line;
545 input_line = macro_inline; /* Rewind. */
557 operandCount = xgate_get_operands(input_line, new_operands)
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
mclex.c 44 static int input_line = 1; variable
81 fprintf (stderr, "In %s at line %d: %s: ", input_filename, input_line, kind);
364 input_line += 1;
  /device/google/dragon/audio/hal/
iniparser.c 548 @param input_line Input line, may be concatenated multi-line input
556 const char * input_line,
565 strcpy(line, strstrip(input_line));
  /system/update_engine/common/
utils.cc 170 string ParseECVersion(string input_line) {
171 base::TrimWhitespaceASCII(input_line, base::TRIM_ALL, &input_line);
176 if (base::SplitStringIntoKeyValuePairs(input_line, '=', ' ', &kv_pairs)) {
    [all...]
utils.h 61 std::string ParseECVersion(std::string input_line);

Completed in 3597 milliseconds