HomeSort by relevance Sort by last modified time
    Searched defs:file (Results 1101 - 1125 of 1907) sorted by null

<<41424344454647484950>>

  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
FontLoader.java 5 * you may not use this file except in compliance with the License.
26 import java.io.File;
43 * fonts.xml file located alongside the ttf files.
53 private static final String NODE_FILE = "file";
117 File f = new File(fontOsLocation, fontFileName);
120 fontOsLocation + File.separator);
256 // if has a normal font file, add to the list
281 // handle a new file for an existing Font Info
304 File file = new File(mOsFontsLocation, fileName) local
    [all...]
  /frameworks/support/v4/java/android/support/v4/content/
FileProvider.java 5 * you may not use this file except in compliance with the License.
40 import java.io.File;
48 * of files associated with an app by creating a <code>content://</code> {@link Uri} for a file
49 * instead of a <code>file:///</code> {@link Uri}.
60 * In comparison, to control access to a <code>file:///</code> {@link Uri} you have to modify the
61 * file system permissions of the underlying file. The permissions you provide become available to
65 * The increased level of file access security offered by a content URI
73 * <li><a href="#GetUri">Retrieving the Content URI for a File</li>
116 * request content URIs for the <code>images/</code> subdirectory of your private file area
412 final File file = mStrategy.getFileForUri(uri); local
451 final File file = mStrategy.getFileForUri(uri); local
497 final File file = mStrategy.getFileForUri(uri); local
519 final File file = mStrategy.getFileForUri(uri); local
709 File file = new File(root, path); local
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/
OMX_G711Decoder.c 29 * @file OMX_G711Decoder.c
31 * This file implements OMX Component for G711 decoder that
81 extern char file[500][50] = {""}; variable
93 * EXTERNAL REFERENCES NOTE : only use if not found in header file
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/src/
OMX_G726Enc_Utils.c 29 * @file OMX_G726Enc_Utils.c
31 * This file implements G726 Encoder Component Specific APIs and its functionality
91 extern char file[500][50] ={""}; variable
115 strcpy(file[e],s);
116 printf("__ Allocating %d bytes on address %p, line %d file %s\n", size, p, line, s);
129 printf("__ Deleting %d bytes on address %p, line %d file %s\n", bytes[q],dp, line, s);
131 strcpy(file[q],"");
138 printf("\n\n__ Pointer not found. Line:%d File%s!!\n\n",line, s);
    [all...]
  /libcore/luni/src/main/java/java/net/
