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

1 2

  /external/chromium_org/components/sessions/
session_id.cc 7 static SessionID::id_type next_id = 1; variable
10 id_ = next_id++;
  /external/chromium_org/extensions/renderer/
id_generator_custom_bindings.cc 20 static int32_t next_id = 0; local
21 ++next_id;
24 if (next_id == 0)
25 next_id = 1;
26 args.GetReturnValue().Set(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/ash/shelf/
shelf_model.h 65 ShelfID next_id() const { return next_id_; } function in class:ash::ShelfModel
  /external/chromium_org/chromecast/shell/browser/
cast_download_manager_delegate.cc 22 static uint32 next_id = content::DownloadItem::kInvalidId + 1; local
23 callback.Run(next_id++);
  /external/chromium_org/mojo/services/test_service/
test_request_tracker_impl.h 25 uint64_t next_id; member in struct:mojo::test::TrackingContext
  /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_org/android_webview/browser/renderer_host/
aw_render_view_host_ext.cc 40 static int next_id = 1; local
41 int this_id = next_id++;
  /external/chromium_org/content/shell/browser/
shell_download_manager_delegate.cc 112 static uint32 next_id = DownloadItem::kInvalidId + 1; local
113 callback.Run(next_id++);
  /external/chromium_org/gpu/command_buffer/service/
command_buffer_service.cc 126 static int32 next_id = 1; local
127 *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;
  /frameworks/base/libs/usb/tests/accessorytest/
hid.c 39 static int next_id = 1; variable
85 id = next_id++;
  /external/valgrind/main/coregrind/
m_stacks.c 96 static UWord next_id; /* Next id we hand out to a newly registered stack */ variable
194 i->id = next_id++;
  /external/chromium_org/cc/resources/
tile_manager_perftest.cc 362 int next_id = id_ + 1; local
368 host_impl_.pending_tree(), next_id, picture_pile_);
379 ++next_id;
  /external/chromium_org/chrome/browser/ui/app_list/
extension_app_item.cc 213 std::string prev_id, next_id; local
215 next_id = next->extension_id();
216 page = sorting->GetPageOrdinal(next_id);
223 // Only set |next_id| if on the same page, otherwise just insert after prev.
225 next_id = next->extension_id();
229 sorting->OnExtensionMoved(extension_id_, prev_id, next_id);
  /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/content/browser/download/
download_item_impl_unittest.cc 223 static uint32 next_id = DownloadItem::kInvalidId + 1; local
231 &delegate_, next_id++, *(info_.get()), net::BoundNetLog());
    [all...]
download_manager_impl.cc 267 static uint32 next_id = content::DownloadItem::kInvalidId + 1; local
268 callback.Run(next_id++);
  /external/chromium_org/gpu/command_buffer/tests/
gl_manager.cc 334 static int32 next_id = 1; local
335 int32 new_id = next_id++;
  /external/chromium_org/remoting/host/setup/
me2me_native_messaging_host_unittest.cc 444 int next_id = 0; local
446 message.SetInteger("id", next_id++);
450 message.SetInteger("id", next_id++);
454 message.SetInteger("id", next_id++);
461 message.SetInteger("id", next_id++);
465 message.SetInteger("id", next_id++);
469 message.SetInteger("id", next_id++);
473 message.SetInteger("id", next_id++);
477 message.SetInteger("id", next_id++);
485 message.SetInteger("id", next_id++)
    [all...]
  /external/chromium_org/remoting/host/it2me/
it2me_native_messaging_host_unittest.cc 475 int next_id = 0; local
478 connect_message.SetInteger("id", ++next_id);
487 VerifyConnectResponses(next_id);
490 disconnect_message.SetInteger("id", ++next_id);
494 VerifyDisconnectResponses(next_id);
499 int next_id = 0; local
501 message.SetInteger("id", ++next_id);
505 VerifyHelloResponse(next_id);
  /external/chromium_org/sync/syncable/
directory.h 129 int64 next_id; member in struct:syncer::syncable::Directory::PersistedKernelInfo

Completed in 1078 milliseconds

1 2