HomeSort by relevance Sort by last modified time
    Searched full:phrase (Results 1 - 25 of 202) sorted by null

1 2 3 4 5 6 7 8 9

  /ndk/sources/host-tools/sed-4.2.1/testsuite/
dollar.good 3 the phrase
dollar.inp 3 the phrase
  /external/svox/pico/lib/
picospho.h 66 PICODATA_ITEMINFO1_BOUND_PHR3 (secondary phrase boundary, no break)
68 - BOUNDtype (actually phrase type of the following phrase)
69 PICODATA_ITEMINFO2_BOUNDTYPE_P (non-terminal phrase)
70 PICODATA_ITEMINFO2_BOUNDTYPE_T (terminal phrase)
71 PICODATA_ITEMINFO2_BOUNDTYPE_Q (question terminal phrase)
72 PICODATA_ITEMINFO2_BOUNDTYPE_E (exclamation terminal phrase)
79 <sentence> = <phrase> { BOUND(BOUND_PHR1|2|3,PHRASEtype) <phrase> }
81 <phrase> = WORDPHON(POS,ACC)phon { WORDPHON(POS,ACC)phon
    [all...]
picoacph.h 56 - one punctuation-phrase, consisting of a sequence (see below for
65 - If needed, a PUNC(PHRASE) is artificially added to ensure a phrase
131 - PICODATA_ITEMINFO1_BOUND_PHR3 (secondary phrase boundary, no break)
135 - BOUNDtype (created in sa base on punctuation, indicates type of phrase
147 <sentence> = <phrase> { BOUND(BOUND_PHR1|2|3,BOUNDtype) <phrase> }
149 <phrase> = WORDPHON(POS,ACC)phon { WORDPHON(POS,ACC)phon }
picosa.h 60 - one punctuation-phrase, consisting of a sequence (see below for
69 - If needed, a PUNC(PHRASE) is artificially added to ensure a phrase
136 PICODATA_ITEMINFO1_BOUND_PHR3 (secondary phrase boundary, no break)
140 - BOUNDtype (created in sa base on punctuation, indicates type of phrase
153 <sentence> = <phrase> { BOUND(BOUND_PHR1|2|3,BOUNDtype) <phrase> }
155 <phrase> = WORDPHON(POS,ACC)phon { WORDPHON(POS,ACC)phon }
picoacph.c 54 #define SA_BOUNDSTRENGTH_PPHR 1 /* primary phrase separator */
59 * context size : one phrase, max. 30 non-PUNC items, for non-processed items
83 2-level bound state: The internal buffer contains one primary phrase (sometimes forced, if buffer
85 If the trailing PUNC is a a primary phrase separator, the
87 be output at the start of the next primary phrase.\n
90 so that a BOUND of type SBEG is output at the start of the next primary phrase.
100 all but the first will be treated as an (empty) phrase containing just this item.
109 first one) from right-to-left. The boundary types mark the phrase
110 type of the phrase following the boundary.
128 picoos_uint8 boundtype; /* btype for following phrase, 0 if not set *
    [all...]
  /external/libvpx/
keywords.dox 18 This phrase, or the phrase "SHALL NOT", mean that the
30 This phrase, or the phrase "NOT RECOMMENDED" mean that
  /external/srec/tools/dictTest/
dictTest.c 42 void doGetProns(SR_Vocabulary *vocab, LCHAR* phrase, size_t len, FILE* fout)
47 rc = SR_VocabularyGetPronunciation(vocab, phrase, prons, &len);
48 // rc = vocab->getPronunciation(vocab, phrase, prons, &len);
58 LFPRINTF(fout,"%s : %s\n", phrase, pron);
71 LCHAR* phrase;
87 phrase = tokenArray[0];
93 rc = vocab->getPronunciation(vocab, phrase, phoneme, &len);
99 LFPRINTF(fout,"%s|%s|%s|", phrase, expectedPhoneme, phoneme);
112 LCHAR phrase[MAX_LINE_LENGTH]; local
302 while (pfgets(phrase, MAX_LINE_LENGTH, fin)!=NULL
    [all...]
  /external/apache-http/src/org/apache/http/
HttpResponse.java 68 * The reason phrase will be determined based on the current
77 * Sets the status line of this response with a reason phrase.
81 * @param reason the reason phrase, or <code>null</code> to omit
90 * The reason phrase will be updated according to the new status code,
107 * Updates the status line of this response with a new reason phrase.
111 * @param reason the new reason phrase as a single-line string, or
112 * <code>null</code> to unset the reason phrase
142 * The locale is used to determine the reason phrase
152 * If there is a status line, it's reason phrase will be updated
ReasonPhraseCatalog.java 51 * Obtains the reason phrase for a status code.
53 * the language for the reason phrase.
56 * @param loc the preferred locale for the reason phrase
58 * @return the reason phrase, or <code>null</code> if unknown
HttpResponseFactory.java 54 * for looking up a reason phrase to the status code, or
67 * for looking up a reason phrase if the status code
  /external/icu4c/i18n/
selfmt.cpp 102 UnicodeString phrase ; local
122 //Allow any character in phrase but nowhere else
125 phrase += ch;
190 //Handle the phrase state
195 phrase += ch;
198 //Matching keyword, phrase pair found
212 //Store the keyword, phrase pair in hashTable
213 ptrPhrase = new UnicodeString(phrase);
218 phrase.remove();
225 phrase += ch
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-57572.js 61 string = 'Stupid phrase, with six - (short) words';
63 expectedmatch = Array(string, 'Stupid', ' phrase, with six - (short) words'); //single space in front of 'phrase'
68 string = 'Stupid phrase, with six - (short) words';
70 expectedmatch = Array(string, 'Stupid', 'phrase, with six - (short) words'); //NO space in front of 'phrase'
77 string = 'Stupid phrase, with six - (short) words';
79 expectedmatch = Array(string, 'Stupid', cnSingleSpace, 'phrase, with six - (short) words');
  /external/icu4c/i18n/unicode/
selfmt.h 36 * how to map keywords to phrases and provides a default phrase. The
38 * against the keywords. If there is a match, the corresponding phrase
39 * is selected; otherwise, the default phrase is used.</p>
124 * <p>The <code>SelectFormat</code> pattern text defines the phrase output
126 * The pattern is a sequence of <code><i>keyword</i>{<i>phrase</i>}</code>
128 * Each clause assigns the phrase <code><i>phrase</i></code>
134 * You always have to define a phrase for the default keyword
135 * <code>other</code>; this phrase is returned when the keyword
138 * If a pattern does not provide a phrase for <code>other</code>, the metho
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
AddressListParserTreeConstants.java 30 "phrase",
  /external/apache-http/src/org/apache/http/message/
BasicHttpResponse.java 67 * @param catalog the reason phrase catalog, or
69 * reason phrase lookup
87 * The response will not have a reason phrase catalog and
98 * The response will not have a reason phrase catalog and
103 * @param reason the reason phrase to the status code, or
167 throw new IllegalArgumentException("Line break in reason phrase.");
191 * Looks up a reason phrase.
197 * @return the reason phrase, or <code>null</code> if there is none
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
scanner.py 20 phrase = token.pattern
23 [(SUBPATTERN, (idx + 1, sre_parse.parse(phrase, flags)))])
  /external/apache-http/src/org/apache/http/impl/
EnglishReasonPhraseCatalog.java 75 * Obtains the reason phrase for a status code.
80 * @return the reason phrase, or <code>null</code>
112 * Stores the given reason phrase, by status code.
115 * @param status the status code for which to define the phrase
116 * @param reason the reason phrase for this status code
127 /** Set up status code to "reason phrase" map. */
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.4.js 33 prototype object, the phrase "this Boolean object" refers to the object that
36 [[Class]] property is "Boolean". Also, the phrase "this boolean value"
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.js 34 prototype object, the phrase "this Date object" refers to the object that
37 [[Class]] property is "Date". Also, the phrase "this time value" refers
  /external/webkit/Source/WebCore/manual-tests/autocorrection/
autocorrection-cancelled-by-ESC.html 35 <p>After seeing the correction panel, press ESC key, then press space. You should see the phrase "the collaps"
autocorrection-cancelled-by-typing-1.html 33 <div>This test verifies that autocorrection behaves correctly when continuing typing in a word on which autocorrection panel is hown. You should see correction panel showing 'collapse' after 'collaps' is entered. Then type "ing". Phrase 'the collapsing' should be shown without underline.</div>
delete-to-end-of-word-to-show-reversion.html 35 <p>After seeing the reversion panel, press ESC key, then space key. You should see the phrase "the mesage". </p>
move-to-end-of-word-to-show-reversion.html 35 <p>After seeing the reversion panel, press ESC key, then space key. You should see the phrase "the mesage". </p>
  /system/core/fastboot/
genkey.sh 5 echo "Usage: $0 alias \"pass phrase\""

Completed in 364 milliseconds

1 2 3 4 5 6 7 8 9