/dalvik/dx/src/com/android/dx/dex/file/ |
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);
|
/development/samples/ApiDemos/src/com/example/android/apis/os/ |
MmsFileProvider.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 76 File file = new File(getContext().getCacheDir(), uri.getPath()); local 81 return ParcelFileDescriptor.open(file, mode);
|
/external/apache-http/android/src/com/android/internal/http/multipart/ |
FilePartSource.java | 9 * 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 34 import java.io.File; 41 * A PartSource that reads from a File. 51 /** File part file. */ 52 private File file = null; field in class:FilePartSource 54 /** File part file name. * [all...] |
/external/bison/src/ |
location.h | 5 This file is part of Bison, the GNU Compiler Compiler. 28 /* The name of the file that contains the boundary. */ 29 uniqstr file; member in struct:__anon4729 53 b->file = f; 63 int res = strcmp (a.file, b.file); 77 && UNIQSTR_EQ (a.file, b.file)); 101 /* Print location to file. Return number of actually printed 103 unsigned location_print (FILE *out, location loc) [all...] |
/external/boringssl/src/crypto/x509/ |
by_file.c | 73 "Load file into cache", 94 char *file; local 101 file = (char *)getenv(X509_get_default_cert_file_env()); 102 if (file) 103 ok = (X509_load_cert_crl_file(ctx,file, 128 int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type) 135 if (file == NULL) return(1); 138 if ((in == NULL) || (BIO_read_filename(in,file) <= 0)) 194 int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type) 201 if (file == NULL) return(1) [all...] |
/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/src/libdw/ |
dwarf_getscopevar.c | 3 This file is part of elfutils. 5 This file is free software; you can redistribute it and/or modify 57 If MATCH_FILE is not null, accept only declaration in that source file; 71 /* Match against the given file name. */ 80 const char *file = files->info[idx].name; local 81 if (file != lastfile) 83 size_t len = strlen (file); 85 && !memcmp (match_file, file, match_file_len) 87 || file[len - match_file_len - 1] == '/'));
|
/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, (long)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/google-breakpad/src/common/ |
dwarf_line_to_module.cc | 101 // Find a Module::File object of the given name, and add it to the 102 // file table. 124 // Find the source file being referred to. 125 Module::File *file = files_[file_num]; local 126 if (!file) { 129 "undefined file numbers\n"); 138 line.file = file;
|
stabs_to_module_unittest.cc | 52 EXPECT_TRUE(h.Line(0xfde4abbed390c394LL, "source-file-name", 174823314)); 58 Module::File *file = m.FindExistingFile("source-file-name"); local 59 ASSERT_TRUE(file != NULL); 73 EXPECT_TRUE(line->file == file); 124 Module::File *file = m.FindExistingFile("compilation-unit"); local 125 ASSERT_TRUE(file != NULL) 204 Module::File *file = m.FindExistingFile("compilation-unit"); local [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 | 19 // read a file list -------------------------------------------------------- *** 32 /* check for multiple text file suffixes to see if this list name is a text file name */ 49 * Read a file list. 50 * If the listname ends with ".txt", then read the list file 52 * If the listname ends with ".dat", then read the ICU .dat package file. 53 * Otherwise, read the file itself as a single-item list. 58 FILE *file; local 62 fprintf(stderr, "missing list file\n") [all...] |
/external/iproute2/ip/ |
ipmonitor.c | 40 FILE *fp = (FILE*)arg; 114 char *file = NULL; local 128 if (matches(*argv, "file") == 0) { 130 file = *argv; 179 if (file) { 180 FILE *fp; 181 fp = fopen(file, "r");
|