HomeSort by relevance Sort by last modified time
    Searched refs:file_name (Results 301 - 325 of 594) sorted by null

<<11121314151617181920>>

  /external/gtest/samples/
sample9_unittest.cc 77 test_part_result.file_name(),
  /external/libvpx/libvpx/third_party/googletest/src/samples/
sample9_unittest.cc 77 test_part_result.file_name(),
  /external/protobuf/gtest/samples/
sample9_unittest.cc 77 test_part_result.file_name(),
  /external/webrtc/src/system_wrappers/source/
data_log.cc 82 // Creates a log file, named as specified in the string file_name, to
84 int CreateLogFile(const std::string& file_name);
206 int LogTable::CreateLogFile(const std::string& file_name) {
207 if (file_name.length() == 0)
211 file_->OpenFile(file_name.c_str(),
  /ndk/sources/third_party/googletest/googletest/samples/
sample9_unittest.cc 77 test_part_result.file_name(),
  /system/core/init/
init.h 137 int load_565rle_image( char *file_name );
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_mount.cc 154 const base::FilePath::StringType& file_name,
170 file_path.AsUTF8Unsafe(), base::FilePath(file_name).Extension(),
171 file_name, DiskMountManager::MountTypeFromString(mount_type));
  /external/chromium_org/chrome/browser/policy/
config_dir_policy_loader_unittest.cc 55 const std::string& file_name);
135 const std::string& file_name) {
141 const base::FilePath file_path(mandatory_dir.AppendASCII(file_name));
  /external/chromium_org/chrome/browser/search_engines/
template_url_parser_unittest.cc 59 // Parses the OpenSearch description document at file_name (relative to the
61 void ParseFile(const std::string& file_name,
92 const std::string& file_name,
97 full_path = full_path.AppendASCII(file_name);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_html5fs.cc 122 const char* file_name = mount_->ppapi()->GetVarInterface() local
124 if (!file_name)
136 strncpy(direntry.d_name, file_name, file_name_length);
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
glX_doc.py 266 file_name = "gl_API.xml" variable
275 file_name = val
277 api = gl_XML.parse_GL_API( file_name, glx_doc_item_factory() )
gl_apitemp.py 310 file_name = "gl_API.xml"
320 file_name = val
324 api = gl_XML.parse_GL_API(file_name, glX_XML.glx_item_factory())
  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profile-table.h 208 // stack traces and sizes to a file named |file_name|. Together with
224 void DumpMarkedObjects(AllocationMark mark, const char* file_name);
227 void DumpTypeStatistics(const char* file_name) const;
442 // "file_name". "total" must contain the total of all entries in
444 static bool WriteProfile(const char* file_name,
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
cros_interface.py 181 def FileExistsOnDevice(self, file_name):
183 return os.path.exists(file_name)
186 'if', 'test', '-e', file_name, ';',
196 logging.debug("FileExistsOnDevice(<text>, %s)->%s" % (file_name, exists))
  /external/elfutils/libdwfl/
libdwflP.h 296 char **file_name) internal_function;
306 const char *file_name, int fd,
312 const char *file_name,
  /external/libpng/
example.c 58 int check_if_png(char *file_name, FILE **fp)
63 if ((*fp = fopen(file_name, "rb")) == NULL)
83 void read_png(char *file_name) /* We need to open the file */
92 if ((fp = fopen(file_name, "rb")) == NULL)
561 void write_png(char *file_name /* , ... other image information ... */)
569 fp = fopen(file_name, "wb");
  /external/mesa3d/src/mapi/glapi/gen/
glX_doc.py 266 file_name = "gl_API.xml" variable
275 file_name = val
277 api = gl_XML.parse_GL_API( file_name, glx_doc_item_factory() )
gl_apitemp.py 310 file_name = "gl_API.xml"
320 file_name = val
324 api = gl_XML.parse_GL_API(file_name, glX_XML.glx_item_factory())
  /external/opencv/cxcore/src/
cxerror.cpp 335 const char* file_name, int line )
349 context->err_ctx.file = file_name;
356 file_name, line, context->userdata );
  /external/openfst/src/include/fst/
flags.h 66 file_name(file),
72 const char *file_name; member in struct:FlagDescription
155 usage_set->insert(make_pair(desc.file_name, usage));
  /external/chromium_org/net/disk_cache/simple/
simple_index_file.cc 83 const std::string file_name(base_name.begin(), base_name.end());
84 if (file_name.size() != kEntryFilesLength)
87 file_name.begin(), file_name.begin() + kEntryFilesHashLength);
91 << " disk: " << file_name;
  /external/libvpx/libvpx/
vp9_spatial_scalable_encoder.c 395 char file_name[512]; local
396 snprintf(file_name, sizeof(file_name), "%s_%d.ivf", output_filename, i);
397 if (!(outfile[i] = fopen(file_name, "wb")))
398 die("Failed to open %s for writing", file_name);
  /external/chromium/base/
tracked_objects.cc 676 birth_files_[location.file_name()]++;
771 if (left.location().file_name() != right.location().file_name()) {
772 int comp = strcmp(left.location().file_name(),
773 right.location().file_name());
835 if (left.location().file_name() != right.location().file_name()) {
836 int comp = strcmp(left.location().file_name(),
837 right.location().file_name());
885 if (!strstr(sample.location().file_name(), required_.c_str())
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest-port.cc 457 const char* const file_name = file == NULL ? kUnknownFile : file; local
460 return String::Format("%s:", file_name).c_str();
463 return String::Format("%s(%d):", file_name, line).c_str();
465 return String::Format("%s:%d:", file_name, line).c_str();
476 const char* const file_name = file == NULL ? kUnknownFile : file; local
479 return file_name;
481 return String::Format("%s:%d", file_name, line).c_str();
  /ndk/sources/third_party/googletest/googletest/src/
gtest-port.cc 457 const std::string file_name(file == NULL ? kUnknownFile : file);
460 return file_name + ":";
463 return file_name + "(" + StreamableToString(line) + "):";
465 return file_name + ":" + StreamableToString(line) + ":";
476 const std::string file_name(file == NULL ? kUnknownFile : file);
479 return file_name;
481 return file_name + ":" + StreamableToString(line);

Completed in 2358 milliseconds

<<11121314151617181920>>