/external/chromium_org/chrome/browser/ui/views/bookmarks/ |
bookmark_menu_delegate.h | 75 // Makes the menu for |node| the active menu. |start_index| is the index of 77 void SetActiveMenu(const BookmarkNode* node, int start_index);
|
/external/chromium_org/net/base/ |
upload_data_stream.h | 103 int InitInternal(int start_index, const CompletionCallback& callback); 106 void ResumePendingInit(int start_index,
|
/external/chromium_org/ppapi/proxy/ |
pdf_resource_unittest.cc | 83 ASSERT_EQ(1, results[0].start_index); 85 ASSERT_EQ(7, results[1].start_index);
|
/external/chromium_org/third_party/closure_linter/closure_linter/common/ |
tokens.py | 44 start_index: The character index in the line where this token starts. 72 self.start_index = None
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
audio_multi_vector.h | 80 // Like ReadInterleaved() above, but reads from |start_index| instead of from 82 virtual size_t ReadInterleavedFromIndex(size_t start_index,
|
dsp_helper.h | 69 // |start_index|. 71 size_t start_index,
|
/external/chromium_org/tools/relocation_packer/src/ |
run_length_encoder.cc | 68 size_t start_index, 77 for (size_t i = start_index; i < end_index; i += 2) {
|
/external/chromium_org/third_party/markdown/ |
preprocessors.py | 132 def _recursive_tagfind(self, ltag, rtag, start_index, block): 134 i = block.find(rtag, start_index) 137 j = block.find(ltag, start_index) 144 start_index = self._recursive_tagfind(ltag, rtag, j + 1, block) 145 if start_index == -1:
|
/external/bison/m4/ |
printf.m4 | 152 strisnan (const char *string, size_t start_index, size_t end_index) 154 if (start_index < end_index) 156 if (string[start_index] == '-') 157 start_index++; 158 if (start_index + 3 <= end_index 159 && memcmp (string + start_index, "nan", 3) == 0) 161 start_index += 3; 162 if (start_index == end_index 163 || (string[start_index] == '(' && string[end_index - 1] == ')')) 275 strisnan (const char *string, size_t start_index, size_t end_index [all...] |
/external/chromium_org/sync/internal_api/public/base/ |
unique_position.cc | 512 static bool IsRepeatedCharPrefix(const std::string& chars, size_t start_index) { 513 return chars[start_index] == chars[start_index+1] 514 && chars[start_index] == chars[start_index+2] 515 && chars[start_index] == chars[start_index+3];
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
argparse.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
argparse.py | [all...] |
/external/bluetooth/bluedroid/bta/include/ |
bta_gattc_co.h | 98 UINT16 start_index, UINT16 conn_id);
|
/external/chromium_org/chrome/test/chromedriver/ |
capabilities.cc | 412 size_t start_index = 0; local 414 start_index = 2; 415 name = unparsed_switch.substr(start_index, equals_index - start_index);
|
/external/chromium_org/ppapi/api/private/finish_writing_these/ |
ppb_pdf.idl | 69 int32_t start_index;
|
/external/chromium_org/ppapi/c/private/ |
ppb_pdf.h | 88 int start_index; member in struct:PP_PrivateFindResult
|
/external/chromium_org/ui/base/ime/ |
composition_text_util_pango_unittest.cc | 126 pango_attr->start_index =
|
/external/aac/libSBRenc/src/ |
env_est.h | 120 int start_index; member in struct:__anon4856 161 int start_index,
|
/external/pdfium/fpdfsdk/src/ |
fpdftext.cpp | 158 DLLEXPORT FPDF_SCHHANDLE STDCALL FPDFText_FindStart(FPDF_TEXTPAGE text_page,FPDF_WIDESTRING findwhat,unsigned long flags,int start_index)
165 textpageFind->FindFirst(CFX_WideString::FromUTF16LE(findwhat),flags,start_index);
local
|
/external/chromium_org/ui/base/clipboard/ |
clipboard_win.cc | 505 size_t start_index = std::string::npos; local 508 &start_index, &end_index); 512 if (start_index == std::string::npos || 517 if (start_index < html_start || end_index < start_index) 521 offsets.push_back(start_index - html_start);
|
/external/chromium_org/v8/src/ |
jsregexp.cc | [all...] |
/art/runtime/ |
utils.cc | 927 unsigned int start_index = 0; local 931 while (start_index < s.size()) { 932 if (!isspace(s[start_index])) { 935 start_index++; 939 while (end_index >= start_index) { 947 if (end_index < start_index) { 950 // Start_index is the first non-space, end_index is the last one. 951 return s.substr(start_index, end_index - start_index + 1); [all...] |
/external/chromium_org/chrome/browser/ui/tabs/ |
tab_strip_model.cc | 577 int start_index, 580 DCHECK(ContainsIndex(start_index)); 582 // Check tabs after start_index first. 583 for (int i = start_index + 1; i < count(); ++i) { 587 // Then check tabs before start_index, iterating backwards. 588 for (int i = start_index - 1; i >= 0; --i) { 596 int start_index) const { 598 DCHECK(ContainsIndex(start_index)); 600 for (int i = contents_data_.size() - 1; i > start_index; --i) { [all...] |
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
fpdf_render_pattern.cpp | 344 int min_x, max_x, start_index, end_index;
local 348 start_index = 0;
353 start_index = 1;
364 FX_FLOAT r_unit = (r[end_index] - r[start_index]) / (max_x - min_x);
365 FX_FLOAT g_unit = (g[end_index] - g[start_index]) / (max_x - min_x);
366 FX_FLOAT b_unit = (b[end_index] - b[start_index]) / (max_x - min_x);
367 FX_FLOAT R = r[start_index] + (start_x - min_x) * r_unit;
368 FX_FLOAT G = g[start_index] + (start_x - min_x) * g_unit;
369 FX_FLOAT B = b[start_index] + (start_x - min_x) * b_unit;
[all...] |
/external/chromium_org/content/browser/accessibility/ |
browser_accessibility_win.h | 497 LONG start_index, 502 LONG start_index, 682 unsigned int start_index, 690 unsigned int start_index, 697 CONTENT_EXPORT STDMETHODIMP scrollToSubstring(unsigned int start_index,
|