Searched defs:file (Results 101 - 125 of 1433) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DEncodedField.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
77 * ever appear in the same list (or same file, even).</p>
99 public void addContents(DexFile file) { argument
100 FieldIdsSection fieldIds = file.getFieldIds();
133 public int encode(DexFile file, AnnotatedOutput out, argument
135 int fieldIdx = file.getFieldIds().indexOf(field);
H A DEncodedMethod.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
87 * ever appear in the same list (or same file, even).</p>
116 public void addContents(DexFile file) { argument
117 MethodIdsSection methodIds = file.getMethodIds();
118 MixedItemSection wordData = file.getWordData();
159 public int encode(DexFile file, AnnotatedOutput out, argument
161 int methodIdx = file.getMethodIds().indexOf(method);
H A DMapItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
28 /** file alignment of this class, in bytes */
198 public void addContents(DexFile file) { argument
210 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
H A DOffsettedItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
23 * An item in a Dalvik file which is referenced by absolute offset.
164 public final void writeTo(DexFile file, AnnotatedOutput out) { argument
178 writeTo0(file, out);
198 * the file which the instance was written to.
310 * @param file {@code non-null;} the file to use for reference
313 protected abstract void writeTo0(DexFile file, AnnotatedOutput out); argument
H A DUniformListItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
121 public void addContents(DexFile file) { argument
123 i.addContents(file);
189 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
200 i.writeTo(file, out);
H A DIndexedItem.java5 * 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.
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DTestCaseInputFile.java42 public TestCaseInputFile(String file) { argument
43 this.fileName = file;
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DEmpiricalDistribution.java3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
36 * <li>loading the distribution from a file of observed data values</li>
45 * generate random values "like" those in the input file -- i.e., the values
46 * generated will follow the distribution of the values in the file.</p>
61 * Computes the empirical distribution from the input file.
63 * @param file the input file
66 void load(File file) throw argument
[all...]
/external/apache-http/android/src/com/android/internal/http/multipart/
H A DFilePartSource.java9 * contributor license agreements. See the NOTICE file distributed with
11 * The ASF licenses this file to You under the Apache License, Version 2.0
12 * (the "License"); you may not use this file except in compliance with
51 /** File part file. */
52 private File file = null; field in class:FilePartSource
54 /** File part file name. */
60 * @param file the FilePart source File.
62 * @throws FileNotFoundException if the file does not exist or
65 public FilePartSource(File file) throws FileNotFoundException { argument
66 this.file
87 FilePartSource(String fileName, File file) argument
[all...]
/external/apache-http/src/org/apache/http/entity/
H A DFileEntity.java8 * or more contributor license agreements. See the NOTICE file
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
41 * An entity whose content is retrieved from a file.
56 protected final File file; field in class:FileEntity
58 public FileEntity(final File file, final String contentType) { argument
60 if (file == null) {
63 this.file = file;
72 return this.file
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncSystemProperty.java3 * or more contributor license agreements. See the NOTICE file
5 * regarding copyright ownership. The ASF licenses this file
7 * you may not use this file except in compliance with the License.
41 * The path/filename of the property file: XSLTInfo.properties
170 * Retrieve a propery bundle from a specified file
172 * @param file The string name of the property file. The name
174 * @param target The target property bag the file will be placed into.
176 public void loadPropertyFile(String file, Properties target) argument
180 // Use SecuritySupport class to provide priveleged access to property file
[all...]
/external/autotest/client/profilers/powertop/src/
H A Dprocess.c4 * This file is part of PowerTOP
6 * This program file is free software; you can redistribute it and/or modify it
16 * along with this program in a file named COPYING; if not, write to the
41 FILE *file; local
47 file = popen(" ps -A -o pid,command", "r");
48 if (!file)
50 while (!feof(file)) {
52 if (fgets(line, 2047, file)==NULL)
59 pclose(file);
/external/bison/lib/
H A Dmsvc-inval.c34 const wchar_t *file,
51 const wchar_t *file,
100 const wchar_t *file,
32 gl_msvc_invalid_parameter_handler(const wchar_t *expression, const wchar_t *function, const wchar_t *file, unsigned int line, uintptr_t dummy) argument
49 gl_msvc_invalid_parameter_handler(const wchar_t *expression, const wchar_t *function, const wchar_t *file, unsigned int line, uintptr_t dummy) argument
98 gl_msvc_invalid_parameter_handler(const wchar_t *expression, const wchar_t *function, const wchar_t *file, unsigned int line, uintptr_t dummy) argument
/external/boringssl/src/crypto/test/
H A Dscoped_types.h63 void operator()(FILE *file) { argument
64 fclose(file);
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DEnvironmentGetter.java5 * you may not use this file except in compliance with the License.
95 * Returns the key/value pairs from the specified properties-file like file.
99 * <p>If there's any problem reading the file's contents, we'll return an
102 private static Multimap<String, String> propertiesFromLinuxFile(String file) { argument
104 List<String> lines = Files.readLines(new File(file), Charset.defaultCharset());
115 // If there's any problem reading the file, just return an empty multimap.
H A DTrialOutputFactory.java5 * you may not use this file except in compliance with the License.
31 /** A simple tuple of a {@link File} and a {@link PrintWriter} for writing to that file. */
33 final File file; field in class:TrialOutputFactory.FileAndWriter
36 FileAndWriter(File file, PrintWriter writer) { argument
37 this.file = file;
42 /** Returns the file to write trial output to. */
46 * Ensures that the given file will not be deleted after the run. The file provided must be equal
47 * to a file returne
[all...]
/external/chromium-trace/catapult/third_party/apiclient/googleapiclient/
H A Dsample_tools.py4 # you may not use this file except in compliance with the License.
31 from oauth2client import file namespace
41 credentials are stored in a file named apiname.dat, and the
42 client_secrets.json file is stored in the same directory as the application
43 main file.
50 file: string, filename of the application. Usually set to __file__.
53 discovery_filename: string, name of local discovery file (JSON). Use when discovery doc not available via URL.
71 # Name of a file containing the OAuth 2.0 information for this
86 # credentials will get written back to a file.
87 storage = file
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
H A Dblob.py27 def __init__(self, value=None, file=None, id=None):
28 self._file = file
33 def file(self): member in class:Blob
45 if hasattr(self.file, "get_contents_as_string"):
46 value = self.file.get_contents_as_string()
48 value = self.file.getvalue()
55 if hasattr(self.file, "get_contents_as_string"):
56 return self.file.get_contents_as_string()
58 return self.file.read()
61 return self.file
[all...]
/external/clang/test/CodeGenCXX/
H A Ddefault-arg-temps.cpp56 C(const B &file = B());
58 C::C(const B &file) {} argument
/external/conscrypt/src/test/java/org/conscrypt/ct/
H A DCTLogStoreImplTest.java5 * you may not use this file except in compliance with the License.
95 // Empty log file, used to mask fallback logs
121 * But mask log 3 with an empty file in the user directory.
154 * Create a temporary file and write to it.
155 * The file will be deleted on exit.
156 * @param contents The data to be written to the file
157 * @return A reference to the temporary file
160 File file = File.createTempFile("test", null);
161 file.deleteOnExit();
162 writeFile(file, content
166 writeFile(File file, String contents) argument
[all...]
/external/curl/docs/examples/
H A Dhttpput.c10 * This software is licensed as described in the file COPYING, which
16 * furnished to do so, under the terms of the COPYING file.
28 * This example shows a HTTP PUT operation. PUTs a file given as a command
50 " bytes from file\n", nread);
62 char *file; local
68 file= argv[1];
71 /* get the file size of the local file */
72 stat(file, &file_info);
74 /* get a FILE * of the same file, coul
[all...]
/external/curl/src/
H A Dtool_cb_wrt.c10 * This software is licensed as described in the file COPYING, which
16 * furnished to do so, under the terms of the COPYING file.
34 /* create a local file for writing, return TRUE on success */
38 FILE *file; local
47 file = fopen(outs->filename, "rb");
48 if(file) {
49 fclose(file);
56 /* open file for writing */
57 file = fopen(outs->filename, "wb");
58 if(!file) {
[all...]
/external/deqp/framework/delibs/debase/
H A DdeDefs.c8 * you may not use this file except in compliance with the License.
20 * \file
86 void deAssertFail (const char* reason, const char* file, int line) argument
94 callback(reason, file, line);
112 num = deMin32((int)strlen(file), DE_LENGTH_OF_ARRAY(wfile)-1);
114 wfile[i] = file[i];
124 _assert(reason, file, line);
126 __assert_fail(reason, file, (unsigned int)line, "Unknown function");
128 __assert("Unknown function", file, line, reason);
130 fprintf(stderr, "Assertion '%s' failed at %s:%d\n", reason, file, lin
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dgetsectsize.c8 * This file may be redistributed under the terms of the GNU Library
44 errcode_t ext2fs_get_device_sectsize(const char *file, int *sectsize) argument
48 fd = ext2fs_open_file(file, O_RDONLY, 0);
92 errcode_t ext2fs_get_device_phys_sectsize(const char *file, int *sectsize) argument
96 fd = ext2fs_open_file(file, O_RDONLY, 0);
H A Dgetsize.c10 * This file may be redistributed under the terms of the GNU Library
72 errcode_t ext2fs_get_device_size(const char *file, int blocksize, argument
85 dev = CreateFile(file, GENERIC_READ,
141 errcode_t ext2fs_get_device_size2(const char *file, int blocksize,
148 fd = ext2fs_open_file(file, O_RDONLY, 0);
218 part = strlen(file) - 1;
220 ch = file[part];
273 errcode_t ext2fs_get_device_size(const char *file, int blocksize,
279 retval = ext2fs_get_device_size2(file, blocksize, &blocks);

Completed in 764 milliseconds

1234567891011>>