HomeSort by relevance Sort by last modified time
    Searched refs:predecessor_id (Results 1 - 13 of 13) sorted by null

  /art/compiler/sea_ir/ir/
sea.h 94 void RenameToSSA(int reg_no, InstructionNode* definition, unsigned int predecessor_id) {
97 if (definition_edges_.size() < predecessor_id+1) {
98 definition_edges_.resize(predecessor_id+1, NULL);
100 if (NULL == definition_edges_.at(predecessor_id)) {
101 definition_edges_[predecessor_id] = new std::vector<InstructionNode*>();
103 definition_edges_[predecessor_id]->push_back(definition);
sea.cc 587 int predecessor_id = -1; local
590 predecessor_id = crt_pred_id;
593 DCHECK_NE(-1, predecessor_id);
599 phi->RenameToSSA(reg_no, definition, predecessor_id);
  /external/chromium_org/sync/syncable/
mutable_entry.h 58 // and fails if |predecessor_id| does not identify a sibling. Pass the root
60 bool PutPredecessor(const Id& predecessor_id);
mutable_entry.cc 228 bool MutableEntry::PutPredecessor(const Id& predecessor_id) {
229 MutableEntry predecessor(write_transaction(), GET_BY_ID, predecessor_id); local
  /external/chromium/chrome/browser/sync/
profile_sync_service_bookmark_unittest.cc 140 int64 predecessor_id) {
144 if (predecessor_id == 0) {
148 EXPECT_TRUE(predecessor.InitByIdLookup(predecessor_id));
153 EXPECT_EQ(node.GetPredecessorId(), predecessor_id);
169 int64 predecessor_id) {
170 return Add(title, std::string(), true, parent_id, predecessor_id);
177 int64 predecessor_id) {
178 return Add(title, url, false, parent_id, predecessor_id);
220 int64 ModifyPosition(int64 id, int64 parent_id, int64 predecessor_id) {
226 if (predecessor_id == 0)
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_bookmark_unittest.cc 81 int64 predecessor_id) {
85 if (predecessor_id == 0) {
89 EXPECT_EQ(BaseNode::INIT_OK, predecessor.InitByIdLookup(predecessor_id));
93 EXPECT_EQ(node.GetPredecessorId(), predecessor_id);
116 int64 predecessor_id) {
118 predecessor_id);
124 int64 predecessor_id) {
125 return Add(title, std::string(), true, parent_id, predecessor_id);
130 int64 predecessor_id) {
132 predecessor_id);
    [all...]
  /external/chromium/chrome/browser/sync/glue/
bookmark_change_processor.cc 333 int64 predecessor_id = child_info->GetPredecessorId(); local
335 if (predecessor_id == sync_api::kInvalidId)
340 model_associator_->GetChromeNodeFromSyncId(predecessor_id);
  /external/chromium_org/sync/internal_api/
write_node.cc 508 syncable::Id predecessor_id = predecessor ? local
510 if (!entry_->PutPredecessor(predecessor_id))
  /external/chromium/chrome/browser/sync/engine/
apply_updates_command_unittest.cc 106 Id predecessor_id = dir->GetLastChildId(&trans, parent_id); local
116 entry.PutPredecessor(predecessor_id);
process_commit_response_command_unittest.cc 94 Id predecessor_id = dir->GetLastChildId(&trans, parent_id); local
104 entry.PutPredecessor(predecessor_id);
syncapi.cc 913 syncable::Id predecessor_id = predecessor ? local
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
syncable.cc 1653 MutableEntry predecessor(write_transaction(), GET_BY_ID, predecessor_id); local
    [all...]
syncable.h 508 // and fails if |predecessor_id| does not identify a sibling. Pass the root
510 bool PutPredecessor(const Id& predecessor_id);
    [all...]

Completed in 72 milliseconds