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

1 2 3

  /external/chromium/chrome/browser/sessions/
session_id.cc 7 static SessionID::id_type next_id = 1; variable
10 id_ = next_id++;
  /external/chromium_org/android_webview/browser/
aw_download_manager_delegate.cc 45 static uint32 next_id = content::DownloadItem::kInvalidId + 1; local
46 callback.Run(next_id++);
  /external/chromium_org/chrome/browser/android/
resource_mapper.cc 39 int next_id = 0; local
41 #define DEFINE_RESOURCE_ID(c_id,java_id) g_id_map.Get()[c_id] = next_id++;
  /external/chromium_org/chrome/browser/sessions/
session_id.cc 9 static SessionID::id_type next_id = 1; variable
12 id_ = next_id++;
  /external/chromium/chrome/browser/ui/views/
wrench_menu.h 54 // |PopulateMenu| for any submenu. |next_id| is incremented for every menu
58 int* next_id);
66 int* next_id);
wrench_menu.cc 575 int next_id = 1; local
576 PopulateMenu(root_.get(), model, &next_id);
650 int* next_id) {
656 AppendMenuItem(parent, model, index, model->GetTypeAt(index), next_id);
659 PopulateMenu(item, model->GetSubmenuModelAt(index), next_id);
686 int* next_id) {
687 int id = (*next_id)++;
  /external/chromium_org/ash/launcher/
launcher_model.h 55 LauncherID next_id() const { return next_id_; } function in class:ash::LauncherModel
launcher_model_unittest.cc 224 LauncherID id = model.next_id();
227 EXPECT_EQ(model.next_id(), id);
234 LauncherID id2 = model.next_id();
241 EXPECT_NE(model.next_id(), id2);
launcher_unittest.cc 93 LauncherID first_item_id = model->next_id();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
compute_memory_pool.h 49 int64_t next_id; ///For generating unique IDs for memory chunks member in struct:compute_memory_pool
  /external/mesa3d/src/gallium/drivers/r600/
compute_memory_pool.h 49 int64_t next_id; ///For generating unique IDs for memory chunks member in struct:compute_memory_pool
  /external/chromium/chrome/browser/net/
passive_log_collector_unittest.cc 215 uint32 next_id = 0; local
216 NetLog::Source stream_job_source(NetLog::SOURCE_HTTP_STREAM_JOB, next_id++);
217 NetLog::Source url_request_source(NetLog::SOURCE_URL_REQUEST, next_id++);
318 NetLog::Source(NetLog::SOURCE_HTTP_STREAM_JOB, next_id++),
340 NetLog::Source(NetLog::SOURCE_URL_REQUEST, next_id++),
365 uint32 next_id = 0; local
366 NetLog::Source socket_source(NetLog::SOURCE_SOCKET, next_id++);
367 NetLog::Source stream_job_source(NetLog::SOURCE_HTTP_STREAM_JOB, next_id++);
416 NetLog::Source(NetLog::SOURCE_SOCKET, next_id++),
434 NetLog::Source(NetLog::SOURCE_HTTP_STREAM_JOB, next_id++)
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/extensions/
extension_icon_source.cc 125 static int next_id = 0; local
126 if (!ParseData(path, ++next_id, callback)) {
135 ExtensionIconRequest* request = GetData(next_id);
140 LoadIconFailed(next_id);
142 LoadExtensionImage(icon, next_id);
  /external/chromium_org/android_webview/browser/renderer_host/
aw_render_view_host_ext.cc 41 static int next_id = 1; local
42 int this_id = next_id++;
  /external/chromium_org/chrome/browser/ui/views/
wrench_menu.h 112 // |PopulateMenu| for any submenu. |next_id| is incremented for every menu
116 int* next_id);
126 int* next_id,
wrench_menu.cc 821 int next_id = 1; local
822 PopulateMenu(root_, model, &next_id);
823 first_bookmark_command_id_ = next_id + 1;
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
command_buffer_service.cc 137 static int32 next_id = 1; local
138 *id = next_id++;
  /external/qemu/hw/
bt-l2cap.c 43 int next_id; member in struct:l2cap_instance_s
259 l2cap->last_id = l2cap->next_id;
260 l2cap->next_id = l2cap->next_id == 255 ? 1 : l2cap->next_id + 1;
790 if (!id || (id != l2cap->last_id && id != l2cap->next_id)) {
796 l2cap->next_id = id;
798 if (id == l2cap->next_id) {
799 l2cap->last_id = l2cap->next_id;
800 l2cap->next_id = l2cap->next_id == 255 ? 1 : l2cap->next_id + 1
    [all...]
  /external/chromium/net/tools/testserver/
xmppserver.py 184 next_id = "%s.%s" % (self._prefix, self._id)
186 return next_id
284 next_id = self._id_generator.GetNextId()
285 stream_data = self._STREAM_DATA % (self._domain, next_id)
  /external/chromium_org/content/shell/
shell_download_manager_delegate.cc 104 static uint32 next_id = DownloadItem::kInvalidId + 1; local
105 callback.Run(next_id++);
  /external/valgrind/main/coregrind/
m_stacks.c 93 static UWord next_id; /* Next id we hand out to a newly registered stack */ variable
191 i->id = next_id++;
  /external/chromium_org/chrome/browser/download/
chrome_download_manager_delegate.cc 177 void ChromeDownloadManagerDelegate::SetNextId(uint32 next_id) {
180 DCHECK_NE(content::DownloadItem::kInvalidId, next_id);
181 next_download_id_ = next_id;
  /external/chromium_org/third_party/mesa/src/src/glx/tests/
create_context_unittest.cpp 38 static uint32_t next_id; variable
70 return next_id++;
137 next_id = 99;
  /external/mesa3d/src/glx/tests/
create_context_unittest.cpp 38 static uint32_t next_id; variable
70 return next_id++;
137 next_id = 99;
  /external/chromium_org/ash/shell/
window_watcher.cc 111 id_to_window_[model->next_id()] = new_window;

Completed in 428 milliseconds

1 2 3