Home
last modified time | relevance | path

Searched refs:sentence (Results 1 – 25 of 685) sorted by relevance

12345678910>>...28

/third_party/gettext/gettext-tools/tests/
Dsentence-18 This is a primary sentence
11 This is a primary sentence.
14 This is a primary sentence.x
17 This is a primary sentence. This is a secondary sentence
20 This is a primary sentence. This is a secondary sentence
23 This is a primary sentence.' This is a secondary sentence
29 This is a primary sentence.' This is a secondary sentence
32 This is a primary sentence.'x This is a secondary sentence
53 This is a primary sentence.' This is a secondary sentence
56 This is a primary sentence.'
[all …]
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/string/
Dskip_gram.cc43 void ParseSentenceToWords(const StringPack &sentence, std::vector<StringPack> *words) { in ParseSentenceToWords() argument
47 for (i = 0; i < sentence.len; i++) { in ParseSentenceToWords()
48 if (sentence.data[i] != ' ') { in ParseSentenceToWords()
53 for (; i < sentence.len; i++) { in ParseSentenceToWords()
54 if (sentence.data[i] == ' ') { in ParseSentenceToWords()
55 if (sentence.data[pre] != ' ') { in ParseSentenceToWords()
56 words->push_back({i - pre, sentence.data + pre}); in ParseSentenceToWords()
61 if (sentence.data[sentence.len - 1] != ' ') { in ParseSentenceToWords()
62 words->push_back({sentence.len - pre, sentence.data + pre}); in ParseSentenceToWords()
75 StringPack sentence = mindspore::lite::ParseTensorBuffer(in_tensors_.at(0)).at(0); in Run() local
[all …]
/third_party/boost/libs/locale/doc/
Dboundary_analysys.txt101 This sentence "生きるか死ぬか、それが問題だ。" (<a href="http://tatoeba.org/eng/sentences/show/868189">from Tatoeb…
124 and \ref bl_boundary_sentence_rules "sentence" boundary rules.
213 The \ref bl_boundary_sentence_rules "sentence rules" have two options:
215 - Split the text on the point where sentence terminator like ".!?" detected: \ref boost::locale::bo…
216 - Split the text on the point where sentence separator like "line feed" detected: \ref boost::local…
218 Naturally to ignore sentence separators we would call \ref boost::locale::boundary::segment_index::…
226 ssegment_index map(sentence,text.begin(),text.end(),gen("en_US.UTF-8"));
239 The reason is that "How\n" is still considered a sentence but selected by different
327 std::string const text="First sentence. Second sentence! Third one?";
329 sboundary_point_index map(sentence,text.begin(),text.end(),gen("en_US.UTF-8"));
[all …]
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/text/kernels/
Djieba_tokenizer_op.cc34 std::string sentence{sentence_v}; in Tokenize() local
36 if (sentence == "") { in Tokenize()
42 mp_seg->Cut(sentence, tmp, MAX_WORD_LENGTH); in Tokenize()
46 hmm_seg->Cut(sentence, tmp); in Tokenize()
50 mix_seg->Cut(sentence, tmp, true); in Tokenize()
Dsentence_piece_tokenizer_op.cc68 std::string sentence{sentence_v}; in Compute() local
72 auto status = processor_.Encode(sentence, &pieces); in Compute()
79 auto status = processor_.Encode(sentence, &ids); in Compute()
/third_party/python/Lib/test/cjkencodings/
Dhz-utf8.txt1 This sentence is in ASCII.
2 The next sentence is in GB.己所不欲,勿施於人。Bye.
Dhz.txt1 This sentence is in ASCII.
2 The next sentence is in GB.~{<:Ky2;S{#,NpJ)l6HK!#~}Bye.
/third_party/flutter/skia/third_party/externals/spirv-tools/test/
Dtext_word_get_test.cpp90 AutoText input("Words in a sentence"); in TEST()
94 const char* words[] = {"Words", "in", "a", "sentence"}; in TEST()
/third_party/spirv-tools/test/
Dtext_word_get_test.cpp92 AutoText input("Words in a sentence"); in TEST()
96 const char* words[] = {"Words", "in", "a", "sentence"}; in TEST()
/third_party/skia/third_party/externals/spirv-tools/test/
Dtext_word_get_test.cpp92 AutoText input("Words in a sentence"); in TEST()
96 const char* words[] = {"Words", "in", "a", "sentence"}; in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
Dtext_word_get_test.cpp92 AutoText input("Words in a sentence"); in TEST()
96 const char* words[] = {"Words", "in", "a", "sentence"}; in TEST()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/break_rules/
Dsentence.txt6 # file: sentence.txt
8 type = sentence; # one of grapheme | word | line | sentence
/third_party/icu/icu4c/source/test/testdata/break_rules/
Dsentence.txt6 # file: sentence.txt
8 type = sentence; # one of grapheme | word | line | sentence
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/test/rbbi/break_rules/
Dsentence.txt6 # file: sentence.txt
8 type = sentence; # one of grapheme | word | line | sentence
/third_party/boost/boost/locale/boundary/
Dtypes.hpp42 sentence, ///< Analyse the text for Find sentence boundaries enumerator
116 case sentence: return sentence_mask; in boundary_rule()
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/
DOES_surfaceless_context.txt116 after the sentence:
122 Add the sentence:
130 In the introduction, after the sentence:
135 Add the sentence:
141 sentence
148 Add the sentence:
/third_party/icu/icu4c/source/test/cintltst/
Dcbiapts.c161 UBreakIterator *word, *sentence, *line, *character, *b, *bogus; in TestBreakIteratorCAPI() local
190 sentence = ubrk_open(UBRK_SENTENCE, "en_US", text, u_strlen(text), &status); in TestBreakIteratorCAPI()
319 pos = ubrk_first(sentence); in TestBreakIteratorCAPI()
320 pos = ubrk_current(sentence); in TestBreakIteratorCAPI()
322 pos = ubrk_last(sentence); in TestBreakIteratorCAPI()
326 pos = ubrk_first(sentence); in TestBreakIteratorCAPI()
327 to = ubrk_following( sentence, 0 ); in TestBreakIteratorCAPI()
329 to = ubrk_preceding( sentence, to ); in TestBreakIteratorCAPI()
331 if (ubrk_first(sentence)!=ubrk_current(sentence)) { in TestBreakIteratorCAPI()
373 ubrk_close(sentence); in TestBreakIteratorCAPI()
/third_party/openGLES/extensions/OES/
DOES_surfaceless_context.txt126 after the sentence:
132 Add the sentence:
140 In the introduction, after the sentence:
145 Add the sentence:
151 sentence
158 Add the sentence:
/third_party/EGL/extensions/NV/
DEGL_NV_n_buffer.txt80 Insert after third sentence of second paragraph of Section 2.2.2
87 Replace the third sentence of the EGL_RENDER_BUFFER description in
96 Change first sentence of third bullet point of eglQueryContext
103 Replace first sentence of eglSwapBuffers description in
/third_party/gettext/gettext-runtime/libasprintf/
DREADME29 the order of parts of a sentence. The POSIX printf formatted output
32 2. Translators are used to translate one string per sentence, not
33 multiple strings per sentence, and not C++ code statements.
/third_party/mindspore/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/
Dskip_gram_fp32.cc37 char sentence[] = "The quick brown fox jumps over the lazy dog"; in SkipGramTestInit() local
39 str.push_back({43, sentence}); in SkipGramTestInit()
/third_party/openGLES/extensions/EXT/
DEXT_separate_specular_color.txt118 In the first sentence, change "a color" to "colors". Rephrase the
162 After the sentence "The value of A produced by lighting is the
192 In the second sentence, change "If the color is" to "Those" and ",
193 it is" to "are". In the first sentence of the next paragraph,
201 - (3.8, p. 85) In the first paragraph, second sentence, insert
202 "primary" before RGBA. Insert after this sentence "Texturing does
225 changing the last sentence of the large paragraph in the middle
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_separate_specular_color.txt118 In the first sentence, change "a color" to "colors". Rephrase the
162 After the sentence "The value of A produced by lighting is the
192 In the second sentence, change "If the color is" to "Those" and ",
193 it is" to "are". In the first sentence of the next paragraph,
201 - (3.8, p. 85) In the first paragraph, second sentence, insert
202 "primary" before RGBA. Insert after this sentence "Texturing does
225 changing the last sentence of the large paragraph in the middle
/third_party/openGLES/extensions/3DFX/
D3DFX_tbuffer.txt68 Following the sentence "Mask bits that correspond to sample points
75 Following the sentence "Mask bits that correspond to sample points
82 Following the sentence "Mask bits that correspond to sample points
/third_party/skia/third_party/externals/opengl-registry/extensions/3DFX/
D3DFX_tbuffer.txt68 Following the sentence "Mask bits that correspond to sample points
75 Following the sentence "Mask bits that correspond to sample points
82 Following the sentence "Mask bits that correspond to sample points

12345678910>>...28