/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...] |
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
fts1_porter.c | 257 ** If the word ends with zFrom and xCond() is true for the stem 268 static int stem( function 318 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut. 370 !stem(&z, "sess", "ss", 0) && 371 !stem(&z, "sei", "i", 0) && 372 !stem(&z, "ss", "ss", 0) 380 if( stem(&z, "dee", "ee", m_gt_0) ){ 383 (stem(&z, "gni", "", hasVowel) || stem(&z, "de", "", hasVowel)) 386 if( stem(&z, "ta", "ate", 0) | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2_porter.c | 256 ** If the word ends with zFrom and xCond() is true for the stem 267 static int stem( function 317 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut. 369 !stem(&z, "sess", "ss", 0) && 370 !stem(&z, "sei", "i", 0) && 371 !stem(&z, "ss", "ss", 0) 379 if( stem(&z, "dee", "ee", m_gt_0) ){ 382 (stem(&z, "gni", "", hasVowel) || stem(&z, "de", "", hasVowel)) 385 if( stem(&z, "ta", "ate", 0) | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3_porter.c | 259 ** If the word ends with zFrom and xCond() is true for the stem 270 static int stem( function 320 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut. 372 !stem(&z, "sess", "ss", 0) && 373 !stem(&z, "sei", "i", 0) && 374 !stem(&z, "ss", "ss", 0) 382 if( stem(&z, "dee", "ee", m_gt_0) ){ 385 (stem(&z, "gni", "", hasVowel) || stem(&z, "de", "", hasVowel)) 388 if( stem(&z, "ta", "ate", 0) | [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1ObjectIdentifier.java | 33 * Return true if this oid is an extension of the passed in branch, stem. 34 * @param stem the arc or branch that is a possible parent. 35 * @return true if the branch is on the passed in stem, false otherwise. 37 public boolean on(ASN1ObjectIdentifier stem) 39 String id = getId(), stemId = stem.getId();
|
/build/core/ |
host_static_library.mk | 17 $(error $(LOCAL_PATH): Cannot set module stem for a library)
|
static_library.mk | 18 $(error $(LOCAL_PATH): Cannot set module stem for a library)
|
host_shared_library.mk | 22 $(error $(LOCAL_PATH): Cannot set module stem for a library)
|
shared_library.mk | 20 $(error $(LOCAL_PATH): Cannot set module stem for a library)
|
/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
|
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/ |
nj_lib.h | 253 } stem; member in struct:__anon36118 277 } stem; member in struct:__anon36121 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...] |
/frameworks/compile/mclinker/lib/MC/ |
SearchDirs.cpp | 92 if (file == entry.path()->stem().native() ) { 105 if (file == entry.path()->stem().native() && 136 if (file == entry.path()->stem().native() ) { 149 if (file == entry.path()->stem().native() &&
|
/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;
|
/bootable/recovery/updater/ |
Android.mk | 56 $(inc_dep_file): stem := $(inc).dep macro 59 $(hide) rm -f $(stem).*
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.apache.lucene.analysis_1.9.1.v20100518-1140.jar | |
/external/chromium_org/third_party/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/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/ |
Path.h | 251 /// @brief Get stem. 266 /// @result The stem of \a path. 267 const StringRef stem(StringRef path); 350 /// @brief Has stem? 352 /// stem != "" 355 /// @result True if the path has a stem, false otherwise.
|