Lines Matching refs:_entries
278 self._entries = {}
301 base_entry = self._entries.get(entry.id_string)
306 self._entries[entry.id_string] = DeepCopyOfProto(entry)
385 siblings = [x for x in self._entries.values()
419 return id_string in self._entries
475 change_log = sorted(self._entries.values(),
500 if entry.id_string in self._entries:
501 if self._entries[entry.id_string].HasField(
504 self._entries[entry.id_string].server_defined_unique_tag)
519 if entry.id_string in self._entries:
521 return (self._entries[entry.id_string].version == entry.version or
522 self._entries[entry.id_string].deleted)
540 if entry.parent_id_string not in self._entries:
546 if self._entries[entry.parent_id_string].deleted:
549 if not self._entries[entry.parent_id_string].folder:
652 if child_id not in self._entries:
654 if self._entries[child_id].parent_id_string == entry.id_string:
656 return IsChild(self._entries[child_id].parent_id_string)
659 child_ids = [child.id_string for child in self._entries.itervalues()
686 base_entry = self._entries.get(entry.id_string)