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

1 2

  /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/chrome/browser/sessions/
session_id.cc 9 static SessionID::id_type next_id = 1; variable
12 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/ash/shelf/
shelf_model.h 65 ShelfID next_id() const { return next_id_; } function in class:ash::ShelfModel
  /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/chromium_org/gpu/command_buffer/tests/
gl_manager.cc 288 static int32 next_id = 1; local
289 *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 235 int next_id = id_ + 1; local
241 host_impl_.pending_tree(), next_id, picture_pile_);
252 ++next_id;
  /external/chromium_org/chrome/browser/ui/app_list/
extension_app_item.cc 215 std::string prev_id, next_id; local
217 next_id = next->extension_id();
218 page = sorting->GetPageOrdinal(next_id);
225 // Only set |next_id| if on the same page, otherwise just insert after prev.
227 next_id = next->extension_id();
231 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/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 474 int next_id = 0; local
477 connect_message.SetInteger("id", ++next_id);
486 VerifyConnectResponses(next_id);
489 disconnect_message.SetInteger("id", ++next_id);
493 VerifyDisconnectResponses(next_id);
498 int next_id = 0; local
500 message.SetInteger("id", ++next_id);
504 VerifyHelloResponse(next_id);
  /external/chromium_org/sync/syncable/
directory.h 125 int64 next_id; member in struct:syncer::syncable::Directory::PersistedKernelInfo
  /external/chromium_org/third_party/brotli/src/brotli/enc/
block_splitter.cc 221 int next_id = 0; local
224 new_id[block_ids[i]] = next_id;
225 ++next_id;
231 return next_id;
  /external/chromium_org/content/browser/frame_host/
render_frame_host_impl.cc 232 static int next_id = 1; local
233 int key = next_id++;
    [all...]

Completed in 886 milliseconds

1 2