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

  /external/qemu/android/utils/
property_file_unittest.cpp 33 static const char kFile[] = "foo=bar\n";
34 String value(propertyFile_getValue(kFile, sizeof kFile, "foo"));
38 String value2(propertyFile_getValue(kFile, sizeof kFile, "bar"));
43 static const char kFile[] = "foo=bar";
44 String value(propertyFile_getValue(kFile, sizeof kFile, "foo"));
48 String value2(propertyFile_getValue(kFile, sizeof kFile, "bar"))
    [all...]
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_line_reader_unittest.cpp 30 static const char kFile[] = "foo bar\n";
31 static const size_t kFileSize = sizeof(kFile) - 1;
32 sys.AddRegularFile(kFilePath, kFile, kFileSize);
37 EXPECT_MEMEQ(kFile, kFileSize, reader.line(), reader.length());
43 static const char kFile[] = "foo bar";
44 static const size_t kFileSize = sizeof(kFile) - 1;
45 sys.AddRegularFile(kFilePath, kFile, kFileSize);
51 EXPECT_MEMEQ(kFile, kFileSize, reader.line(), reader.length() - 1);
58 static const char kFile[] =
64 static const size_t kFileSize = sizeof(kFile) - 1
    [all...]
  /ndk/sources/android/crazy_linker/src/
crazy_linker_line_reader_unittest.cpp 30 static const char kFile[] = "foo bar\n";
31 static const size_t kFileSize = sizeof(kFile) - 1;
32 sys.AddRegularFile(kFilePath, kFile, kFileSize);
37 EXPECT_MEMEQ(kFile, kFileSize, reader.line(), reader.length());
43 static const char kFile[] = "foo bar";
44 static const size_t kFileSize = sizeof(kFile) - 1;
45 sys.AddRegularFile(kFilePath, kFile, kFileSize);
51 EXPECT_MEMEQ(kFile, kFileSize, reader.line(), reader.length() - 1);
58 static const char kFile[] =
64 static const size_t kFileSize = sizeof(kFile) - 1
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_sync_status_unittest.cc 18 const char kFile[] = "filesystem:http://foo.com/test/dir a/dir b";
34 status.StartWriting(URL(kFile));
35 status.StartWriting(URL(kFile));
36 status.EndWriting(URL(kFile));
38 EXPECT_TRUE(status.IsWriting(URL(kFile)));
45 EXPECT_TRUE(status.IsWritable(URL(kFile)));
52 EXPECT_FALSE(status.IsSyncable(URL(kFile)));
58 status.EndWriting(URL(kFile));
60 EXPECT_FALSE(status.IsWriting(URL(kFile)));
68 status.StartSyncing(URL(kFile));
    [all...]
syncable_file_operation_runner_unittest.cc 39 const std::string kFile = "foo/file";
162 sync_status()->StartSyncing(URL(kFile));
163 ASSERT_FALSE(sync_status()->IsWritable(URL(kFile)));
168 URL(kFile), false /* exclusive */,
171 URL(kFile), 1,
178 URL(kFile), ExpectStatus(FROM_HERE, File::FILE_ERROR_NOT_FOUND));
183 sync_status()->EndSyncing(URL(kFile));
184 ASSERT_TRUE(sync_status()->IsWritable(URL(kFile)));
193 URL(kFile), ExpectStatus(FROM_HERE, File::FILE_OK));
304 EXPECT_EQ(File::FILE_OK, file_system_.CreateFile(URL(kFile)));
    [all...]
