HomeSort by relevance Sort by last modified time
    Searched full:subst (Results 1 - 25 of 417) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libxml2/result/schemas/
subst-group-1_0_1 1 ./test/schemas/subst-group-1_1.xml validates
  /external/llvm/test/TableGen/
subst2.td 3 // CHECK: No subst
12 Recurse<!subst("RECURSE", "RECURSE", !subst("NORECURSE", "foo", text))>;
14 def Ok1 : Text<"No subst">;
MultiPat.td 72 // Dummy for subst
97 !subst(INTRINSIC, intr,
98 !subst(REGCLASS, VR128,
99 !subst(MNEMONIC, set, Decls.operand)))))>,
102 !subst(INTRINSIC, intr,
103 !subst(REGCLASS, VR128,
104 !subst(MNEMONIC, set, Decls.operand)))))>;
108 !strconcat(asmstr, "\t$dst, $src1, $src2"), !cast<Intrinsic>(!subst("SUFFIX", "_ps", intr)), patterns>;
111 !strconcat(asmstr, "\t$dst, $src1, $src2"), !cast<Intrinsic>(!subst("SUFFIX", "_pd", intr)), patterns>;
  /external/parameter-framework/upstream/
.gitattributes 1 .version export-subst
  /build/kati/testcase/
err_ifdef_with_leading_space.mk 3 B := $(subst S, ,Sa)
subst.mk 6 bar:= $(subst $(space),$(comma),$(foo))
11 echo $(subst ,repl,str)
and.mk 4 X:=$(subst y, ,$(XY))
5 Y:=$(subst x, ,$(XY))
call.mk 5 replace_spaces = $(subst $(space),?,$1)
6 unreplace_spaces = $(subst ?,$(space),$1)
strip.mk 2 X:=$(subst y, ,$(XY))
3 Y:=$(subst x, ,$(XY))
or.mk 4 X:=$(subst y, ,$(XY))
5 Y:=$(subst x, ,$(XY))
assign_with_trailing_space.mk 8 sp := $(subst S, ,S)
quine.mk 3 $$(info $$(subst $$$$,$$$$$$$$,$$q))
subst2.mk 6 bar:= $(subst $(space),$,,$(foo))
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/icons/
Makefile 11 mkdir -p hicolor/$(word 1, $(subst /, ,$(@)))/apps/
12 inkscape $(subst .png,.svg, $(word 2, $(subst /, , $(@)))) --without-gui \
13 --export-width=$(word 1, $(subst x, , $(@))) \
14 --export-height=$(word 2, $(subst x, , $(subst /, , $(@)))) \
15 --export-png=hicolor/$(word 1, $(subst /, ,$(@)))/apps/$(word 2, $(subst /, , $@))
  /external/e2fsprogs/util/
Makefile.in 12 SRCS = $(srcdir)/subst.c
21 PROGS= subst symlinks
25 subst: subst.o
27 $(Q) $(BUILD_CC) $(BUILD_LDFLAGS) -o subst subst.o
61 subst.o: $(srcdir)/subst.c
  /prebuilts/go/darwin-x86/test/bench/shootout/
regex-dna-parallel.go 58 type Subst struct {
62 var substs = []Subst{
63 Subst{"B", "(c|g|t)"},
64 Subst{"D", "(a|g|t)"},
65 Subst{"H", "(a|c|t)"},
66 Subst{"K", "(g|t)"},
67 Subst{"M", "(a|c)"},
68 Subst{"N", "(a|c|g|t)"},
69 Subst{"R", "(a|g)"},
70 Subst{"S", "(c|g)"}
    [all...]
regex-dna.go 57 type Subst struct {
61 var substs = []Subst{
62 Subst{"B", "(c|g|t)"},
63 Subst{"D", "(a|g|t)"},
64 Subst{"H", "(a|c|t)"},
65 Subst{"K", "(g|t)"},
66 Subst{"M", "(a|c)"},
67 Subst{"N", "(a|c|g|t)"},
68 Subst{"R", "(a|g)"},
69 Subst{"S", "(c|g)"}
    [all...]
  /prebuilts/go/linux-x86/test/bench/shootout/
regex-dna-parallel.go 58 type Subst struct {
62 var substs = []Subst{
63 Subst{"B", "(c|g|t)"},
64 Subst{"D", "(a|g|t)"},
65 Subst{"H", "(a|c|t)"},
66 Subst{"K", "(g|t)"},
67 Subst{"M", "(a|c)"},
68 Subst{"N", "(a|c|g|t)"},
69 Subst{"R", "(a|g)"},
70 Subst{"S", "(c|g)"}
    [all...]
regex-dna.go 57 type Subst struct {
61 var substs = []Subst{
62 Subst{"B", "(c|g|t)"},
63 Subst{"D", "(a|g|t)"},
64 Subst{"H", "(a|c|t)"},
65 Subst{"K", "(g|t)"},
66 Subst{"M", "(a|c)"},
67 Subst{"N", "(a|c|g|t)"},
68 Subst{"R", "(a|g)"},
69 Subst{"S", "(c|g)"}
    [all...]
  /external/icu/icu4c/source/layout/
SubstitutionLookups.cpp 40 for (le_uint16 subst = 0; subst < substCount && LE_SUCCESS(success); subst += 1) {
41 le_uint16 sequenceIndex = SWAPW(substLookupRecordArray[subst].sequenceIndex);
42 le_uint16 lookupListIndex = SWAPW(substLookupRecordArray[subst].lookupListIndex);
  /libcore/ojluni/src/main/java/sun/misc/
MessageUtils.java 42 public static String subst(String patt, String arg) { method in class:MessageUtils
44 return subst(patt, args);
47 public static String subst(String patt, String arg1, String arg2) { method in class:MessageUtils
49 return subst(patt, args);
52 public static String subst(String patt, String arg1, String arg2, method in class:MessageUtils
55 return subst(patt, args);
58 public static String subst(String patt, String args[]) { method in class:MessageUtils
82 return subst(System.getProperty(propName), arg);
86 return subst(System.getProperty(propName), arg1, arg2);
91 return subst(System.getProperty(propName), arg1, arg2, arg3)
    [all...]
  /device/google/marlin/power/
Android.mk 26 LOCAL_MODULE := power.$(patsubst %f,%,$(subst _eas,,$(subst aosp_,,$(TARGET_PRODUCT))))
  /build/core/clang/
arm64.mk 19 define subst-clang-incompatible-arm64-flags
x86.mk 17 define subst-clang-incompatible-x86-flags
x86_64.mk 16 define subst-clang-incompatible-x86_64-flags

Completed in 1189 milliseconds

1 2 3 4 5 6 7 8 91011>>