HomeSort by: relevance | last modified time | path
    Searched refs:stem (Results 1 - 25 of 51) sorted by relevancy

1 2 3

  /src/usr.sbin/makemandb/
custom_apropos_tokenizer.c 306 * If the word ends with zFrom and xCond() is true for the stem
318 stem( function
377 * Stem the input word zIn[0..nIn-1]. Store the output in zOut.
434 !stem(&z, "sess", "ss", 0) &&
435 !stem(&z, "sei", "i", 0) &&
436 !stem(&z, "ss", "ss", 0)
443 if (stem(&z, "dee", "ee", m_gt_0)) {
446 (stem(&z, "gni", "", hasVowel) || stem(&z, "de", "", hasVowel))
449 if (stem(&z, "ta", "ate", 0) |
    [all...]
  /src/external/gpl2/gmake/dist/
implicit.c 77 unsigned char had_stem; /* had % substituted with stem */
95 && (f->stem < f->name || f->stem > f->name + strlen (f->name)))
96 free (f->stem);
230 /* The start and length of the stem of FILENAME for the current rule. */
231 register char *stem = 0;
273 PATH_VAR (stem_str); /* @@ Need to get rid of stem, stemlen, etc. */
342 find the stem: the part of the filename that matches the %. */
343 stem = filename + (suffix - target - 1);
369 /* If so, don't include the directory prefix in STEM here. *
229 register char *stem = 0; local
    [all...]
dep.h 31 chained through the `next'. `stem' is the stem for this
40 char *stem; member in struct:dep
misc.c 502 /* Free `struct dep' along with `name' and `stem'. */
510 if (d->stem != 0)
511 free (d->stem);
533 if (c->stem != 0)
534 c->stem = xstrdup (c->stem);
file.c 466 char *file_stem = f->stem;
503 for the file. Since the stem for static pattern rules comes from
504 individual dep lines, we will temporarily set f->stem to d->stem.
512 if (d->stem != 0)
513 f->stem = d->stem;
519 if (d->stem != 0)
520 f->stem = file_stem;
543 if (d->stem[0] == '\0'
    [all...]
commands.c 76 /* $* is the stem from an implicit or static pattern rule. */
77 if (file->stem == 0)
81 explicit rules. We store this in the `stem' member. */
104 file->stem = savestring (name, len - slen);
109 file->stem = "";
111 star = file->stem;
filedef.h 34 char *stem; /* Implicit stem, if an implicit member in struct:file
variable.c 74 char *stem; local
82 find the stem: the part of the filename that matches the %. */
83 stem = target + (p->suffix - p->target - 1);
86 /* Compare the text in the pattern before the stem, if any. */
87 if (stem > target && !strneq (p->target, target, stem - target))
90 /* Compare the text in the pattern after the stem, if any.
95 if (*p->suffix == stem[stemlen]
96 && (*p->suffix == '\0' || streq (&p->suffix[1], &stem[stemlen+1])))
  /src/external/mpl/bind/dist/doc/arm/_ext/
mergegrammar.py 27 if file.stem == "in-view":
30 zone_type = f"type {file.stem}"
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
llvm-cov.cpp 63 if (sys::path::stem(argv[0]).endswith_lower("gcov"))
gcov.cpp 30 sys::path::append(CoverageFileStem, sys::path::stem(SourceFile));
33 sys::path::append(CoverageFileStem, sys::path::stem(SourceFile));
  /src/external/gpl3/binutils/dist/gprofng/src/
collctrl.cc 1926 Coll_Ctrl::set_default_stem (const char* stem)
1928 default_stem = xstrdup (stem);
2370 char *stem; local
2374 stem = xstrdup (default_stem);
2375 stembase = stem;
2379 stem = xstrdup (expt_group);
2380 stem[strlen (stem) - 4] = 0;
2381 stembase = stem;
2385 if (stem[i] == 0
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
collctrl.cc 1926 Coll_Ctrl::set_default_stem (const char* stem)
1928 default_stem = xstrdup (stem);
2370 char *stem; local
2374 stem = xstrdup (default_stem);
2375 stembase = stem;
2379 stem = xstrdup (expt_group);
2380 stem[strlen (stem) - 4] = 0;
2381 stembase = stem;
2385 if (stem[i] == 0
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
InterpolatingCompilationDatabase.cpp 259 llvm::sys::path::stem(CmdLine.front()).endswith_lower("cl");
342 Stems.emplace_back(sys::path::stem(Path), I);
391 // [-prefix--][---dir---] [-dir-] [--stem---]
392 StringRef Stem = sys::path::stem(Filename);
411 Award(1, indexLookup</*Prefix=*/true>(Stem, Stems));
412 Award(1, indexLookup</*Prefix=*/false>(Stem, Stems));
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Inclusions/
HeaderIncludes.cpp 179 // Used to match implementation with headers, this differs from sys::path::stem:
181 // - an empty stem is never returned: /foo/.bar.x => .bar
243 StringRef HeaderStem = llvm::sys::path::stem(IncludeName);
244 StringRef FileStem = llvm::sys::path::stem(FileName); // foo.cu for foo.cu.cc
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Path.h 312 /// Get stem.
327 /// @result The stem of \a path.
328 StringRef stem(StringRef path, Style style = Style::native);
436 /// Has stem?
438 /// stem != ""
441 /// @result True if the path has a stem, false otherwise.
  /src/external/apache2/llvm/dist/llvm/tools/split-file/
split-file.cpp 140 toolName = sys::path::stem(argv[0]);
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
AMDGPUOpenMP.cpp 179 Prefix = llvm::sys::path::stem(II.getFilename()).str() + "-" + GPUArch;
Fuchsia.cpp 58 llvm::sys::path::stem(Exec).equals_lower("ld.lld")) {
  /src/external/apache2/llvm/dist/clang/tools/arcmt-test/
arcmt-test.cpp 238 resultMap[sys::path::stem(fname)] = fname;
  /src/external/apache2/llvm/dist/clang/lib/Lex/
ModuleMap.cpp 625 llvm::sys::path::stem(SkippedDirs[I-1]->getName()), NameBuf);
643 llvm::sys::path::stem(File->getName()), NameBuf);
752 llvm::sys::path::stem(SkippedDirs[I-1]->getName()),
764 llvm::sys::path::stem(Header->getName()),
951 llvm::sys::path::stem(FrameworkDirName), ModuleNameStorage);
991 StringRef Name = llvm::sys::path::stem(FrameworkDirName);
  /src/external/gpl3/gcc.old/dist/gcc/
dbxout.cc 526 dbxout_stabd will not work. STEM is the name stem of the label,
530 dbxout_stab_value_internal_label (const char *stem, int *counterp)
535 ASM_GENERATE_INTERNAL_LABEL (label, stem, counter);
537 targetm.asm_out.internal_label (asm_out_file, stem, counter);
541 value of a stab, and immediately emit that internal label. STEM and
544 dbxout_stab_value_internal_label_diff (const char *stem, int *counterp,
550 ASM_GENERATE_INTERNAL_LABEL (label, stem, counter);
552 targetm.asm_out.internal_label (asm_out_file, stem, counter);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
llvm-objcopy.cpp 75 StringRef Stem = sys::path::stem(ToolName);
83 auto I = Stem.rfind_lower(Tool);
85 (I + Tool.size() == Stem.size() || !isAlnum(Stem[I + Tool.size()]));
  /src/external/apache2/llvm/dist/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 486 if (NoUser32 && sys::path::stem(DLLName) == "user32") {
  /src/external/gpl3/gcc/dist/gcc/config/h8300/
h8300.cc 3384 const char *stem;
3389 stem = "shll";
3393 stem = "shar";
3397 stem = "shlr";
3401 stem = "rotl";
3407 stem = "rotr";
3415 sprintf (buffer, "%s.%c\t%%%c0", stem, suffix, optype);
3417 sprintf (buffer, "%s.%c\t%%X2,%%%c0", stem, suffix, optype);
3371 const char *stem; local

Completed in 73 milliseconds

1 2 3