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

  /external/v8/tools/ninja/
ninja_output.py 20 name_value = flag.split('=', 1)
21 if len(name_value) == 2 and name_value[0] == 'output_dir':
22 output_dir = name_value[1]
  /external/libbrillo/brillo/
osrelease_reader_unittest.cc 57 string name_value; local
58 ASSERT_TRUE(store_.GetString("NAME", &name_value));
71 ASSERT_EQ(bob, name_value);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
urlparse.py 380 for name_value in pairs:
381 if not name_value and not strict_parsing:
383 nv = name_value.split('=', 1)
386 raise ValueError, "bad query field: %r" % (name_value,)
  /external/autotest/client/site_tests/platform_MemoryPressure/
platform_MemoryPressure.py 22 return float(next((name_value for name_value in f.read().split('\n')
23 if 'pgmajfault ' in name_value)).split()[1])
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
urlparse.py 411 for name_value in pairs:
412 if not name_value and not strict_parsing:
414 nv = name_value.split('=', 1)
417 raise ValueError, "bad query field: %r" % (name_value,)
  /external/python/cpython2/Lib/
urlparse.py 411 for name_value in pairs:
412 if not name_value and not strict_parsing:
414 nv = name_value.split('=', 1)
417 raise ValueError, "bad query field: %r" % (name_value,)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mac.cc 557 // If |name_value| is NULL, the variable is deleted from the environment,
559 // |name_value|.
560 void LeakyResetEnv(const char *name, const char *name_value) {
569 if (name_value) {
571 *env = const_cast<char*>(name_value);

Completed in 398 milliseconds