Searched refs:strip (Results 1 – 25 of 47) sorted by relevance
12
/u-boot/test/py/tests/ |
A D | test_shell_basics.py | 14 assert response.strip() == 'hello' 31 assert response.strip() == '123' 40 assert response.strip() == '1' 42 assert response.strip() == '2'
|
A D | test_bind.py | 9 lines = [x.strip() for x in response.splitlines()] 101 treelines = [x.strip() for x in tree.splitlines() if x.strip()] 120 child2_line = [x.strip() for x in tree.splitlines() if '-- bind-test-child2' in x] 152 treelines = [x.strip() for x in tree.splitlines() if x.strip()]
|
A D | test_hush_if_test.py | 142 assert response.strip() == str(result).lower()
|
/u-boot/tools/env/ |
A D | Makefile | 34 $(obj)/.strip: $(obj)/fw_printenv 37 always += .strip
|
/u-boot/tools/ |
A D | rmboard.py | 76 line = line.strip() 89 line = line.strip() 95 paths.append(fields[1].strip())
|
A D | zynqmp_pm_cfg_obj_convert.py | 263 item = item.strip() 297 item = item.strip()
|
A D | Makefile | 308 $(obj)/.strip: $(call objectify,$(filter $(always),$(hostprogs-y))) 311 always += .strip 313 clean-files += .strip
|
A D | genboardscfg.py | 330 tag, rest = line[:2], line[2:].strip() 395 output_lines.append(line.strip())
|
A D | moveconfig.py | 445 line = line.strip() 758 lines = [x for x in lines if x.strip() not in configs] 813 val= val.strip('\"') 1459 subprocess.check_output(['git', 'rev-parse', '--short', commit]).strip()) 1598 if line.strip().startswith('help') or not line: 1687 config, value = line.strip().split('=', 1)
|
/u-boot/tools/patman/ |
A D | settings.py | 174 line = line.strip() 185 item = item.strip() 282 line = line.strip() 291 alias[words[1]] = [s.strip() for s in words[2].split(',')] 306 bounces.add(line.strip())
|
A D | gitutil.py | 74 result.stderr.strip()) 91 name = stdout.split(' ')[1].strip() 569 lookup_name = lookup_name.strip() 625 fname = os.path.join(GetTopLevel(), fname.strip())
|
A D | series.py | 70 values = [str.strip() for str in values] 183 process_it = [item.strip() for item in process_it]
|
A D | command.py | 132 raise_on_error=raise_on_error, **kwargs).stdout.strip()
|
/u-boot/scripts/ |
A D | Makefile.lib | 51 multi-used-y := $(sort $(foreach m,$(obj-y), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m)))) 52 multi-used-m := $(sort $(foreach m,$(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m)))) 66 real-objs-y := $(foreach m, $(filter-out $(subdir-obj-y), $(obj-y)), $(if $(strip $($(m:.o=-objs)) … 67 real-objs-m := $(foreach m, $(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs))… 162 u_boot_dtsi_options = $(strip $(wildcard $(dir $<)$(basename $(notdir $<))-u-boot.dtsi) \
|
A D | Makefile.clean | 75 ifneq ($(strip $(__clean-files)),) 78 ifneq ($(strip $(__clean-dirs)),)
|
A D | decodecode | 71 ${CROSS_COMPILE}strip $1.o 79 ${CROSS_COMPILE}strip $1.o
|
A D | Kbuild.include | 79 if (which $(strip $(c))$(CC)) > /dev/null 2>&1 ; then \ 136 …) -Werror $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) -W$(strip $(1)) -c -x c /dev/null -o "$$TMP",-Wno-$(… 240 arg-check = $(filter-out $(subst $(space),$(space_escape),$(strip $(cmd_$@))), \ 241 $(subst $(space),$(space_escape),$(strip $(cmd_$1)))) 243 arg-check = $(if $(strip $(cmd_$@)),,1) 260 if_changed = $(if $(strip $(any-prereq) $(arg-check)), \ 266 if_changed_dep = $(if $(strip $(any-prereq) $(arg-check) ), \ 276 if_changed_rule = $(if $(strip $(any-prereq) $(arg-check) ), \ 303 $(if $(strip $(any-prereq)),- due to: $(any-prereq), \ 317 echo-why = $(call escsq, $(strip $(why)))
|
A D | Makefile.build | 84 ifneq ($(strip $(lib-y) $(lib-m) $(lib-)),) 88 ifneq ($(strip $(obj-y) $(obj-m) $(obj-) $(subdir-m) $(lib-target)),) 336 cmd_link_o_target = $(if $(strip $(obj-y)),\ 407 $(patsubst %$(strip $(1)),%$(sfx), \ 408 $(filter %$(strip $(1)), $(targets))))
|
/u-boot/tools/binman/test/ |
A D | 097_elf_strip.dts | 10 strip;
|
/u-boot/arch/arc/ |
A D | Makefile | 19 $(Q)$(CROSS_COMPILE)strip -g u-boot
|
/u-boot/doc/sphinx/ |
A D | cdomain.py | 170 arglist = arglist.strip() 175 arglist = [a.strip() for a in arglist.split(",")]
|
A D | maintainers_include.py | 125 details = details.strip()
|
/u-boot/examples/standalone/ |
A D | Makefile | 16 ELF := $(strip $(extra-y))
|
/u-boot/doc/ |
A D | conf.py | 168 key, val = [x.strip() for x in line.split('=', 2)]
|
/u-boot/scripts/kconfig/ |
A D | conf.c | 56 static void strip(char *str) in strip() function 193 strip(line); in conf_sym() 305 strip(line); in conf_choice()
|
Completed in 31 milliseconds
12