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

  /external/spirv-llvm/lib/SPIRV/
OCL20ToSPIRV.cpp 301 const std::string &Stem, bool AlwaysN) {
302 auto HalfStem = Stem + "_half";
317 if (DemangledName.find(Stem) == 0) {
318 DemangledName = Stem + "n";
676 StringRef Stem = DemangledName;
677 if (Stem.startswith("atom_"))
678 Stem = Stem.drop_front(strlen("atom_"));
679 else if (Stem.startswith("atomic_"))
680 Stem = Stem.drop_front(strlen("atomic_"))
    [all...]
SPIRVUtil.cpp 123 std::string Stem;
128 Stem = "char";
131 Stem = "short";
134 Stem = "int";
137 Stem = "long";
140 Stem = "invalid_type";
143 return SignPrefix + Stem;
173 std::string Stem;
179 Stem = "char";
182 Stem = "short"
    [all...]
  /build/soong/python/
binary.go 37 Stem *string `android:"arch_variant"`
157 stem := ctx.ModuleName()
158 if String(binary.binaryProperties.Stem) != "" {
159 stem = String(binary.binaryProperties.Stem)
162 return stem + String(binary.binaryProperties.Suffix)
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-ar/
llvm-ar.cpp 51 static StringRef Stem;
108 if (Stem.contains_lower("ranlib"))
110 else if (Stem.contains_lower("ar"))
956 Stem = sys::path::stem(ToolName);
957 if (Stem.contains_lower("dlltool"))
960 if (Stem.contains_lower("ranlib"))
963 if (Stem.contains_lower("lib"))
966 if (Stem.contains_lower("ar"))
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 829 StringRef Stem = sys::path::stem(ToolName);
830 if (Stem.find("ranlib") == StringRef::npos &&
831 Stem.find("lib") != StringRef::npos)
841 if (Stem.find("ranlib") != StringRef::npos)
843 if (Stem.find("ar") != StringRef::npos)
  /build/kati/
strutil.h 102 StringPiece Stem(StringPiece str) const;
command.cc 123 pat.Stem(n->output.str()).AppendToString(s);
strutil.cc 202 StringPiece Pattern::Stem(StringPiece str) const {
  /build/soong/cc/
binary.go 30 Stem *string `android:"arch_variant"`
110 stem := ctx.baseModuleName()
111 if String(binary.Properties.Stem) != "" {
112 stem = String(binary.Properties.Stem)
115 return stem + String(binary.Properties.Suffix)
401 if String(binary.Properties.Stem) == "" && String(binary.Properties.Suffix) == "" {
402 ctx.PropertyErrorf("symlink_preferred_arch", "must also specify stem or suffix")
androidmk.go 270 ret.SubName = "_" + String(test.binaryDecorator.Properties.Stem)
308 stem, suffix, _ := splitFileExt(file)
311 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
321 stem, suffix, _ := splitFileExt(file)
324 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
354 stem, suffix, ext := splitFileExt(file)
358 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
test.go 133 test.binaryDecorator.Properties.Stem = StringPtr(name)
library.go 87 Stem *string `android:"arch_variant"`
493 name = String(library.Properties.Stem)
    [all...]

Completed in 592 milliseconds