HomeSort by relevance Sort by last modified time
    Searched defs:file (Results 126 - 150 of 1272) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/skia/tools/
skhello.cpp 5 * found in the LICENSE file.
97 SkString file; local
98 file.printf("%s%s", path.c_str(), gRec[i].fSuffix);
99 if (!gRec[i].fProc(w, h, file.c_str(), text.c_str(), paint)) {
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_fileutils.cc 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
57 FILE* file = fopen(filepath.c_str(), "rb"); local
58 if (file == NULL) {
60 BWE_TEST_LOGGING_LOG1("Create", "Can't read file: %s", filepath.c_str());
63 return new ResourceFileReader(file);
86 FILE* file = fopen(filepath.c_str(), "wb") local
    [all...]
  /external/chromium_org/tools/gn/
generate_test_gn_data.cc 3 // found in the LICENSE file.
83 // Don't keep the file open while recursing.
87 std::ofstream file; local
88 file.open(FilePathToUTF8(filename).c_str(),
94 file << "executable(\"" << RepoPathToTargetName(repo_path, i)
96 file << " sources = [\n";
98 file << " \"" << base::IntToString(f) << ".cc\",\n";
101 file << " ]\n";
102 file << " deps = [\n";
107 file << " \"" << RepoPathToFullTargetName(cur, t) << "\",\n"
    [all...]
input_file_manager.h 3 // found in the LICENSE file.
31 // could use the same input file (saving parsing).
39 // Callback issued when a file is laoded. On auccess, the parse node will
40 // refer to the root block of the file. On failure, this will be NULL.
45 // Loads the given file and executes the callback on the worker pool.
59 // Loads and parses the given file synchronously, returning the root block
71 // the file, tokens, and parse node that this class created. The calling
78 // nodes and file that created it. Either we need to reset the origin of
80 // associated parse nodes, tokens, and file data in memory. This function
83 InputFile** file,
101 InputFile file; member in struct:InputFileManager::InputFileData
    [all...]
location.h 3 // found in the LICENSE file.
12 // Represents a place in a source file. Used for error reporting.
16 Location(const InputFile* file, int line_number, int char_offset, int byte);
18 const InputFile* file() const { return file_; } function in class:Location
27 // Returns a string with the file, line, and (optionally) the character
39 // Represents a range in a source file. Used for error reporting.
  /external/chromium_org/tools/relocation_packer/src/
main.cc 3 // found in the LICENSE file.
41 "Usage: %s [-u] [-v] [-p] file\n\n"
44 " -v, --verbose trace object file modifications (for debugging)\n"
148 const char* file = argv[argc - 1]; local
149 const int fd = open(file, O_RDWR);
151 LOG(ERROR) << file << ": " << strerror(errno);
170 LOG(ERROR) << file << ": failed to pack/unpack file";
  /external/chromium_org/ui/base/resource/
data_pack_unittest.cc 3 // found in the LICENSE file.
5 #include "base/files/file.h"
33 // Dump contents into the pak file.
37 // Load the file through the data pack API.
65 // Dump contents into the pak file.
69 base::File file(data_path, base::File::FLAG_OPEN | base::File::FLAG_READ);
70 ASSERT_TRUE(file.IsValid())
154 base::FilePath file = dir.path().Append(FILE_PATH_LITERAL("data.pak")); local
    [all...]
  /external/chromium_org/v8/tools/
shell-utils.h 42 FILE* file = fopen(name, "rb"); local
44 if (file == NULL) return NULL;
46 fseek(file, 0, SEEK_END);
47 int file_size = ftell(file);
48 rewind(file);
54 int read = static_cast<int>(fread(&chars[i], 1, file_size - i, file));
57 fclose(file);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationSetRefItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
57 public void addContents(DexFile file) {
58 MixedItemSection wordData = file.getWordData();
71 protected void writeTo0(DexFile file, AnnotatedOutput out) {
EncodedMember.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
69 * @param file {@code non-null;} the file to populate
71 public abstract void addContents(DexFile file);
76 * @param file {@code non-null;} file this instance is part of
84 public abstract int encode(DexFile file, AnnotatedOutput out,
FieldIdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
22 * Representation of a field reference inside a Dalvik file.
42 public void addContents(DexFile file) {
43 super.addContents(file);
45 TypeIdsSection typeIds = file.getTypeIds();
60 protected int getTypoidIdx(DexFile file) {
61 TypeIdsSection typeIds = file.getTypeIds();
HeaderSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
26 * File header section of a {@code .dex} file.
33 * Constructs an instance. The file offset is initially unknown.
35 * @param file {@code non-null;} file that this instance is part of
37 public HeaderSection(DexFile file) {
38 super(null, file, 4);
IndexedItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
20 * An item in a Dalvik file which is referenced by index.
Item.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
23 * repeated piece of a Dalvik file.
59 * This will <i>not</i> add an item to the file for this instance itself
65 * @param file {@code non-null;} the file to populate
67 public abstract void addContents(DexFile file);
76 * @param file {@code non-null;} the file to use for reference
79 public abstract void writeTo(DexFile file, AnnotatedOutput out)
    [all...]
MemberIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
22 * Member (field or method) refs list section of a {@code .dex} file.
29 * Constructs an instance. The file offset is initially unknown.
33 * @param file {@code non-null;} file that this instance is part of
35 public MemberIdsSection(String name, DexFile file) {
36 super(name, file, 4);
MethodIdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
22 * Representation of a method reference inside a Dalvik file.
42 public void addContents(DexFile file) {
43 super.addContents(file);
45 ProtoIdsSection protoIds = file.getProtoIds();
60 protected int getTypoidIdx(DexFile file) {
61 ProtoIdsSection protoIds = file.getProtoIds();
TypeIdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
26 * Representation of a type reference inside a Dalvik file.
52 public void addContents(DexFile file) {
53 file.getStringIds().intern(getDefiningClass().getDescriptor());
58 public void writeTo(DexFile file, AnnotatedOutput out) {
61 int idx = file.getStringIds().indexOf(descriptor);
  /external/dexmaker/src/dx/java/com/android/dx/util/
FileUtils.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
24 * File I/O utilities.
35 * Reads the named file, translating {@link IOException} to a
38 * @param fileName {@code non-null;} name of the file to read
39 * @return {@code non-null;} contents of the file
42 File file = new File(fileName); local
43 return readFile(file);
    [all...]
  /external/e2fsprogs/debugfs/
zap.c 4 * Copyright (C) 2012 Theodore Ts'o. This file may be redistributed
34 char *file = NULL; local
49 file = optarg;
115 com_err(0, 0, "Usage:\tzap_block [-f file] [-o offset] "
117 com_err(0, 0, "\tzap_block [-f file] [-b bit] "
126 if (file) {
127 inode = string_to_inode(file);
175 char *file = NULL; local
187 file = optarg;
205 if (file) {
    [all...]
  /external/e2fsprogs/lib/blkid/
save.c 8 * This file may be redistributed under the terms of the
29 static int save_dev(blkid_dev dev, FILE *file)
40 fprintf(file,
44 fprintf(file, " PRI=\"%d\"", dev->bid_pri);
47 fprintf(file, " %s=\"%s\"", tag->bit_name,tag->bit_val);
49 fprintf(file, ">%s</device>\n", dev->bid_name);
55 * Write out the cache struct to the cache file on disk.
63 FILE *file = NULL local
    [all...]
  /external/elfutils/0.153/libdw/
dwarf_getscopevar.c 3 This file is part of Red Hat elfutils.
25 those well defined interfaces identified in the file named EXCEPTION
36 covered by this exception. If you modify this file, you may extend this
37 exception to your version of the file, but you are not obligated to do
40 this file solely under the GPL without exception.
78 If MATCH_FILE is not null, accept only declaration in that source file;
92 /* Match against the given file name. */
101 const char *file = files->info[idx].name; local
102 if (file != lastfile)
104 size_t len = strlen (file);
    [all...]
  /external/emma/ant/ant15/com/vladium/emma/ant/
XFileSet.java 11 import java.io.File;
19 * a single 'file' attribute
40 // 'file' attribute:
41 public void setFile (final File file)
45 super.setFile (file);
51 final File parent = file.getParentFile ();
55 include.setName (file.getName ());
  /external/freetype/src/base/
ftsystem.c 10 /* This file is part of the FreeType project, and may only be used, */
13 /* this file you indicate that you have read the license and */
20 /* This file contains the default interface used by FreeType to access */
206 FT_FILE* file; local
212 file = STREAM_FILE( stream );
215 ft_fseek( file, offset, SEEK_SET );
217 return (unsigned long)ft_fread( buffer, 1, count, file );
227 FT_FILE* file; local
240 file = ft_fopen( filepathname, "rb" );
241 if ( !file )
    [all...]
  /external/icu/icu4c/source/samples/csdet/
csdet.c 27 FILE *file; local
38 file = fopen(filename, "rb");
40 if (file == NULL) {
41 printf("Cannot open file \"%s\"\n\n", filename);
47 inputLength = (int32_t) fread(buffer, 1, BUFFER_SIZE, file);
49 fclose(file);
  /external/icu/icu4c/source/tools/toolutil/
pkg_icu.cpp 22 // read a file list -------------------------------------------------------- ***
35 /* check for multiple text file suffixes to see if this list name is a text file name */
52 * Read a file list.
53 * If the listname ends with ".txt", then read the list file
55 * If the listname ends with ".dat", then read the ICU .dat package file.
56 * Otherwise, read the file itself as a single-item list.
61 FILE *file; local
65 fprintf(stderr, "missing list file\n")
    [all...]

Completed in 403 milliseconds

1 2 3 4 56 7 8 91011>>