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

<<11121314151617181920>>

  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ProtoIdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
28 * Representation of a method prototype reference inside a Dalvik file.
111 public void addContents(DexFile file) {
112 StringIdsSection stringIds = file.getStringIds();
113 TypeIdsSection typeIds = file.getTypeIds();
114 MixedItemSection typeLists = file.getTypeLists();
126 public void writeTo(DexFile file, AnnotatedOutput out) {
127 int shortyIdx = file.getStringIds().indexOf(shortForm);
128 int returnIdx = file.getTypeIds().indexOf(prototype.getReturnType())
    [all...]
ProtoIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
29 * {@code .dex} file.
38 * Constructs an instance. The file offset is initially unknown.
40 * @param file {@code non-null;} file that this instance is part of
42 public ProtoIdsSection(DexFile file) {
43 super("proto_ids", file, 4);
61 * Writes the portion of the file header that refers to this instance.
StringDataItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
26 * Representation of string data for a particular string, in a Dalvik file.
65 public void addContents(DexFile file) {
71 public void writeTo0(DexFile file, AnnotatedOutput out) {
StringIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
29 * Strings list section of a {@code .dex} file.
40 * Constructs an instance. The file offset is initially unknown.
42 * @param file {@code non-null;} file that this instance is part of
44 public StringIdsSection(DexFile file) {
45 super("string_ids", file, 4);
75 * Writes the portion of the file header that refers to this instance.
TypeIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
29 * Type identifiers list section of a {@code .dex} file.
38 * Constructs an instance. The file offset is initially unknown.
40 * @param file {@code non-null;} file that this instance is part of
42 public TypeIdsSection(DexFile file) {
43 super("type_ids", file, 4);
74 * Writes the portion of the file header that refers to this instance.
UniformListItem.java 5 * 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) {
123 i.addContents(file);
189 protected void writeTo0(DexFile file, AnnotatedOutput out) {
200 i.writeTo(file, out);
  /external/e2fsprogs/lib/blkid/
dev.c 8 * This file may be redistributed under the terms of the
206 char *file = NULL; local
213 file = optarg;
234 if ((ret = blkid_get_cache(&cache, file)) != 0) {
  /external/elfutils/src/
ldscript.y 4 This file is part of Red Hat elfutils.
48 describing information from the file. */
143 file
148 file: file content label
185 file in the group don't do anything. */
379 file in the group don't do anything. */
558 /* If the output file should be stripped of all symbol set the flag
  /external/elfutils/tests/
get-lines.c 2 This file is part of Red Hat elfutils.
103 const char *file = dwarf_linesrc (l, NULL, NULL); local
109 file ?: "???", line);
  /external/eyes-free/AccessCheck/src/com/android/accessibility/
AccessibilityValidator.java 5 * use this file except in compliance with the License. You may obtain a copy of
38 private final File mRootFilePath;
46 private final File mAndroidSdkPath;
74 mRootFilePath = new File(rootPath);
75 mAndroidSdkPath = new File(androidSdkPath);
107 private List<InputSource> findLayoutFiles(File directory) {
110 for (File file : directory.listFiles()) {
111 // The file is a directory; recurse on the file
    [all...]
  /external/grub/
Android.mk 4 ## you may not use this file except in compliance with the License.
55 ## 2) Get the size of pre_stage2 from (1) and generate a header file.
56 ## 3) Build the "start sector" with the header file.
115 ## Generate the stage2 start file (2) + (3)
142 # <generate the header file>
154 # </generate the header file>
172 file := $(PRODUCT_OUT)/grub/grub_stage2 macro
173 $(file) : $(my_files)
176 #ALL_PREBUILT += $(file)
  /external/icu4c/common/
dictionarydata.h 82 UCharsDictionaryMatcher(const UChar *c, UDataMemory *f) : characters(c), file(f) { }
89 UDataMemory *file; member in class:UCharsDictionaryMatcher
96 // the transform constant should be the constant read from the file, not a masked version!
99 : characters(c), transformConstant(t), file(f) { }
109 UDataMemory *file; member in class:BytesDictionaryMatcher
121 * A dictionary .dict data file contains a byte-serialized BytesTrie or
128 * A .dict file begins with a standard ICU data file header
132 * After the header, the file contains the following parts.
142 * Each byte offset marks the start of the next part in the data file,
    [all...]
  /external/icu4c/tools/toolutil/
filestrm.c 9 * File FILESTRM.C
34 FILE *file = fopen(filename, mode); local
35 return (FileStream*)file;
47 FILE* result = _wfopen(filename, mode);
52 FILE *result;
76 fclose((FILE*)fileStream);
82 FILE* temp = fopen(filename, "r");
97 FILE* file = tmpfile()
    [all...]
unewdata.c 8 * file name: unewdata.c
28 FileStream *file; member in struct:UNewDataMemory
84 /* open the output file */
100 pData->file=T_FileStream_open(filename, "wb");
101 if(pData->file==NULL) {
120 T_FileStream_write(pData->file, &pData->headerSize, 4);
123 T_FileStream_write(pData->file, pInfo, pInfo->size);
127 T_FileStream_write(pData->file, comment, commentLength);
135 T_FileStream_write(pData->file, bytes, headerSize);
150 if(pData->file!=NULL)
    [all...]
uparse.c 8 * file name: uparse.c
16 * This file provides a parser for files that are delimited by one single
77 FileStream *file; local
93 file=T_FileStream_stdin();
95 file=T_FileStream_open(filename, "r");
97 if(file==NULL) {
102 while(T_FileStream_readLine(file, line, sizeof(line))!=NULL) {
177 T_FileStream_close(file);
  /external/iproute2/misc/
lnstat.h 17 struct lnstat_file *file; member in struct:lnstat_field
31 FILE *fp;
40 int lnstat_dump(FILE *outfd, struct lnstat_file *lnstat_files);
  /external/jmonkeyengine/engine/src/test/jme3test/scene/
TestSceneLoading.java 46 import java.io.File;
71 File file = new File("wildhouse.zip"); local
72 if (!file.exists()) {
  /external/jmonkeyengine/engine/src/test/jme3test/water/
TestPostWaterLake.java 46 import java.io.File;
67 File file = new File("wildhouse.zip"); local
69 if (file.exists()) {
  /external/jmonkeyengine/engine/src/tools/jme3tools/savegame/
SaveGame.java 14 import java.io.File;
41 File daveFolder = new File(JmeSystem.getStorageFolder().getAbsolutePath() + File.separator + gamePath.replaceAll("/", File.separator));
43 Logger.getLogger(SaveGame.class.getName()).log(Level.SEVERE, "Error creating save file!");
46 File saveFile = new File(daveFolder.getAbsolutePath() + File.separator + dataName);
49 Logger.getLogger(SaveGame.class.getName()).log(Level.SEVERE, "Error creating save file!");
93 File file = new File(JmeSystem.getStorageFolder().getAbsolutePath() + File.separator + gamePath.replaceAll("\/", File.separator) + File.separator + dataName); local
    [all...]
  /external/kernel-headers/original/linux/
file.h 37 struct file ** fd; /* current fd array */
46 * Open file table structure
62 struct file * fd_array[NR_OPEN_DEFAULT];
67 extern void FASTCALL(__fput(struct file *));
68 extern void FASTCALL(fput(struct file *));
70 static inline void fput_light(struct file *file, int fput_needed)
73 fput(file);
76 extern struct file * FASTCALL(fget(unsigned int fd));
77 extern struct file * FASTCALL(fget_light(unsigned int fd, int *fput_needed))
96 struct file * file = NULL; local
    [all...]
  /external/libmtp/examples/
detect.c 2 * \file detect.c
202 // Try to get Media player device info XML file...
205 LIBMTP_file_t *file, *tmp; local
206 file = files;
207 while (file != NULL) {
208 if (!strcmp(file->filename, "WMPInfo.xml") ||
209 !strcmp(file->filename, "WMPinfo.xml") ||
210 !strcmp(file->filename, "default-capabilities.xml")) {
211 if (file->item_id != 0) {
212 /* Dump this file */
    [all...]
  /external/libvorbis/test/
write_read.c 3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
34 FILE * file ; local
45 if ((file = fopen (filename, "wb")) == NULL) {
82 fwrite (og.header,1,og.header_len,file);
83 fwrite (og.body,1,og.body_len,file);
112 fwrite (og.header,1,og.header_len,file);
113 fwrite (og.body,1,og.body_len,file);
127 fclose (file) ;
145 FILE *file local
    [all...]
  /external/libvorbis/vq/
huffbuild.c 3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
25 static int getval(FILE *in,int begin,int n,int group,int max){
66 FILE *file; local
104 /* scan the file for maximum value */
105 file=fopen(infile,"r");
106 if(!file){
107 fprintf(stderr,"Could not open file %s\n",infile);
119 if(get_next_ivalue(file,&v))break;
124 rewind(file);
    [all...]
  /external/libvpx/libvpx/vpx_mem/include/
vpx_mem_tracker.h 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.
30 char *file; member in struct:mem_block
65 char * file, unsigned int line)
68 file - the file addr was referenced from
69 line - the line in file addr was referenced from
70 Adds memory address addr, it's size, file and line it came from
74 char *file, unsigned int line
    [all...]
  /external/okhttp/src/test/java/com/squareup/okhttp/
RequestTest.java 5 * you may not use this file except in compliance with the License.
20 import java.io.File;
62 @Test public void file() throws Exception { method in class:RequestTest
63 File file = File.createTempFile("RequestTest", "tmp"); local
64 FileWriter writer = new FileWriter(file);
69 Request.Body body = Request.Body.create(contentType, file);

Completed in 205 milliseconds

<<11121314151617181920>>