local_file_sync_context_unittest.cc 245 const FileSystemURL kFile(file_system.URL("file"));
246 EXPECT_EQ(base::File::FILE_OK, file_system.CreateFile(kFile));
251 PrepareForSync(file_system.file_system_context(), kFile,
258 file_system.GetChangesForURLInTracker(kFile, &changes);
263 SimulateFinishSync(file_system.file_system_context(), kFile,
266 file_system.GetChangesForURLInTracker(kFile, &changes);
297 const FileSystemURL kFile(file_system.URL("file"));
298 EXPECT_EQ(base::File::FILE_OK, file_system.CreateFile(kFile));
304 PrepareForSync(file_system.file_system_context(), kFile,
314 file_system.GetChangesForURLInTracker(kFile, &changes)
    [all...]
local_file_sync_service_unittest.cc 213 const FileSystemURL kFile(file_system_->URL("file"));
223 // Run PrepareForProcessRemoteChange for kFile.
227 PrepareForProcessRemoteChange(kFile, FROM_HERE,
231 // Run ApplyRemoteChange for kFile.
235 ApplyRemoteChange(change, local_path, kFile));
239 file_system_->VerifyFile(kFile, kTestFileData));
273 const FileSystemURL kFile(file_system_->URL("file"));
278 EXPECT_EQ(base::File::FILE_OK, file_system_->CreateFile(kFile));
284 file_system_->WriteString(kFile, kTestFileData));
334 const FileSystemURL kFile(file_system_->URL("foo"))
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/
sync_file_system_service_unittest.cc 323 const FileSystemURL kFile(file_system_->URL("foo"));
327 // We should get called OnSyncEnabled and OnWriteEnabled on kFile as in:
333 EXPECT_CALL(status_observer, OnWriteEnabled(kFile))
338 EXPECT_CALL(status_observer, OnSyncEnabled(kFile))
340 EXPECT_CALL(status_observer, OnSyncEnabled(kFile))
349 ApplyLocalChange(change, _, _, kFile, _))
352 EXPECT_EQ(base::File::FILE_OK, file_system_->CreateFile(kFile));
383 const FileSystemURL kFile(file_system_->URL("foo"));
393 kFile));
402 // a local write operation on kFile
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
metadata_db_migration_util_unittest.cc 52 const base::FilePath kFile(FPL("foo bar"));
56 kOrigin, kFile, &serialized_url));
62 EXPECT_EQ(kFile, path);
105 const base::FilePath kFile(FPL("foo bar"));
136 kOrigin1, kFile, &serialized_url));
213 const base::FilePath kFile(FPL("foo bar"));
237 fileapi::FileSystemURL url = CreateSyncableFileSystemURL(kOrigin1, kFile);
  /external/chromium_org/base/
tracked_objects_unittest.cc 18 const char kFile[] = "FixedUnitTestFileName";
71 EXPECT_EQ(kFile, process_data.tasks[0].birth.location.file_name);
144 Location location(kFunction, kFile, kLineNumber, NULL);
198 EXPECT_EQ(kFile, process_data.tasks[0].birth.location.file_name);
213 EXPECT_EQ(kFile, process_data.descendants[0].parent.location.file_name);
220 EXPECT_EQ(kFile, process_data.descendants[0].child.location.file_name);
278 Location location(kFunction, kFile, kLineNumber, NULL);
294 Location location(kFunction, kFile, kLineNumber, NULL);
310 Location location(kFunction, kFile, kLineNumber, NULL);
325 Location location(kFunction, kFile, kLineNumber, NULL)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
webmenc.cc 31 segment->set_mode(mkvmuxer::Segment::kFile);
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
MacroExpander.cpp 198 static const std::string kFile = "__FILE__";
208 else if (macro.name == kFile)
  /external/chromium_org/google_apis/drive/
drive_api_parser.cc 177 const char kFile[] = "file";
559 converter->RegisterCustomValueField(kFile, &ChangeResource::file_,
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
mkvmuxer.cpp     [all...]
mkvmuxer.hpp     [all...]
  /external/libvpx/libvpx/third_party/libwebm/
mkvmuxer.cpp     [all...]
mkvmuxer.hpp     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvmuxer.cpp     [all...]
mkvmuxer.hpp     [all...]
  /external/chromium_org/chrome/browser/ui/
browser_browsertest.cc     [all...]

Completed in 389 milliseconds