Searched refs:start_index (Results 1 - 25 of 157) sorted by relevance

1234567

/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Derror.py43 self.start_index = token.start_index
45 self.start_index = 0
48 self.start_index += self.position.start
64 return a.start_index - b.start_index
/external/chromium_org/third_party/closure_linter/closure_linter/common/
H A Derror.py43 self.start_index = token.start_index
45 self.start_index = 0
48 self.start_index += self.position.start
64 return a.start_index - b.start_index
/external/chromium_org/chrome/browser/
H A Dcrash_upload_list_win.cc70 size_t start_index = message.find(pattern_prefix); local
71 if (start_index != std::wstring::npos) {
72 start_index += pattern_prefix.size();
73 size_t end_index = message.find(pattern_suffix, start_index);
76 message.substr(start_index, end_index - start_index);
/external/chromium_org/ash/shelf/
H A Dshelf_model_observer.h26 virtual void ShelfItemMoved(int start_index, int target_index) = 0;
H A Dshelf_item_delegate_manager.h44 virtual void ShelfItemMoved(int start_index, int targetindex) OVERRIDE;
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Djavascriptstatetracker_test.py79 self.assertEquals(0, start_token.start_index)
83 self.assertEquals(0, end_token.start_index)
102 self.assertEquals(10, start_token.start_index)
106 self.assertEquals(0, end_token.start_index)
135 self.assertEquals(10, start_token.start_index)
139 self.assertEquals(0, end_token.start_index)
157 self.assertEquals(12, start_token.start_index)
161 self.assertEquals(2, end_token.start_index)
H A Dtokenutil.py273 if new_token.start_index is None:
275 new_token.start_index = token.start_index
279 new_token.start_index = (previous_token.start_index +
282 new_token.start_index = 0
286 iterator.start_index += len(new_token.string)
315 if new_token.start_index is None:
317 new_token.start_index = token.start_index
[all...]
/external/libnfc-nxp/src/
H A DphLlcNfc_Timer.c377 uint8_t start_index = 0; local
388 while (start_index < (timer_count - no_of_guard_to_del))
391 ps_timer_info->guard_to_value[start_index] = (uint16_t)
393 (no_of_guard_to_del + start_index)]);
395 ps_timer_info->iframe_send_count[start_index] = (uint8_t)
397 (no_of_guard_to_del + start_index)]);
399 PH_LLCNFC_DEBUG("GUARD TIMER NS INDEX DELETED : 0x%02X\n", ps_timer_info->timer_ns_value[start_index]);
401 ps_timer_info->timer_ns_value[start_index] = (uint8_t)
403 (no_of_guard_to_del + start_index)]);
405 ps_timer_info->frame_type[start_index]
710 uint8_t start_index = 0; local
[all...]
/external/opencv/cv/src/
H A Dcvapprox.cpp551 right_slice.start_index = count;
557 slice.start_index = 0;
571 right_slice.start_index = 0;
576 cvSetSeqReaderPos( &reader, right_slice.start_index, 1 );
592 right_slice.start_index = j;
602 slice.start_index = cvGetSeqReaderPos( &reader );
603 slice.end_index = right_slice.start_index += slice.start_index;
605 right_slice.start_index -= right_slice.start_index >
[all...]
/external/chromium_org/ui/base/webui/
H A Dweb_ui_util.cc62 int start_index) {
69 CHECK(args->GetDouble(start_index++, &button));
70 CHECK(args->GetBoolean(start_index++, &alt_key));
71 CHECK(args->GetBoolean(start_index++, &ctrl_key));
72 CHECK(args->GetBoolean(start_index++, &meta_key));
73 CHECK(args->GetBoolean(start_index++, &shift_key));
61 GetDispositionFromClick(const base::ListValue* args, int start_index) argument
H A Dweb_ui_util.h34 // (in that order), starting at |start_index|.
36 GetDispositionFromClick(const base::ListValue* args, int start_index);
/external/bluetooth/bluedroid/bta/include/
H A Dbta_gattc_co.h98 UINT16 start_index, UINT16 conn_id);
/external/chromium_org/chrome/browser/chromeos/login/easy_unlock/
H A Deasy_unlock_remove_keys_operation.h25 size_t start_index,
H A Deasy_unlock_remove_keys_operation.cc17 size_t start_index,
21 key_index_(start_index),
15 EasyUnlockRemoveKeysOperation( const UserContext& user_context, size_t start_index, const RemoveKeysCallback& callback) argument
/external/chromium_org/chromeos/ime/
H A Dcomposition_text_unittest.cc44 EXPECT_EQ(text.underline_attributes()[i].start_index,
45 text2.underline_attributes()[i].start_index);
H A Dcomposition_text.h27 uint32 start_index; // The inclusive start index. member in struct:chromeos::CompositionText::UnderlineAttribute
/external/chromium_org/net/base/
H A Dupload_data_stream.h103 int InitInternal(int start_index, const CompletionCallback& callback);
106 void ResumePendingInit(int start_index,
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Daudio_multi_vector.cc130 size_t AudioMultiVector::ReadInterleavedFromIndex(size_t start_index,
137 assert(start_index <= Size());
138 start_index = std::min(start_index, Size());
139 if (length + start_index > Size()) {
140 length = Size() - start_index;
144 memcpy(destination, &(*this)[0][start_index], length * sizeof(int16_t));
149 destination[index] = (*this)[channel][i + start_index];
/external/chromium_org/ui/app_list/test/
H A Dapp_list_test_model.cc80 int start_index = static_cast<int>(top_level_item_list()->item_count()); local
82 CreateAndAddItem(GetItemName(start_index + i));
87 int start_index = static_cast<int>(top_level_item_list()->item_count()); local
88 AppListTestItem* item = CreateAndAddItem(GetItemName(start_index));
91 AppListTestItem* new_item = CreateAndAddItem(GetItemName(start_index + i));
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dtokenutil.py266 if new_token.start_index is None:
268 new_token.start_index = token.start_index + len(token.string)
270 new_token.start_index = 0
274 iterator.start_index += len(new_token.string)
374 return token1.start_index - token2.start_index
/external/chromium_org/v8/src/
H A Duri.h49 Isolate* isolate, Handle<String> string, int start_index);
86 Isolate* isolate, Handle<String> string, int start_index) {
93 for (int i = start_index; i < length; unescaped_length++) {
103 DCHECK(start_index < length);
105 isolate->factory()->NewProperSubString(string, 0, start_index);
115 for (int i = start_index; i < length; dest_position++) {
127 for (int i = start_index; i < length; dest_position++) {
85 UnescapeSlow( Isolate* isolate, Handle<String> string, int start_index) argument
/external/bluetooth/bluedroid/btif/co/
H A Dbta_gattc_co.c112 void bta_gattc_co_cache_load(BD_ADDR server_bda, UINT16 evt, UINT16 start_index, UINT16 conn_id) argument
118 if (sCacheFD && (0 == fseek(sCacheFD, start_index * sizeof(tBTA_GATTC_NV_ATTR), SEEK_SET)))
124 BTIF_TRACE_DEBUG("%s() - sCacheFD=%p, start_index=%d, read=%d, status=%d",
125 __FUNCTION__, sCacheFD, start_index, num_attr, status);
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dreadable_font_data.h201 int32_t SearchUShort(int32_t start_index,
218 int32_t SearchUShort(int32_t start_index,
236 int32_t SearchULong(int32_t start_index,
/external/pdfium/fpdfsdk/include/
H A Dfpdftext.h113 // start_index - Index for the start characters.
122 DLLEXPORT int STDCALL FPDFText_GetText(FPDF_TEXTPAGE text_page, int start_index, int count, unsigned short* result);
128 // start_index - Index for the start characters.
138 DLLEXPORT int STDCALL FPDFText_CountRects(FPDF_TEXTPAGE text_page, int start_index, int count);
183 // start_index - Start from this character. -1 for end of the page.
188 unsigned long flags, int start_index);
/external/sfntly/cpp/src/sfntly/data/
H A Dreadable_font_data.h201 int32_t SearchUShort(int32_t start_index,
218 int32_t SearchUShort(int32_t start_index,
236 int32_t SearchULong(int32_t start_index,

Completed in 1694 milliseconds

1234567