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

1 2

  /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...]
  /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/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
messages.cc 53 loc->start_pos(), *str);
77 start = loc->start_pos();
preparse-data.cc 62 void FunctionLoggingParserRecorder::LogMessage(int start_pos,
70 function_store_.Add(start_pos);
flags.cc 405 int start_pos = (value == NULL) ? i : i - 1; local
406 int js_argc = *argc - start_pos;
412 js_argv[k - start_pos] = StrDup(argv[k]);
  /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/webkit/Source/WebKit/android/content/
PhoneEmailDetector.h 61 size_t* start_pos,
content_detector.h 82 // the input iterators are returned in start_pos and end_pos.
86 size_t* start_pos,
address_detector.h 54 size_t* start_pos,
PhoneEmailDetector.cpp 72 size_t* start_pos,
87 *start_pos = m_findState.mStartResult;
  /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...]
phLlcNfc_DataTypes.h 460 uint8_t start_pos; member in struct:phLlcNfc_StoreIFrame
  /external/dbus/dbus/
dbus-marshal-recursive.h 46 dbus_uint32_t array_len_offset : 3; /**< bytes back from start_pos that len ends */
56 int start_pos; /**< for array readers, the start of the array values */ member in struct:DBusTypeReader::__anon6031::__anon6032
82 int start_pos; /**< position of first element in the array */ member in struct:DBusTypeWriter::__anon6033::__anon6034
dbus-marshal-recursive.c 195 sub->u.array.start_pos = _DBUS_INT_MAX;
200 the offset back from start_pos to end of the len */
202 ((reader)->u.array.start_pos - ((int)(reader)->array_len_offset) - 4)
221 _dbus_assert (reader->u.array.start_pos - len_pos - 4 < 8);
246 sub->u.array.start_pos = sub->value_pos;
247 _dbus_assert ((sub->u.array.start_pos - (len_pos + 4)) < 8); /* only 3 bits in array_len_offset */
248 sub->array_len_offset = sub->u.array.start_pos - (len_pos + 4);
253 sub->u.array.start_pos,
303 end_pos = reader->u.array.start_pos + array_reader_get_array_len (reader);
306 _dbus_assert (reader->value_pos >= reader->u.array.start_pos);
    [all...]
  /external/chromium/webkit/glue/
dom_serializer_unittest.cc 254 int start_pos = pos + 7; local
257 if (content[start_pos++] == L'=')
261 if (content[start_pos] > 0x0020)
263 ++start_pos;
268 int end_pos = start_pos;
276 charset_info = content.substr(start_pos, end_pos - start_pos);
    [all...]
multipart_response_delegate_unittest.cc 310 const int start_pos; // offset in data member in struct:__anon4381::TestChunk
338 ASSERT_TRUE(chunks[i].start_pos < chunks[i].end_pos);
339 string chunk = data.substr(chunks[i].start_pos,
340 chunks[i].end_pos - chunks[i].start_pos);
  /external/bluetooth/glib/glib/
gregex.h 231 gint *start_pos,
237 gint *start_pos,
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 112 string::size_type start_pos = 0; local
115 pos = s.find(oldsub, start_pos);
119 res->append(s, start_pos, pos - start_pos);
121 start_pos = pos + oldsub.size(); // start searching again after the "old"
123 res->append(s, start_pos, s.length() - start_pos);
    [all...]
  /external/chromium/googleurl/src/
gurl.cc 433 const char* start_pos = spec_.data() + parsed_.host.begin + local
436 if (!url_util::LowerCaseEqualsASCII(start_pos,
446 '.' != *(start_pos - 1))
  /external/libvpx/vp8/encoder/
firstpass.c 143 //FIRSTPASS_STATS *start_pos;
145 /*start_pos = cpi->stats_in;
164 reset_fpf_position(cpi, start_pos);*/
1166 FIRSTPASS_STATS *start_pos; local
1342 FIRSTPASS_STATS *start_pos; local
1970 FIRSTPASS_STATS *start_pos; local
2192 FIRSTPASS_STATS *start_pos; local
    [all...]
  /external/aac/libSBRenc/src/
env_est.cpp 445 over slots (start_pos) to (stop_pos)
453 INT start_pos, /*! start slot */
479 for (l = start_pos; l < border_pos; l++) {
580 INT no_of_bands, start_pos, stop_pos, li, ui; local
624 start_pos = timeStep * frame_info->borders[i];
692 count[j] = stop_pos - start_pos;
699 start_pos,
721 start_pos,
737 count[j] = (stop_pos - start_pos) * (ui - li);
741 start_pos,
    [all...]

Completed in 657 milliseconds

1 2