/third_party/astc-encoder/Test/ |
H A D | astc_dump_binary.py | 118 print(" %s" % ex.stderr.strip())
|
/third_party/libunwind/libunwind/tests/ |
H A D | run-coredump-unwind | 31 strip "$binary" ## throw away the symbol table
|
/third_party/mesa3d/.gitlab-ci/container/ |
H A D | build-skqp.sh | 87 ${STRIP_CMD:-strip} "${SKQP_OUT_DIR}/${BINARY}"
|
/third_party/mesa3d/src/egl/ |
H A D | egl-entrypoint-check.py | 71 line = line.strip()
|
/third_party/node/deps/v8/tools/release/ |
H A D | auto_push.py | 54 self["candidate"] = self.Git("show-ref -s refs/heads/lkgr").strip()
|
/third_party/node/deps/v8/tools/testrunner/outproc/ |
H A D | test262.py | 40 return match.group(1).strip()
|
/third_party/node/deps/v8/tools/ |
H A D | objdump-v8 | 53 stripped = line.strip()
|
/third_party/node/tools/ |
H A D | utils.py | 41 line = line.strip()
|
/third_party/icu/icu4c/source/samples/udata/ |
H A D | Makefile | 21 ifeq ($(strip $(ICU_PATH)),)
|
/third_party/mesa3d/src/vulkan/util/ |
H A D | vk_icd_gen.py | 39 return name.tail.strip()
|
/third_party/python/Tools/peg_generator/scripts/ |
H A D | joinstats.py | 46 line = line.strip()
|
/third_party/python/Tools/scripts/ |
H A D | nm2def.py | 47 lines = [s.strip() for s in lines]
|
/third_party/skia/third_party/externals/icu/source/samples/udata/ |
H A D | Makefile | 21 ifeq ($(strip $(ICU_PATH)),)
|
/third_party/python/Lib/ |
H A D | _aix_support.py | 41 out = out.strip().split(":") # type: ignore
|
/third_party/skia/tools/ |
H A D | build_workaround_header.py | 26 workarounds.update([workaround.strip() for workaround in f])
|
/third_party/skia/third_party/externals/freetype/builds/unix/ |
H A D | detect.mk | 21 is_unix := $(strip $(wildcard /sbin/init) \
|
/third_party/skia/infra/bots/recipe_modules/flavor/resources/ |
H A D | win_ssh_cmd.py | 33 stripped = line.strip()
|
/third_party/skia/infra/bots/assets/clang_linux/ |
H A D | create.py | 47 subprocess.check_call(["cp", libstdcpp.strip(), target_dir + "/lib"])
|
/third_party/python/Lib/test/ |
H A D | test_bigmem.py | 43 # better to use the strip or count methods, or compare meaningful slices. 90 self.assertEqual(s.strip(), SUBSTR.strip()) 127 self.assertEqual(len(s.strip(_(' '))), 0) 250 self.assertEqual(s.strip(), SUBSTR.strip()) 330 self.assertEqual(s.strip(), SUBSTR.strip()) 417 self.assertEqual(s.strip(), SUBSTR.strip()) [all...] |
/third_party/ffmpeg/tests/ |
H A D | Makefile | 2 ifneq ($(strip $(KEEP)),) 3 ifneq ($(strip $(KEEP)),0) 76 ALLYES = $(strip $(call XYES, $(1))) 77 XYES = $(if $(strip $(1)), \
|
/third_party/mesa3d/src/amd/compiler/tests/ |
H A D | check_output.py | 93 first_line = [l for l in self.data.split('\n') if l.strip() != ''][0] 98 if line.strip() == '': 436 test.append((line_num, line.strip())) 472 if result.log.strip() != '':
|
/third_party/nghttp2/doc/_exts/rubydomain/ |
H A D | rubydomain.py | 184 token = token.strip() 376 self.env.temp_data['rb:class'] = lastname.strip('.') 398 modname = self.arguments[0].strip() 446 modname = self.arguments[0].strip()
|
/third_party/python/Tools/c-analyzer/c_common/ |
H A D | scriptutil.py | 89 TRACEBACK = os.environ.get('SHOW_TRACEBACK', '').strip() 130 for value in item.strip().replace(',', ' ').split(): 318 yield filename.strip() 379 kinds.extend(kind.strip().replace(',', ' ').split())
|
/third_party/python/Lib/test/test_email/ |
H A D | test_message.py | 773 self.assertEqual(len(m.as_string().strip().splitlines()), 3) 777 self.assertEqual(len(m.as_string(maxheaderlen=0).strip().splitlines()), 779 self.assertEqual(len(m.as_string(maxheaderlen=34).strip().splitlines()), 791 self.assertEqual(len(str(m).strip().splitlines()), 3)
|
/third_party/ffmpeg/libavcodec/ |
H A D | cinepakenc.c | 144 { "strip_number_adaptivity", "How fast the strip number adapts, more is slightly better, much slower", 198 // and 2*256 extra flag bits per strip in cinepak_encode_init() 401 // "kind of" motion compensation, especially in 1 strip/frame case) -- rl in encode_codebook() 839 // actually we are exclusively using intra strip coding (how much can we win in write_strip_keyframe() 1011 int num_strips, strip, i, y, nexty, size, temp_size, best_size; in rd_frame() local 1079 for (y = 0, strip = 1; y < s->h; strip++, y = nexty) { in rd_frame() 1082 strip_offsets[strip-1] = size + CVID_HEADER_SIZE; in rd_frame() 1083 nexty = strip * s->h / num_strips; // <= s->h in rd_frame() 1090 av_log(s->avctx, AV_LOG_INFO, "skipping zero height strip in rd_frame() [all...] |