HomeSort by relevance Sort by last modified time
    Searched refs:stem (Results 1 - 25 of 31) sorted by null

1 2

  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnClause.java 45 * @param stem The independent word part of the clause
47 public WnnClause (String stroke, WnnWord stem) {
48 super(stem.id,
49 stem.candidate,
51 stem.partOfSpeech,
52 stem.frequency,
60 * @param stem The independent word part of the clause
63 public WnnClause (String stroke, WnnWord stem, WnnWord fzk) {
64 super(stem.id,
65 stem.candidate + fzk.candidate
    [all...]
  /ndk/sources/host-tools/make-3.81/
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])))
    [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...]
  /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/engine/
ndapi.c 225 tmp_word.stem.info1 = cursor->cond.ylen;
227 tmp_result.word.stem.info1 = cursor->cond.ylen;
291 ((j == max_len) && (loctset->cache_freq > result->word.stem.hindo)) ||
486 if (result->word.stem.loc.handle == NULL) {
490 dictype = NJ_GET_DIC_TYPE_EX(result->word.stem.loc.type, result->word.stem.loc.handle);
499 if (GET_LOCATION_OPERATION(result->word.stem.loc.status) != NJ_CUR_OP_COMP) {
544 if (result->word.stem.loc.handle == NULL) {
548 dictype = NJ_GET_DIC_TYPE_EX(result->word.stem.loc.type, result->word.stem.loc.handle)
    [all...]
ndfdic.c 334 word->stem.loc = loctset->loct;
339 word->stem.info1 = yomilen;
340 word->stem.info1 |= (NJ_UINT16)(DATA_FHINSI(data) << HINSI_OFFSET);
341 word->stem.info2 = (NJ_UINT16)(DATA_BHINSI(data) << HINSI_OFFSET);
347 word->stem.info2 |= kouholen;
348 word->stem.hindo = CALCULATE_HINDO(DATA_HINDO(data), loctset->dic_freq.base,
352 word->stem.type = 0;
369 loc = &word->stem.loc;
412 loc = &word->stem.loc;
ndbdic.c     [all...]
ndldic.c     [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...]
  /external/llvm/include/llvm/Support/
PathV2.h 231 /// @brief Get stem.
244 /// @result The stem of \a path.
245 const StringRef stem(StringRef path);
326 /// @brief Has stem?
328 /// stem != ""
331 /// @result True if the path has a stem, false otherwise.
PathV1.h 279 LLVM_PATH_DEPRECATED_MSG(path::stem));
    [all...]
  /external/clang/lib/Serialization/
ModuleManager.cpp 245 return llvm::sys::path::stem(M->FileName);
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 235 resultMap[sys::path::stem(fname)] = fname;
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 526 if (NoUser32 && sys::path::stem(DLLName) == "user32") {
  /external/webrtc/src/modules/audio_processing/aecm/main/matlab/matlab/
AECMobile.m 259 stem(sign(aecmStructNew.enerNear(n100)-mean(aecmStructNew.enerNear(n100))))
262 stem(sign(aecmStructNew.enerEcho(n100)-mean(aecmStructNew.enerEcho(n100))))
  /frameworks/compile/slang/
llvm-rs-cc.cpp 291 // The build system wants the .d file name stem to be exactly the same as
359 Argv0 = llvm::sys::path::stem(ArgVector[0]);
  /external/freetype/src/psaux/
t1decode.c     [all...]
  /external/llvm/lib/Support/
PathV2.cpp 457 const StringRef stem(StringRef path) {
569 return !stem(p).empty();

Completed in 385 milliseconds

1 2