/external/skia/resources/android_fonts/pre_v17/ |
fallback_fonts.xml | 5 This file specifies the fonts, and the priority order, that will be searched for any 7 Each entry consists of a family tag and a list of files (file names) which support that 10 families are listed in this file represents the order in which these fallback fonts 19 There is another optional file in /vendor/etc/fallback_fonts.xml. That file can be used to 21 fallback fonts. That file can also specify the order in which the fallback fonts should be 28 <file>DroidNaskh-Regular.ttf</file> 33 <file>DroidSansEthiopic-Regular.ttf</file> [all...] |
system_fonts.xml | 5 This file lists the font families that will be used by default for all supported glyphs. 9 the styles with no associated font file will be supported by the other font files listed. 15 The default fallback fonts are specified in the file /system/etc/fallback_fonts.xml, and there 16 is an optional file which may be supplied by vendors to specify other fallback fonts to use 30 <file>Roboto-Regular.ttf</file> 31 <file>Roboto-Bold.ttf</file> 32 <file>Roboto-Italic.ttf</file> [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/ |
RawResourceLoader.java | 3 import java.io.File; 11 private File resourceDir; 13 public RawResourceLoader(ResourceExtractor resourceExtractor, File resourceDir) { 22 File rawResourceDir = new File(resourceDir, "raw"); 25 File[] files = rawResourceDir.listFiles(); 27 File file = files[i]; local 28 String name = file.getName(); 37 return new FileInputStream(file); [all...] |
/external/toybox/tests/ |
link.test | 11 testing "link fails on non-existent file" "link foo/foo baz || echo GOOD" "GOOD\n" "" "" 14 echo file1 > file 15 testing "ln create_hardlink" "link file hlink && [ file -ef hlink ] && 20 testing "ln preserves_hardlinks" "link file hlink 2>/dev/null || echo 'yes'; rm -rf hlink" \ 23 echo file1 > file 24 testing "ln create_hardlink_and_remove_sourcefile" "link file hlink && 25 [ file -ef hlink ] && rm -rf file && [ -f hlink ] && echo 'yes'; rm -f file hlink" [all...] |
chmod.test | 22 touch file 31 if [ "$type" == file ] 37 type=file 48 rm -rf dir file && mkdir dir && touch file 49 testing "chmod 750 dir 640 file" \ 50 "chmod 750 dir 640 file 2>/dev/null || 51 ls -ld dir file | cut -d' ' -f 1 | cut -d. -f 1" "drwxr-x---\n-rwxr-x---\n" "" "" 53 rm -rf dir file && mkdir dir && touch file [all...] |
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/ |
MockContext.java | 5 * you may not use this file except in compliance with the License. 52 return null; //To change body of implemented methods use File | Settings | File Templates. 60 return null; //To change body of implemented methods use File | Settings | File Templates. 65 return null; //To change body of implemented methods use File | Settings | File Templates. 70 return null; //To change body of implemented methods use File | Settings | File Templates. 75 return null; //To change body of implemented methods use File | Settings | File Templates [all...] |
/device/sample/products/ |
AndroidProducts.mk | 2 # This file should set PRODUCT_MAKEFILES to a list of product makefiles 4 # the directory containing this file. 6 # This file may not rely on the value of any variable other than 8 # value of any variable that isn't set in this file or in a file that
|
/external/selinux/libsepol/tests/policies/test-expander/ |
base-base-only.conf | 2 class file 6 common file 11 class file 12 inherits file 31 mlsconstrain file { read }
|
/external/sonic/ |
wave.h | 4 This file is part of the Sonic Library. 6 This file is licensed under the Apache 2.0 license. */ 14 int closeWaveFile(waveFile file); 15 int readFromWaveFile(waveFile file, short *buffer, int maxSamples); 16 int writeToWaveFile(waveFile file, short *buffer, int numSamples);
|
/external/v8/test/cctest/ |
OWNERS | 1 per-file *-mips*=paul.lind@imgtec.com 2 per-file *-mips*=gergely.kis@imgtec.com 3 per-file *-mips*=akos.palfi@imgtec.com 4 per-file *-mips*=balazs.kilvady@imgtec.com 5 per-file *-mips*=dusan.milosavljevic@imgtec.com
|
/external/valgrind/none/tests/scripts/ |
shell.stdout.exp | 2 Execute a non-executable file 4 Execute a binary file 5 Execute a non-existent file 6 Execute a non-existent file (2) 12 Execute a zero-length file
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/ |
file.h | 2 * This file has no copyright assigned and is placed in the Public Domain. 3 * This file is part of the mingw-w64 runtime package. 4 * No warranty is given; refer to the file DISCLAIMER.PD within this package. 7 * This file is part of the Mingw32 package. 9 * This file.h maps to the root fcntl.h
|
/external/srtp/ |
srtp.vcproj | 326 <File 329 </File> 330 <File 333 </File> 337 <File 340 </File> 341 <File 344 </File> 345 <File 348 </File> [all...] |
/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
ProtoIdItem.java | 5 * you may not use this file except in compliance with the License. 27 public void read(DexRandomAccessFile file) throws IOException { 28 file.getOffsetTracker().getNewOffsettable(file, this); 29 shortyIdx = file.readUInt(); 30 returnTypeIdx = file.readUInt(); 31 parametersOff = file.getOffsetTracker().getNewOffset(file.readUInt()); 35 public void write(DexRandomAccessFile file) throws IOException { 36 file.getOffsetTracker().updatePositionOfNextOffsettable(file) [all...] |
/frameworks/rs/api/ |
GenerateHeaderFiles.cpp | 5 * you may not use this file except in compliance with the License. 26 // Convert a file name into a string that can be used to guard the include file with #ifdef... 45 static void writeVersionGuardStart(GeneratedFile* file, VersionInfo info, int finalVersion) { 47 *file << "#ifndef __LP64__\n"; 49 *file << "#ifdef __LP64__\n"; 64 *file << "#if !defined(RS_VERSION) || " << checkMaxVersion.str() << "\n"; 67 *file << "#if (defined(RS_VERSION) && (RS_VERSION >= " << info.minVersion << ")"; 69 *file << " && " << checkMaxVersion.str(); 71 *file << ")\n" 316 GeneratedFile file; local [all...] |
/libcore/tzdata/update/src/test/libcore/tzdata/update/ |
FileUtilsTest.java | 5 * you may not use this file except in compliance with the License. 25 import java.io.File; 42 private List<File> testFiles = new ArrayList<>(); 48 for (File tempFile : testFiles) { 56 File file1 = createTextFile(content); 57 File file2 = createTextFile(content); 58 File file3 = createTextFile(content + "!"); 69 File dir = createTempDir(); 70 File file1 = createRegularFile(dir, "file1"); 71 File file2 = createRegularFile(dir, "file2") 244 File file = createTextFile("One\\nTwo\\nThree\\n"); local 252 File file = File.createTempFile(getClass().getSimpleName(), ".txt"); local 322 File file = new File(dir, name); local [all...] |
/external/lzma/CPP/7zip/Bundles/Alone7z/ |
Alone.dsp | 1 # Microsoft Developer Studio Project File - Name="Alone" - Package Owner=<4>
2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
145 # Begin Source File
148 # End Source File
149 # Begin Source File
152 # End Source File
153 # Begin Source File
156 # End Source File
157 # Begin Source File
160 # End Source File
[all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/ |
FileSystemResourceLoader.java | 5 * you may not use this file except in compliance with the License. 21 import java.io.File; 34 private final File rootDir; 36 public FileSystemResourceLoader(File rootDir) { 41 this(new File(rootDir)); 46 File file = new File(rootDir, name); local 47 // Check for non-directory rather than is-file so that reads from 49 if (file.exists() && !file.isDirectory() && file.canRead()) 73 File file = new File(rootDir, filename); local [all...] |
/external/libvpx/libvpx/ |
video_writer.c | 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. 19 FILE *file; member in struct:VpxVideoWriterStruct 23 static void write_header(FILE *file, const VpxVideoInfo *info, 31 ivf_write_file_header(file, &cfg, info->codec_fourcc, frame_count); 39 FILE *const file = fopen(filename, "wb") local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
video_writer.c | 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. 19 FILE *file; member in struct:VpxVideoWriterStruct 23 static void write_header(FILE *file, const VpxVideoInfo *info, 31 ivf_write_file_header(file, &cfg, info->codec_fourcc, frame_count); 39 FILE *const file = fopen(filename, "wb") local [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/ |
FileFileFilter.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 19 import java.io.File; 23 * This filter accepts <code>File</code>s that are files (not directories). 29 * File dir = new File("."); 30 * String[] files = dir.list( FileFileFilter.FILE ); 41 /** Singleton instance of file filter */ 42 public static final IOFileFilter FILE = new FileFileFilter() [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
FileAccessPermissionTest.java | 5 * you may not use this file except in compliance with the License. 22 import java.io.File; 30 * This is testing for file access permissions. 39 * create a sdcard image file then start emulator with command emulator -sdcard <filepath> 42 * mksdcard <size> <file> 45 * TODO: Combine this file with {@link android.permission.cts.FileSystemPermissionTest} 53 File file = new File("/system"); local 54 assertTrue(file.canRead()) 82 File file = new File("\/system\/app"); local 100 File file = new File("\/data\/app"); local [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/ |
ResourceLoaderAdaptor.java | 5 * you may not use this file except in compliance with the License. 25 import java.io.File; 58 File file = locateFile(name); local 59 if (file == null) { 60 throw new FileNotFoundException("Could not locate file " + name); 62 return new InputStreamReader(new FileInputStream(file), "UTF-8"); 71 text.append("No file '"); 97 * @param name name of the file to locate. 98 * @return a File object corresponding to the existing file or {@code null} if it does not exist 103 File file = newFile(name); local 106 File file = null; local 144 File file = newFile(path, filename); local 174 File file = locateFile(filename); local 191 File file = locateFile(filename); local [all...] |
/external/antlr/antlr-3.4/runtime/C/ |
Cvs2005.vcproj | 738 <File 741 </File> 742 <File 745 </File> 746 <File 749 </File> 750 <File 753 </File> 754 <File 757 </File> [all...] |
/libcore/tzdata/update/src/main/libcore/tzdata/update/ |
FileUtils.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 39 * Creates a new {@link java.io.File} from the {@code parentDir} and {@code name}, but only if 40 * the resulting file would exist beneath {@code parentDir}. Useful if {@code name} could 43 * @throws java.io.IOException if the file would not exist beneath {@code parentDir} 45 public static File createSubFile(File parentDir, String name) throws IOException { 48 File subFile = new File(parentDir, name).getCanonicalFile(); 66 public static void ensureDirectoriesExist(File dir, boolean makeWorldReadable 173 File file = new File(rootDir, fileName); local [all...] |