HomeSort by relevance Sort by last modified time
    Searched full:subst (Results 76 - 100 of 522) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/ltp/
Makefile 67 $(1): | $$(abs_top_builddir)/$$(basename $$(subst -,.,$(1)))
69 $(1):: | $$(abs_top_builddir)/$$(basename $$(subst -,.,$(1)))
114 $(MAKE) -C "$(subst -all,,$@)" \
115 -f "$(abs_top_srcdir)/$(subst -all,,$@)/Makefile" all
119 -$(MAKE) -C "$(subst -clean,,$@)" \
120 -f "$(abs_top_srcdir)/$(subst -clean,,$@)/Makefile" clean
142 $(MAKE) -C "$(subst -install,,$@)" \
143 -f "$(abs_top_srcdir)/$(subst -install,,$@)/Makefile" install
  /frameworks/base/core/java/android/service/autofill/
CharSequenceTransformation.java 96 // replaceAll throws an exception if the subst is invalid
126 * @param subst the string that substitutes the matched regex, using {@code $} for
129 public Builder(@NonNull AutofillId id, @NonNull Pattern regex, @NonNull String subst) {
130 addField(id, regex, subst);
139 * @param subst the string that substitutes the matched regex, using {@code $} for
145 @NonNull String subst) {
149 Preconditions.checkNotNull(subst);
151 mFields.put(id, new Pair<>(regex, subst));
  /external/libchrome/base/strings/
string_util_unittest.cc 901 std::vector<string16> subst; local
926 std::vector<string16> subst; local
939 std::vector<string16> subst; local
958 std::vector<string16> subst; local
966 std::vector<string16> subst; local
974 std::vector<std::string> subst; local
993 std::vector<std::string> subst; local
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
bits.c 506 DefErrSet1(int nilOK, set *f, int subst, char *name )
508 DefErrSet1(nilOK, f, subst, name )
511 int subst; /* should be substitute error classes? */
515 if ( GenCC ) return DefErrSetForCC1(nilOK, f, subst, name, "_set");
516 else return DefErrSetForC1(nilOK, f, subst, name, "_set");
521 DefErrSet( set *f, int subst, char *name )
523 DefErrSet( f, subst, name )
525 int subst; /* should be substitute error classes? */
529 return DefErrSet1(0,f,subst,name);
534 DefErrSetWithSuffix(int nilOK, set *f, int subst, char *name, const char* suffix)
    [all...]
  /external/curl/docs/examples/
Makefile.m32 117 DEL = -del 2>NUL /q /f $(subst /,\,$1)
118 RMDIR = -rd 2>NUL /q /s $(subst /,\,$1)
120 DEL = -del 2>NUL $(subst /,\,$1)
121 RMDIR = -deltree 2>NUL /y $(subst /,\,$1)
123 MKDIR = -md 2>NUL $(subst /,\,$1)
124 COPY = -copy 2>NUL /y $(subst /,\,$1) $(subst /,\,$2)
125 COPYR = -xcopy 2>NUL /q /y /e $(subst /,\,$1) $(subst /,\,$2)
126 TOUCH = copy 2>&1>NUL /b $(subst /,\,$1) +,
    [all...]
  /external/e2fsprogs/lib/uuid/
Makefile.in 93 $(E) " SUBST $@"
97 $(E) " SUBST $@"
101 $(E) " SUBST $@"
105 $(E) " SUBST $@"
109 $(E) " SUBST $@"
113 $(E) " SUBST $@"
117 $(E) " SUBST $@"
121 $(E) " SUBST $@"
125 $(E) " SUBST $@"
  /external/freetype/builds/
freetype.mk 122 INCLUDES := $(subst /,$(COMPILER_SEP),$(OBJ_DIR) \
210 $(FT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
222 $(FT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
248 $(FT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
327 -$(DELETE) $(subst /,$(SEP),$(OBJ_DIR)/*.$O $(CLEAN) $(NO_OUTPUT))
330 -$(DELETE) $(subst /,$(SEP),$(PROJECT_LIBRARY) $(DISTCLEAN) $(NO_OUTPUT))
338 -$(DELETE) $(subst /,$(SEP),$(CONFIG_MK) $(NO_OUTPUT))
343 -$(DELETE) $(subst /,$(SEP),$(FTMODULE_H) $(NO_OUTPUT))
354 -$(DELETE) $(subst /,$(SEP),$(DOC_DIR)/*.html $(NO_OUTPUT))
modules.mk 33 CLOSE_MODULE := >> $(subst /,$(SEP),$(FTMODULE_H))
34 REMOVE_MODULE := @-$(DELETE) $(subst /,$(SEP),$(FTMODULE_H))
toplevel.mk 176 work := $(subst |,x,$(work))
177 work := $(subst $(space),|,$(work))
178 work := $(subst \#define|FREETYPE_MAJOR|,$(space),$(work))
180 major := $(subst |,$(space),$(work))
183 work := $(subst \#define|FREETYPE_MINOR|,$(space),$(work))
185 minor := $(subst |,$(space),$(work))
188 work := $(subst \#define|FREETYPE_PATCH|,$(space),$(work))
190 patch := $(subst |,$(space),$(work))
detect.mk 71 PLATFORMS := $(notdir $(subst /detect.mk,,$(wildcard $(BUILD_CONFIG)/*/detect.mk)))
145 @echo configuration directory??????$(subst /,$(SEP),$(BUILD_DIR))
146 @echo configuration rules??????????$(subst /,$(SEP),$(CONFIG_RULES))
154 @$(COPY) $(subst /,$(SEP),$(CONFIG_RULES) $(CONFIG_MK)) > nul
  /prebuilts/go/darwin-x86/src/cmd/gofmt/
rewrite.go 74 val = subst(m, repl, reflect.ValueOf(val.Interface().(ast.Node).Pos()))
244 // subst returns a copy of pattern with values from m substituted in place
246 // if m == nil, subst returns a copy of pattern and doesn't change the line
248 func subst(m map[string]reflect.Value, pattern reflect.Value, pos reflect.Value) reflect.Value { func
258 return subst(nil, old, reflect.Value{})
276 v.Index(i).Set(subst(m, p.Index(i), pos))
283 v.Field(i).Set(subst(m, p.Field(i), pos))
290 v.Set(subst(m, elem, pos).Addr())
297 v.Set(subst(m, elem, pos))
  /prebuilts/go/linux-x86/src/cmd/gofmt/
rewrite.go 74 val = subst(m, repl, reflect.ValueOf(val.Interface().(ast.Node).Pos()))
244 // subst returns a copy of pattern with values from m substituted in place
246 // if m == nil, subst returns a copy of pattern and doesn't change the line
248 func subst(m map[string]reflect.Value, pattern reflect.Value, pos reflect.Value) reflect.Value { func
258 return subst(nil, old, reflect.Value{})
276 v.Index(i).Set(subst(m, p.Index(i), pos))
283 v.Field(i).Set(subst(m, p.Field(i), pos))
290 v.Set(subst(m, elem, pos).Addr())
297 v.Set(subst(m, elem, pos))
  /build/kati/
expr_test.go 61 subst: literal(".o"),
66 in: "$(subst $(space),$(,),$(foo))/bar",
71 literal("(subst"),
91 in: "$(subst $(space),$,,$(foo))",
95 literal("(subst"),
strutil.cc 210 StringPiece subst,
214 AppendString(subst, out);
223 size_t subst_percent_index = subst.find('%');
225 AppendString(subst, out);
228 AppendString(subst.substr(0, subst_percent_index), out);
231 AppendString(subst.substr(subst_percent_index + 1), out);
239 StringPiece subst,
241 if (percent_index_ != string::npos && subst.find('%') != string::npos) {
242 AppendSubst(str, subst, out);
247 out->append(subst.begin(), subst.end())
    [all...]
  /external/freetype/src/base/
rules.mk 27 $I$(subst /,$(COMPILER_SEP),$(BASE_DIR)) \
98 $(BASE_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(BASE_SRC_S))
104 $(BASE_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
  /external/llvm/utils/
shuffle_fuzz.py 152 subst = {'N': width, 'T': element_type, 'IT': integral_element_type}
155 entry:""" % dict(subst,
157 ['<%(N)d x %(T)s> %%s.0.%(i)d' % dict(subst, i=i)
164 """.strip('\n') % dict(subst, i=i, next_i=i + 1, j=j, next_j=j + 1,
171 """ % dict(subst, i=len(shuffle_tree))
190 """ % dict(subst,
191 arguments=', '.join(['<%(N)d x %(T)s> %%s.%(i)d' % dict(subst, i=i)
209 """ % dict(subst,
213 dict(subst, input=', '.join(['%(IT)s %(i)d' % dict(subst, i=i
    [all...]
  /prebuilts/tools/common/proguard/proguard4.7/build/
makefile 6 PROGUARD_HOME := $(subst ./..,..,$(subst /build/..,/,$(dir $(MAKEFILE_LIST))..))
85 cp $(subst $(CLASSES),$(SRC),$@) $@
  /cts/hostsidetests/appsecurity/test-apps/PrivilegedUpdateApp/
Android.mk 53 my_apk_dir := $(subst arm64,arm,$(TARGET_ARCH))
54 my_apk_dir := $(subst x86_64,x86,$(my_apk_dir))
  /external/freetype/builds/compiler/
ansi-cc.mk 76 CLEAN_LIBRARY ?= $(DELETE) $(subst /,$(SEP),$(PROJECT_LIBRARY))
77 LINK_LIBRARY = $(AR) -r $@ $(subst /,$(COMPILER_SEP),$(OBJECTS_LIST))
watcom.mk 75 CLEAN_LIBRARY ?= $(DELETE) $(subst /,$(SEP),$(PROJECT_LIBRARY))
76 LINK_LIBRARY = $(subst /,$(COMPILER_SEP), \
  /test/vts/tools/build/utils/
vts_package_utils.mk 25 $(eval bui_ins := $(subst :,$(space),$(i)))\
43 $(eval bui_ins := $(subst :,$(space),$(i)))\
  /external/syslinux/core/
Makefile 50 COBJ := $(subst $(SRC)/,,$(patsubst %.c,%.o,$(CSRC)))
51 SOBJ := $(subst $(SRC)/,,$(patsubst %.S,%.o,$(SSRC)))
67 LPXELINUX_OBJS = $(subst $(SRC)/,,$(LPXELINUX_CSRC:%.c=%.o))
68 PXELINUX_OBJS = $(subst $(SRC)/,,$(PXELINUX_CSRC:%.c=%.o))
71 UNITTEST_OBJS = $(subst $(SRC)/,,$(UNITTEST_CSRC:%.c=%.o))
76 $(subst $(OBJ)/,,$(UNITTEST_OBJS)) \
77 $(subst $(OBJ)/,,$(LPXELINUX_OBJS)) \
78 $(subst $(OBJ)/,,$(PXELINUX_OBJS))
82 FILTER_OBJS += $(subst $(SRC)/,, \
92 COBJS += $(subst $(SRC)/,,$(CORE_PXE_CSRC:%.c=%.o) fs/pxe/ftp.o fs/pxe/ftp_readdir.o
    [all...]
  /build/kati/testcase/
sort.mk 1 sp := $(subst S, ,S)
  /build/make/core/tasks/
test_mapping.mk 23 $(test_mappings_zip) : PRIVATE_test_mappings := $(subst $(newline),\n,$(test_mappings))
  /device/linaro/bootloader/arm-trusted-firmware/make_helpers/
plat_helpers.mk 30 PLATFORM_LIST := $(subst ${space},|,${ALL_PLATFORMS})

Completed in 7532 milliseconds

1 2 34 5 6 7 8 91011>>