URL.java 3 * 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
41 * {@code http://username:password@host:8080/directory/file?query#ref}:
49 * <tr><td>{@link #getFile() File}</td><td>{@code /directory/file?query}</td><td></td></tr>
50 * <tr><td>{@link #getPath() Path}</td><td>{@code /directory/file}</td><td></td></tr>
58 * <li><strong>file</strong>: read files from the local filesystem.
59 * <li><strong>ftp</strong>: <a href="http://www.ietf.org/rfc/rfc959.txt">File
88 private String file; field in class:URL
665 String file = path; local
    [all...]
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLConnection.java 3 * 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
272 String file = url.getFile(); local
273 write("RETR " + file + "\r\n");
275 if (reply == FTP_NOTFOUND && file.length() > 0 && file.charAt(0) == '/') {
276 write("RETR " + file.substring(1) + "\r\n");
280 throw new FileNotFoundException("Unable to retrieve file: " + reply);
430 * Issue the STOR command to the server with the file as the paramete
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipFileTest.java 5 * you may not use this file except in compliance with the License.
21 import java.io.File;
82 private static void writeBytes(File f, byte[] bytes) throws IOException {
96 // Create the good zip file.
109 // Write the result to a file.
110 File badZip = createTemporaryZipFile();
113 // Check that we refuse to load the modified file.
145 // Write the result to a file.
147 File zipFile = createTemporaryZipFile();
178 File f = createZipFile(expectedEntryCount, 0)
368 File file = createTemporaryZipFile(); local
415 File file = createTemporaryZipFile(); local
428 File file = createTemporaryZipFile(); local
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
lib.c 35 FILE *infile = NULL;
36 char *file = ""; variable
124 dprintf( ("argno=%d, file=|%s|\n", argno, file) );
125 if (infile == NULL) { /* have to open a new file */
126 file = getargv(argno);
127 if (*file == '\0') { /* it's been zapped */
131 if (isclvar(file)) { /* a var=value arg */
132 setclvar(file);
136 *FILENAME = file;
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
SavedWallpaperImages.java 5 * you may not use this file except in compliance with the License.
39 import java.io.File;
62 File file = new File(a.getFilesDir(), imageFilename); local
64 new BitmapRegionTileSource.FilePathBitmapSource(file.getAbsolutePath(), 1024);
111 File file = new File(mContext.getFilesDir(), filename); local
113 Bitmap thumb = BitmapFactory.decodeFile(file.getAbsolutePath())
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryDecayingTests.java 5 * you may not use this file except in compliance with the License.
26 import java.io.File;
75 private File createEmptyDictionaryAndGetFile(final String filename) throws IOException {
76 final File file = File.createTempFile(filename, TEST_DICT_FILE_EXTENSION, local
83 if (BinaryDictionary.createEmptyDictFile(file.getAbsolutePath(),
85 return file;
92 File dictFile = null;
139 File dictFile = null
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictIOUtilsTests.java 5 * you may not use this file except in compliance with the License.
30 import java.io.File;
140 private int getWordPosition(final File file, final String word) {
144 final Ver3DictDecoder dictDecoder = new Ver3DictDecoder(file,
174 private PtNodeInfo findWordFromFile(final File file, final String word) {
175 final DictDecoder dictDecoder = FormatSpec.getDictDecoder(file);
187 private long insertAndCheckWord(final File file, final String word, final int frequency
246 File file = null; local
300 File file = null; local
341 File file = null; local
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
DictionaryMaker.java 5 * use this file except in compliance with the License. You may obtain a copy of
30 import java.io.File;
91 throw new RuntimeException("No input file specified");
110 * Utility method that throws an exception if path1 and path2 point to the same file.
115 if (new File(path1).getCanonicalPath().equals(new File(path2).getCanonicalPath())) {
116 throw new RuntimeException(path1 + " and " + path2 + " are the same file: "
133 + " Converts a source dictionary file to one or several outputs.\n"
134 + " Source can be an XML file, with an optional XML bigrams file, or a\n
269 final File file = new File(binaryFilename); local
286 final File file = new File(combinedFilename); local
    [all...]
  /prebuilts/devtools/tools/lib/
lint.jar 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
rfc822.py 16 To create a Message object: first open a file, e.g.:
18 fp = open(file, 'r')
20 You can use any other legal way of getting an open file object, e.g. use
21 sys.stdin or call os.popen(). Then pass the open file object to the Message()
37 an unseekable object such as a file object created from a socket object. If
39 file object is called once; if this raises an exception, seekable is reset to
117 """Rewind the file to the start of the body (if seekable)."""
119 raise IOError, "unseekable file"
135 file).
979 file = os.path.join(os.environ['HOME'], 'Mail/inbox/1' variable
    [all...]
smtplib.py 175 """A fake file like object that really wraps a SSLObject.
227 file = None variable in class:SMTP
348 Raises SMTPServerDisconnected if end-of-file is reached.
351 if self.file is None:
352 self.file = self.sock.makefile('rb')
355 line = self.file.readline()
642 self.file = SSLFakeFile(self.sock)
745 if self.file:
746 self.file.close()
747 self.file = Non
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_math.py 27 # locate file with test values
29 file = sys.argv[0] variable
31 file = __file__ variable
32 test_dir = os.path.dirname(file) or os.curdir
83 """Parse a file with test values
108 """Parse a file with test values
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rfc822.py 16 To create a Message object: first open a file, e.g.:
18 fp = open(file, 'r')
20 You can use any other legal way of getting an open file object, e.g. use
21 sys.stdin or call os.popen(). Then pass the open file object to the Message()
37 an unseekable object such as a file object created from a socket object. If
39 file object is called once; if this raises an exception, seekable is reset to
117 """Rewind the file to the start of the body (if seekable)."""
119 raise IOError, "unseekable file"
135 file).
979 file = os.path.join(os.environ['HOME'], 'Mail/inbox/1' variable
    [all...]
smtplib.py 175 """A fake file like object that really wraps a SSLObject.
227 file = None variable in class:SMTP
348 Raises SMTPServerDisconnected if end-of-file is reached.
351 if self.file is None:
352 self.file = self.sock.makefile('rb')
355 line = self.file.readline()
642 self.file = SSLFakeFile(self.sock)
745 if self.file:
746 self.file.close()
747 self.file = Non
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_math.py 27 # locate file with test values
29 file = sys.argv[0] variable
31 file = __file__ variable
32 test_dir = os.path.dirname(file) or os.curdir
83 """Parse a file with test values
108 """Parse a file with test values
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
SourceRevealer.java 5 * you may not use this file except in compliance with the License.
87 * In such a case, just open that result. Give preference to the file name/line # search
98 * @param fileName file name in which the method is present, null if not known
99 * @param lineNumber line number in the file which should be given focus, -1 if not known.
119 // 1. if there are > 1 file name matches, try to see if they can be narrowed down
129 // Couldn't find file match, but we have a filename and line number: attempt
138 IFile file = (IFile) resource; local
143 IRegion region = AdtUtils.getRegionOfLine(file, lineNumber - 1);
158 return displayFile(file, lineNumber);
237 private boolean displayFile(IFile file, int lineNumber)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
ConfigureAssetSetPage.java 5 * you may not use this file except in compliance with the License.
88 import java.io.File;
236 fileLabel.setText("Image File:");
497 mValues.imagePath = new File(sImagePath);
594 } else if (!(new File(path).exists())) {
639 mValues.imagePath = new File(mImagePathText.getText().trim());
685 // Choose image file
694 String file = dialog.open(); local
695 if (file != null) {
696 mValues.imagePath = new File(file)
1032 File file = new File(path); local
1201 IFile file = newProject.getFile(dest); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptParser.java 5 * you may not use this file except in compliance with the License.
35 import java.io.File;
45 * " (skipping hidden file '&lt;file path&gt;'"
48 "^\\s+\\(skipping hidden file\\s'(.*)'\\)$"); //$NON-NLS-1$
68 * "Defined at file &lt;path&gt; line &lt;line&gt;"
75 * "Defined at file &lt;path&gt; line &lt;line&gt;"<br>
79 "Defined\\s+at\\s+file\\s+(.+)\\s+line\\s+(\\d+)"); //$NON-NLS-1$
88 * "ERROR parsing XML file &lt;path&gt;"<br>
92 "^Error\\s+parsing\\s+XML\\s+file\\s(.+)$"); //$NON-NLS-1
769 String file = filename.substring(root.length()); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 5 * you may not use this file except in compliance with the License.
162 * Checks an Xml file for validity. Errors/warnings will be marked on the
163 * file
169 // first make sure this is an xml file
171 IFile file = (IFile)resource; local
174 removeMarkersFromResource(file, AdtConstants.MARKER_XML);
177 XmlErrorHandler reporter = new XmlErrorHandler(file, visitor);
180 getParser().parse(file.getContents(), reporter);
214 * @param file The file from which to delete the markers
391 IAbstractFile file = e.getFile(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationMenuListener.java 5 * you may not use this file except in compliance with the License.
199 IFile file = chooser.getEditedFile(); local
200 List<IFile> variations = AdtUtils.getResourceVariations(file, true);
231 if (file != null) {
232 boolean selected = file.equals(resource);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
BinPacker.java 5 * you may not use this file except in compliance with the License.
24 import java.io.File;
342 File file = new File("/tmp/layout" + sLayoutId + "_pass" + sRectId + ".png"); local
344 ImageIO.write(image, "PNG", file);
345 System.out.println("Wrote diagnostics image " + file);

Completed in 592 milliseconds

<<41424344454647484950>>