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

1 2 3

  /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...]
  /build/kati/testcase/
implicit_pattern_rule_prefix.mk 7 # GNU make 3 does not prioritize the rule with a shortest stem.
  /build/make/core/
header_library_internal.mk 11 $(error $(LOCAL_PATH): Cannot set module stem for a library)
host_static_library_internal.mk 17 $(error $(LOCAL_PATH): Cannot set module stem for a library)
aux_static_library.mk 17 $(error $(LOCAL_PATH): Cannot set module stem for a library)
host_shared_library_internal.mk 20 $(error $(LOCAL_PATH): Cannot set module stem for a library)
static_library_internal.mk 18 $(error $(LOCAL_PATH): Cannot set module stem for a library)
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
nj_lib.h 253 } stem; member in struct:__anon44571
277 } stem; member in struct:__anon44574
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...]
  /external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.decompose/
path.decompose.pass.cpp 24 // path stem() const;
160 std::string stem; member in struct:FilenameDecompTestcase
186 assert(p.stem() == TC.stem);
187 assert(p.has_stem() != TC.stem.empty());
  /frameworks/compile/mclinker/lib/MC/
SearchDirs.cpp 106 if (file == entry.path()->stem().native()) {
120 if (file == entry.path()->stem().native() &&
171 if (file == entry.path()->stem().native()) {
185 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...]
  /external/selinux/libselinux/src/
label_file.h 40 int stem_id; /* indicates which stem-compression item */
46 /* A regular expression stem */
47 struct stem { struct
75 struct stem *stem_arr;
225 /* Return the length of the text that can be considered the stem, returns 0
226 * if there is no identifiable stem */
265 struct stem *tmp_arr;
282 /* find the stem of a file spec, returns the index into stem_arr for a new
283 * or existing stem, (or -1 if there is no possible stem - IE for a file i
289 char *stem; local
    [all...]
label_file.c 30 /* return the length of the text that is the stem of a file name */
40 /* find the stem of a file name, returns the index into stem_arr (or -1 if
42 * too complex for us). Makes buf point to the text AFTER the stem. */
239 * map indexed by the stem # in the mmap file and contains the stem
366 /* map the stem id from the mmap file to the data->stem_arr */
692 struct stem *stem; local
713 stem = &data->stem_arr[i];
714 if (stem->from_mmap
    [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;
  /external/swiftshader/third_party/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());
  /prebuilts/tools/common/m2/
Android.mk 5 # trove prebuilt. Module stem is chosen so it can be used as a static library.
  /external/llvm/tools/llvm-cov/
llvm-cov.cpp 63 if (sys::path::stem(argv[0]).endswith_lower("gcov"))
gcov.cpp 31 sys::path::append(CoverageFileStem, sys::path::stem(SourceFile));
34 sys::path::append(CoverageFileStem, sys::path::stem(SourceFile));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene.analysis_1.9.1.v20100518-1140.jar 
  /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 285 /// @brief Get stem.
300 /// @result The stem of \a path.
301 StringRef stem(StringRef path);
411 /// @brief Has stem?
413 /// stem != ""
416 /// @result True if the path has a stem, false otherwise.
  /external/pdfium/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/swiftshader/third_party/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.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1ObjectIdentifier.java 232 * Return true if this oid is an extension of the passed in branch, stem.
234 * @param stem the arc or branch that is a possible parent.
235 * @return true if the branch is on the passed in stem, false otherwise.
237 public boolean on(ASN1ObjectIdentifier stem)
239 String id = getId(), stemId = stem.getId();

Completed in 326 milliseconds

1 2 3