HomeSort by relevance Sort by last modified time
    Searched defs:FileChange (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/chrome/browser/chromeos/drive/
file_change.cc 9 FileChange::FileChange(const base::FilePath& path, Type type)
13 FileChange::~FileChange() {}
16 FileChangeSet FileChange::CreateSingleSet(const base::FilePath& path,
19 result.insert(FileChange(path, type));
file_change.h 14 class FileChange;
17 typedef std::set<FileChange> FileChangeSet;
22 class FileChange {
32 FileChange(const base::FilePath& path, Type type);
33 ~FileChange();
38 bool operator==(const FileChange &file_change) const {
42 bool operator<(const FileChange &file_change) const {
  /external/chromium_org/chrome/browser/sync_file_system/
file_change.cc 13 FileChange::FileChange(
19 std::string FileChange::DebugString() const {
47 void FileChangeList::Update(const FileChange& new_change) {
53 FileChange& last = list_.back();
file_change.h 18 class FileChange {
25 FileChange(ChangeType change, SyncFileType file_type);
39 bool operator==(const FileChange& that) const {
51 typedef std::deque<FileChange> List;
57 void Update(const FileChange& new_change);
63 const FileChange& front() const { return list_.front(); }
64 const FileChange& back() const { return list_.back(); }
  /external/clang/lib/Rewrite/Frontend/
InclusionRewriter.cpp 32 struct FileChange {
37 FileChange(SourceLocation From, const Module *Mod) : Mod(Mod), From(From) {
46 typedef std::map<unsigned, FileChange> FileChangeMap;
87 const FileChange *FindFileChangeLocation(SourceLocation Loc) const;
182 std::make_pair(HashLoc.getRawEncoding(), FileChange(HashLoc, Imported)));
190 const InclusionRewriter::FileChange *
386 if (const FileChange *Change = FindFileChangeLocation(

Completed in 219 milliseconds