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

1 2 3

  /external/qemu/android/
gps.c 21 android_gps_send_nmea( const char* sentence )
23 if (sentence == NULL)
26 D("sending '%s'", sentence);
33 qemu_chr_write( android_gps_cs, (const void*)sentence, strlen(sentence) );
gps.h 21 extern void android_gps_send_nmea( const char* sentence );
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 45 send out NMEA sentence
51 Total length of the nmea sentence
78 Total length of the nmea sentence
123 char sentence[NMEA_SENTENCE_MAX_LENGTH] = {0}; local
124 char* pMarker = sentence;
125 int lengthRemaining = sizeof(sentence);
172 for (uint8_t i = 0; i < 12; i++) // only the first 12 sv go in sentence
207 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
208 loc_eng_nmea_send(sentence, length, loc_eng_data_p)
608 char sentence[NMEA_SENTENCE_MAX_LENGTH] = {0}; local
    [all...]
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 42 send out NMEA sentence
48 Total length of the nmea sentence
74 Total length of the nmea sentence
119 char sentence[NMEA_SENTENCE_MAX_LENGTH] = {0}; local
120 char* pMarker = sentence;
121 int lengthRemaining = sizeof(sentence);
168 for (uint8_t i = 0; i < 12; i++) // only the first 12 sv go in sentence
203 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
204 loc_eng_nmea_send(sentence, length, loc_eng_data_p)
604 char sentence[NMEA_SENTENCE_MAX_LENGTH] = {0}; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseSvnProperty.pl 322 long sentence that spans
331 value => "A\nlong sentence that spans\nmultiple lines.",
342 long sentence that spans
352 value => "A\r\nlong sentence that spans\r\nmultiple lines.",
363 long sentence that spans
372 value => "A\nlong sentence that spans\nmultiple lines.",
383 long sentence that spans
393 value => "A\r\nlong sentence that spans\r\nmultiple lines.",
444 long sentence that spans
453 value => "A\nlong sentence that spans\nmultiple lines."
    [all...]
parseSvnDiffFooter.pl 215 + This is an example sentence.
241 + This is an example sentence.
263 +This is an example sentence.
285 +This is an example sentence.
303 + This is an example sentence.
325 + This is an example sentence.
346 + This is an example sentence.
372 + This is an example sentence.
390 + This is an example sentence.
412 + This is an example sentence
    [all...]
