HomeSort by relevance Sort by last modified time
    Searched defs:stem (Results 1 - 8 of 8) sorted by null

  /ndk/sources/host-tools/make-3.81/
dep.h 31 chained through the `next'. `stem' is the stem for this
40 char *stem; member in struct:dep
filedef.h 34 char *stem; /* Implicit stem, if an implicit member in struct:file
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...]
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])))
    [all...]
  /external/llvm/unittests/Support/
Path.cpp 121 path::stem(*i);
135 StringRef filename(temp_store.begin(), temp_store.size()), stem, ext; local
136 stem = path::stem(filename);
138 EXPECT_EQ(*(--sys::path::end(filename)), (stem + ext).str());
  /external/freetype/include/freetype/internal/
pshints.h 93 * method (`stem', `stem3', or `reset'). Note that these functions do
149 * vertical stem. This corresponds to the Type 1 `hstem' and `vstem'
161 * stem descriptor.
167 * `coords[0]' is the absolute stem position (lowest coordinate);
171 * -21. It is interpreted as a `ghost' stem, according to the Type 1
174 * If the length is -21 (corresponding to a bottom ghost stem), then
175 * the real stem position is `coords[0]+coords[1]'.
329 * stem ::
330 * The function to set a simple stem.
336 * The function to reset stem hints
347 T1_Hints_SetStemFunc stem; member in struct:T1_Hints_FuncsRec_
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnClauseConverterJAJP.java 264 WnnWord stem = stemsi.next(); local
265 if (addClause(clauseList, input, stem, null, terminal, all)) {
281 /* get candidates of stem in a clause */
294 WnnWord stem = stemsi.next(); local
295 if (all || stem.frequency > max) {
299 if (addClause(clauseList, input, stem, fzk, terminal, all)) {
301 max = stem.frequency;
315 * @param stem Stem of the clause (a independent word)
321 private boolean addClause(LinkedList<WnnClause> clauseList, String input, WnnWord stem, WnnWord fzk
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
nj_lib.h 253 } stem; member in struct:__anon17056
277 } stem; member in struct:__anon17059
287 #define NJ_GET_FPOS_FROM_STEM(s) ((NJ_UINT16)((s)->stem.info1 >> 7))
288 #define NJ_GET_BPOS_FROM_STEM(s) ((NJ_UINT16)((s)->stem.info2 >> 7))
291 #define NJ_SET_FPOS_TO_STEM(s,v) ((s)->stem.info1 = ((s)->stem.info1 & 0x007F) | (NJ_UINT16)((v) << 7))
292 #define NJ_GET_YLEN_FROM_STEM(s) ((NJ_UINT8)((s)->stem.info1 & 0x7F))
293 #define NJ_GET_KLEN_FROM_STEM(s) ((NJ_UINT8)((s)->stem.info2 & 0x7F))
294 #define NJ_SET_YLEN_TO_STEM(s,v) ((s)->stem.info1 = ((s)->stem.info1 & 0xFF80) | (NJ_UINT16)((v) & 0x7F)
    [all...]

Completed in 482 milliseconds