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

1 2 3 4

  /packages/inputmethods/PinyinIME/jni/share/
splparser.cpp 31 uint16 spl_idx[], uint16 start_pos[],
45 if (NULL != start_pos)
46 start_pos[0] = 0;
60 if (NULL != start_pos)
61 start_pos[idx_num] = str_pos;
71 if (NULL != start_pos)
72 start_pos[idx_num] = str_pos;
114 if (NULL != start_pos)
115 start_pos[idx_num] = str_pos;
134 if (NULL != start_pos)
294 uint16 start_pos[3]; local
310 uint16 start_pos[3]; local
    [all...]
  /external/chromium_org/content/renderer/android/
address_detector.cc 48 const string16::const_iterator& end, size_t* start_pos, size_t* end_pos,
50 if (address_parser::FindAddress(begin, end, start_pos, end_pos)) {
52 GetContentText(string16(begin + *start_pos, begin + *end_pos)));
address_detector.h 24 size_t* start_pos,
email_detector.h 28 size_t* start_pos,
phone_number_detector.cc 59 size_t* start_pos,
79 // Need to return start_pos and end_pos relative to a UTF16 encoding.
80 *start_pos = UTF8ToUTF16(utf8_input.substr(0, match.start())).length();
81 *end_pos = *start_pos + UTF8ToUTF16(match.raw_string()).length();
phone_number_detector.h 29 size_t* start_pos,
email_detector.cc 47 size_t* start_pos,
60 *start_pos = matcher->start(status);
content_detector.h 45 // the input iterators are returned in start_pos and end_pos.
49 size_t* start_pos,
  /external/chromium_org/content/common/android/
address_parser.h 23 // position to search from, |end| is the position to search to. |start_pos|
28 size_t* start_pos,
address_parser.cc 62 size_t* start_pos,
196 *start_pos = words[0].begin - begin;
  /packages/inputmethods/PinyinIME/jni/include/
splparser.h 43 uint16 start_pos[], uint16 max_size, bool &last_is_pre);
49 uint16 start_pos[], uint16 max_size, bool &last_is_pre);
54 uint16 start_pos[], uint16 max_size, bool &last_is_pre);
59 uint16 splidx[], uint16 start_pos[],
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
Lexer.java 60 int start_pos = this.pos; local
163 start_pos + 1);
178 start_pos + 1);
192 start_pos + 1);
206 start_pos + 1);
220 start_pos + 1);
234 start_pos + 1);
248 start_pos + 1);
262 start_pos + 1);
277 start_pos + 1)
    [all...]
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_model_test_utils.cc 42 std::string::size_type start_pos) {
46 std::string::size_type end_pos = model_string.find(' ', start_pos);
48 std::string::size_type part_length = end_pos - start_pos;
49 std::string node_name = model_string.substr(start_pos, part_length);
70 start_pos = end_pos;
71 end_pos = model_string.find(' ', start_pos);
118 std::string::size_type start_pos = 0; local
120 AddNodesFromString(model, node, model_string, start_pos);
  /external/v8/src/
messages.h 70 int start_pos,
73 start_pos_(start_pos),
78 int start_pos() const { return start_pos_; } function in class:v8::internal::MessageLocation
  /external/chromium_org/v8/src/
messages.h 70 int start_pos,
73 start_pos_(start_pos),
78 int start_pos() const { return start_pos_; } function in class:v8::internal::MessageLocation
preparse-data.cc 62 void FunctionLoggingParserRecorder::LogMessage(int start_pos,
70 function_store_.Add(start_pos);
  /external/aac/libSBRdec/src/
env_calc.h 155 int start_pos, int next_pos,
162 int start_pos,
env_calc.cpp 163 int start_pos, int next_pos,
172 int start_pos, int next_pos,
612 UCHAR start_pos = hHeaderData->timeStep * borders[i]; /* Start-position in time (subband sample) for current envelope. */ local
649 start_pos, stop_pos,
658 start_pos, stop_pos,
    [all...]
  /external/chromium_org/ui/base/ime/win/
tsf_text_store.cc 296 const uint32 start_pos = acp_start - committed_size_; local
299 if (start_pos == end_pos) {
305 if (start_pos == 0) {
314 } else if (text_input_client_->GetCompositionCharacterBounds(start_pos - 1,
324 if (text_input_client_->GetCompositionCharacterBounds(start_pos,
342 if (start_pos == 0) {
391 const LONG start_pos = selection_.start(); local
393 const LONG new_end_pos = start_pos + text_buffer_size;
399 *acp_start = start_pos;
411 DCHECK_LE(start_pos, end_pos)
625 const LONG start_pos = selection_buffer[0].acpStart; local
801 LONG start_pos, length; local
    [all...]
  /packages/apps/Browser/tools/
get_search_engines.py 114 start_pos = self.chrome_data.find('{', search_obj.start()) + 1;
115 end_pos = self.chrome_data.find('};', start_pos);
116 engine_data_str = self.chrome_data[start_pos:end_pos]
122 start_pos = line.find(' // ')
123 if start_pos != -1:
124 line = line[:start_pos]
  /external/libnfc-nxp/src/
phLlcNfc_Frame.c 761 ps_store_frame->start_pos) % PH_LLCNFC_MOD_NS_NR))
865 ps_store_frame->start_pos))
922 (((ns_rejected != ps_store_frame->start_pos) &&
    [all...]
  /external/chromium_org/content/common/gpu/media/
video_decode_accelerator_unittest.cc 503 // to the decoder, starting at |start_pos| and returning
505 std::string GetBytesForFirstFragments(size_t start_pos, size_t* end_pos);
507 // |start_pos| & |num_fragments_per_decode_|).
508 std::string GetBytesForNextFragments(size_t start_pos, size_t* end_pos);
510 void GetBytesForNextNALU(size_t start_pos, size_t* end_pos); // For h.264.
512 size_t start_pos, size_t* end_pos); // For VP8.
831 size_t start_pos, size_t* end_pos) {
833 *end_pos = start_pos;
840 *end_pos = start_pos;
844 return GetBytesForNextFragments(start_pos, end_pos)
    [all...]
  /external/chromium_org/ppapi/examples/video_decode/
video_decode.cc 112 static void GetNextNALUBoundary(size_t start_pos, size_t* end_pos);
308 size_t start_pos, size_t* end_pos) {
309 assert(LookingAtNAL(kData, start_pos));
310 *end_pos = start_pos;
337 size_t start_pos = encoded_data_next_pos_to_decode_; local
339 GetNextNALUBoundary(start_pos, &end_pos);
340 pp::Buffer_Dev* buffer = new pp::Buffer_Dev(gles2_, end_pos - start_pos);
344 bitstream_buffer.size = end_pos - start_pos;
346 memcpy(buffer->data(), kData + start_pos, end_pos - start_pos);
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
unicodetext.cc 320 const_iterator start_pos) const {
321 assert(start_pos.utf8_data() >= utf8_data());
322 assert(start_pos.utf8_data() <= utf8_data() + utf8_length());
323 return UnsafeFind(look, start_pos);
331 const UnicodeText& look, const_iterator start_pos) const {
337 searching.find(look_piece, start_pos.utf8_data() - utf8_data());
  /external/chromium_org/ui/gfx/
interpolated_transform.h 166 InterpolatedTranslation(const gfx::Point& start_pos,
168 InterpolatedTranslation(const gfx::Point& start_pos,

Completed in 576 milliseconds

1 2 3 4