parseSvnPropertyValue.pl 114 long sentence that spans
119 expectedReturn => ["A\nlong sentence that spans\nmultiple lines.", "\n"],
127 long sentence that spans
133 expectedReturn => ["A\r\nlong sentence that spans\r\nmultiple lines.", "\r\n"],
141 long sentence that spans
145 expectedReturn => ["A\nlong sentence that spans\nmultiple lines.", " + A single-line.\n"],
153 long sentence that spans
157 expectedReturn => ["A\nlong sentence that spans\nmultiple lines.", "Added: svn:executable\n"],
165 long sentence that spans
168 long sentence that span
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnClauseConverterJAJP.java 57 /** part of speech (end of clause/not end of sentence) */
61 /** part of speech (end of sentence) */
158 WnnSentence[] sentence = mSentenceBuffer; local
162 if (start != 0 && sentence[start-1] == null) {
176 if (sentence[idx] != null) {
178 if (sentence[idx].frequency > sentence[start-1].frequency + CLAUSE_COST + FREQ_LEARN) {
183 if (sentence[idx].frequency > CLAUSE_COST + FREQ_LEARN) {
194 /* get the clause which can be the end of the sentence */
197 /* get the clause which is not the end of the sentence */
237 WnnSentence sentence = consecutiveClauseConvert(input); local
    [all...]
OpenWnnEngineJAJP.java 438 WnnSentence sentence = null; local
440 sentence = mClauseConverter.consecutiveClauseConvert(input);
443 sentence = new WnnSentence(head, sentence);
445 if (sentence == null) {
449 StrSegmentClause[] ss = new StrSegmentClause[sentence.elements.size()];
452 Iterator<WnnClause> it = sentence.elements.iterator();
463 mConvertSentence = sentence;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
traverse_content.js 10 * 2. Move by sentence.
76 * If line and sentence navigation should break at <a> links.
96 * The string constant for sentence granularity.
100 cvox.TraverseContent.kSentence = 'sentence';
211 * @param {string} grain specifies "sentence", "word", "character",
254 // Fall through to default: extend by sentence
296 * @param {string} grain specifies "sentence", "word", "character",
339 // Fall through to default: extend by sentence
378 * Get the tag names that should break a sentence or line. Currently
379 * just an anchor 'A' should break a sentence or line if the breakAtLink
    [all...]
traverse_util.js 7 * next (or previous) character, word, sentence, line, or paragraph,
580 * Finds the next sentence, starting from endCursor. Upon exit,
581 * startCursor and endCursor will surround the next sentence.
584 * sentence.
586 * sentence. On exit, will point to the end of the returned string.
590 * that should break the sentence.
591 * @return {?string} The next sentence, or null if the bottom of the
607 * Finds the previous sentence, starting from startCursor. Upon exit,
608 * startCursor and endCursor will surround the previous sentence.
611 * sentence. On exit, will point to the start of the returned string
    [all...]
selection_util.js 39 sel.modify('extend', 'forward', 'sentence');
69 sel.modify('extend', 'backward', 'sentence');
81 * Cleans up a sentence selection by extending forward.
82 * In this context, a sentence selection is 'clean' when the focus
86 * @param {Selection} sel The sentence-length selection.
114 sel.modify('extend', 'forward', 'sentence');
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerTester.java 126 String sentence = local
131 wf.mMessage = sentence;
135 if (utter.equals(sentence)) {
  /external/chromium_org/third_party/icu/source/test/cintltst/
cbiapts.c 144 UBreakIterator *word, *sentence, *line, *character, *b, *bogus; local
173 sentence = ubrk_open(UBRK_SENTENCE, "en_US", text, u_strlen(text), &status);
175 log_err_status(status, "FAIL: Error in ubrk_open() for sentence breakiterator: %s\n", myErrorName(status));
179 log_verbose("PASS: Successfully opened sentence breakiterator\n");
301 log_verbose("\nTesting the functions for sentence\n");
302 ubrk_first(sentence);
303 pos = ubrk_current(sentence);
304 log_verbose("Current(sentence) = %d\n", (int32_t)pos);
305 pos = ubrk_last(sentence);
307 log_err("error ubrk_last for sentence did not return 49\n")
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cbiapts.c 144 UBreakIterator *word, *sentence, *line, *character, *b, *bogus; local
173 sentence = ubrk_open(UBRK_SENTENCE, "en_US", text, u_strlen(text), &status);
175 log_err_status(status, "FAIL: Error in ubrk_open() for sentence breakiterator: %s\n", myErrorName(status));
179 log_verbose("PASS: Successfully opened sentence breakiterator\n");
301 log_verbose("\nTesting the functions for sentence\n");
302 ubrk_first(sentence);
303 pos = ubrk_current(sentence);
304 log_verbose("Current(sentence) = %d\n", (int32_t)pos);
305 pos = ubrk_last(sentence);
307 log_err("error ubrk_last for sentence did not return 49\n")
    [all...]
  /external/chromium_org/third_party/mesa/src/docs/
MESA_multithread_makecurrent.spec 66 Replace the following sentence from section 2.2 Rendering Contexts:
78 Replace the following sentence from section 3.3.7 Rendering Contexts:
85 Replace the following sentence from section 3.5 Rendering Contexts:
157 21 February 2011 Eric Anholt - Include glXMakeCurrent() sentence
  /external/mesa3d/docs/
MESA_multithread_makecurrent.spec 66 Replace the following sentence from section 2.2 Rendering Contexts:
78 Replace the following sentence from section 3.3.7 Rendering Contexts:
85 Replace the following sentence from section 3.5 Rendering Contexts:
157 21 February 2011 Eric Anholt - Include glXMakeCurrent() sentence
  /external/chromium_org/chrome/browser/profile_resetter/
jtl_interpreter.cc 37 // sentence is evaluated on.
39 const std::vector<Operation*>& sentence,
43 sentence_(sentence),
96 // The sentence to be executed.
122 // sentence on other nodes.
713 ScopedVector<Operation> sentence; local
714 if (!parser.ParseNextSentence(&sentence)) {
719 &hasher, sentence.get(), input_, working_memory_.get());
  /external/chromium_org/chrome/common/extensions/docs/examples/api/ttsEngine/console_tts_engine/
console_tts_engine.js 54 sendTtsEvent({'type': 'sentence', 'charIndex': index});
  /external/chromium_org/v8/test/intl/break-iterator/
en-break.js 28 // Segment plain English sentence and check results.
zh-break.js 28 // Segment plain Chinese sentence and check results.
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/walkers/
abstract_selection_walker.js 7 * For example, walking at the sentence, word, or character level.
abstract_walker.js 56 * navigates across sentences, this would return the selection of the sentence
59 * the last sentence in the dom, we would return null.
  /external/chromium_org/v8/test/mjsunit/
md5.js 187 And hear the sentence of your moved prince.\n\
  /external/srec/srec/test/SRecTest/src/
SRecTest.c     [all...]

Completed in 708 milliseconds

1 2 3