/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
MethodAnnotationStruct.java | 5 * you may not use this file except in compliance with the License. 17 package com.android.dx.dex.file; 76 public void addContents(DexFile file) { 77 MethodIdsSection methodIds = file.getMethodIds(); 78 MixedItemSection wordData = file.getWordData(); 85 public void writeTo(DexFile file, AnnotatedOutput out) { 86 int methodIdx = file.getMethodIds().indexOf(method);
|
MethodIdsSection.java | 5 * you may not use this file except in compliance with the License. 17 package com.android.dx.dex.file; 28 * Method refs 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 MethodIdsSection(DexFile file) { 43 super("method_ids", file); 73 * Writes the portion of the file header that refers to this instance.
|
StringIdItem.java | 5 * you may not use this file except in compliance with the License. 17 package com.android.dx.dex.file; 25 * Representation of a string inside a Dalvik file. 86 public void addContents(DexFile file) { 89 MixedItemSection stringData = file.getStringData(); 97 public void writeTo(DexFile file, AnnotatedOutput out) {
|
/external/doclava/src/com/google/doclava/ |
SourcePositionInfo.java | 5 * you may not use this file except in compliance with the License. 22 public SourcePositionInfo(String file, int line, int column) { 23 this.file = file; 29 this.file = that.file; 53 return new SourcePositionInfo(that.file, line, 0); 69 return new SourcePositionInfo(that.file, line, 0); 74 return file + ':' + line; 79 int r = this.file.compareTo(that.file) 100 public String file; field in class:SourcePositionInfo [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/ |
parsecvs.php | 5 RCS file: /cvsroot/tools/org.eclipse.emf/.cvsignore,v //store 6 Working file: .cvsignore //don't need to store, basename(rcs file), minus ,v? 15 total revisions: 2; selected revisions: 2 //don't store, is count of commits to the file 31 $perfile_regex = "/^RCS\ file:\ (.+?$)\\n 32 ^Working\ file:\ (.+?$)\\n 63 $file = file_get_contents(($argv[1] ? $argv[1] : "php://stdin")); variable 67 preg_match_all("/^(RCS file:.+?^={77}$)/sm", $file, $regs) or die("Couldn't find any cvs logs!\n"); 70 /* parse each file's info * [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
VersionNumberStripper.java | 15 import java.io.File; 51 File file=new File(directory); local 53 File [] files = file.listFiles(); 72 files[i].renameTo(new File(targetPath));
|
/external/elfutils/src/libdwfl/ |
dwfl_module_getsrc_file.c | 3 This file is part of elfutils. 5 This file is free software; you can redistribute it and/or modify 63 return line->files->info[line->file].name; 75 file and line/column number. If any of the numbers is zero, 83 if (unlikely (line->file >= line->files->nfiles)) 90 const char *file = INTUSE(dwarf_line_file) (line); local 91 if (file != lastfile) 94 lastfile = file; 95 lastmatch = !strcmp (is_basename ? basename (file) : file, [all...] |
/external/elfutils/src/tests/ |
allfcts.c | 2 This file is part of elfutils. 4 This file is free software; you can redistribute it and/or modify 32 const char *file = dwarf_decl_file (func); local 37 printf ("%s:%d:%s\n", file, line, fct);
|
line2addr.c | 2 This file is part of elfutils. 4 This file is free software; you can redistribute it and/or modify 63 char *file; member in struct:args 79 if (dwfl_module_getsrc_file (mod, a->file, a->line, 0, &lines, &nlines) == 0) 85 const char *file = dwfl_lineinfo (lines[inner], &addr, &line, &col, local 87 if (file != NULL) 93 if (strcmp (file, a->file) || line != a->line || col != 0) 95 file, line); 99 || strcmp (file, a->file) || line != a->line || col != 0 [all...] |
low_high_pc.c | 3 This file is part of elfutils. 5 This file is free software; you can redistribute it and/or modify 38 const char *file; member in struct:args 46 printf("%s: [%" PRIx64 "] '%s' %s\n", args->file, off, name, msg); 101 a.file = dwarf_diename (a.cu);
|
/external/fonttools/MetaTools/ |
buildTableList.py | 32 file = open(os.path.join(tablesDir, "__init__.py"), "w") variable 34 file.write("# DON'T EDIT! This file is generated by MetaTools/buildTableList.py.\n") 35 file.write("def _moduleFinderHint():\n") 36 file.write('\t"""Dummy function to let modulefinder know what tables may be\n') 37 file.write('\tdynamically imported. Generated by MetaTools/buildTableList.py.\n') 38 file.write('\t"""\n') 40 file.write("\tfrom . import %s\n" % module) 42 file.close()
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/ |
FileToStreamDecoder.java | 1 package com.bumptech.glide.load.resource.file; 6 import java.io.File; 13 * A decoder that wraps an {@link InputStream} decoder to allow it to decode from a file. 17 public class FileToStreamDecoder<T> implements ResourceDecoder<File, T> { 34 public Resource<T> decode(File source, int width, int height) throws IOException { 59 public InputStream open(File file) throws FileNotFoundException { 60 return new FileInputStream(file);
|
StreamFileDataLoadProvider.java | 1 package com.bumptech.glide.load.resource.file; 11 import java.io.File; 16 * cache file from {@link java.io.InputStream} data. 18 public class StreamFileDataLoadProvider implements DataLoadProvider<InputStream, File> { 21 private final ResourceDecoder<File, File> cacheDecoder; 30 public ResourceDecoder<File, File> getCacheDecoder() { 35 public ResourceDecoder<InputStream, File> getSourceDecoder() { 45 public ResourceEncoder<File> getEncoder() [all...] |
/external/icu/icu4c/source/tools/gencfu/ |
gencfu.cpp | 7 * File gencfu.c 17 // Usage: gencfu [options] -r confusables-file.txt -w whole-script-confusables.txt -o output-file.cfu 62 printf("Usage: %s [-v] [-options] -r confusablesRules.txt -w wholeScriptConfusables.txt -o output-file\n", progName); 156 fprintf(stderr, "confusables file, whole script confusables file and output file must all be specified.\n"); 169 /* Combine the directory with the file name */ 178 // spoof detection data file parsing is dependent on regular expressions. 189 /* write the dummy data file */ 305 FILE *file; local [all...] |
/external/icu/icu4c/source/tools/gentest/ |
gentest.c | 8 * file name: gentest.c 16 * This program writes a little data file for testing the udata API. 80 "\tcreate the test file " DATA_NAME "." DATA_TYPE " unless the -r option is given.\n" 84 "\t\t-r or --genres generate resource file testtable32.txt instead of UData test \n" 95 /* printf("Generating the test memory mapped file\n"); */ 101 /* Create data file ----------------------------------------------------- */ 118 /* write the data to the file */ 126 fprintf(stderr, "gentest: error %d writing the output file\n", *errorCode); 139 /* Create Java file ----------------------------------------------------- */ 144 char file[512] local [all...] |
/external/iproute2/ip/ |
rtmon.c | 31 static void write_stamp(FILE *fp) 51 FILE *fp = (FILE*)arg; 61 fprintf(stderr, "Usage: rtmon file FILE [ all | LISTofOBJECTS]\n"); 69 FILE *fp; 76 char *file = NULL; local 105 } else if (matches(argv[1], "file") == 0) { 110 file = argv[1]; 131 if (file == NULL) [all...] |
/external/iptables/extensions/ |
libipt_realm.c | 36 const char file[] = "/etc/iproute2/rt_realms"; local 37 realms = xtables_lmap_init(file); 39 fprintf(stderr, "Warning: %s: %s\n", file, strerror(errno));
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
DynamicArray.java | 32 package com.jme3.scene.plugins.blender.file;
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/ |
FileLocator.java | 45 private File root; 52 root = new File(rootPath).getCanonicalFile(); 63 private File file; field in class:FileLocator.AssetInfoFile 65 public AssetInfoFile(AssetManager manager, AssetKey key, File file){ 67 this.file = file; 73 return new FileInputStream(file); 75 // NOTE: Can still happen even if file.exists() is true, e.g 84 File file = new File(root, name); local [all...] |
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/ |
HttpsTransportSE.java | 21 private final String file; field in class:HttpsTransportSE 24 public HttpsTransportSE(String host, int port, String file, int timeout) { 25 super(HttpsTransportSE.PROTOCOL + "://" + host + ":" + port + file); 27 + host + ":" + port + file); 30 this.file = file; 41 serviceConnection = new HttpsServiceConnectionSE(host, port, file, timeout);
|
/external/libmtp/examples/ |
pathutils.c | 2 * \file pathutils.c 72 /* if not number, assume a file name */ 74 LIBMTP_file_t * file = files; local 77 while (file != NULL) { 78 if (strcasecmp (file->filename, path) == 0) { 79 return file->item_id; 81 file = file->next; 94 LIBMTP_file_t * file; local 96 file = files [all...] |
/external/linux-tools-perf/src/tools/perf/tests/ |
attr.c | 11 * are stored into separate text file. Once perf command is finished 57 if (1 != fwrite(buf, size, 1, file)) { \ 58 perror("test attr - failed to write event file"); \ 59 fclose(file); \ 70 FILE *file; local 76 file = fopen(path, "w+"); 77 if (!file) { 78 perror("test attr - failed to open event file"); 82 if (fprintf(file, "[event-%d-%llu-%d]\n" [all...] |
dso-data.c | 99 char *file = test_file(TEST_FILE_SIZE); local 102 TEST_ASSERT_VAL("No test file", file); 106 dso = dso__new((const char *)file); 149 unlink(file);
|
pmu.c | 96 FILE *file; local 100 file = fopen(name, "w"); 101 if (!file) 104 if (1 != fwrite(format->value, strlen(format->value), 1, file)) 107 fclose(file);
|
/external/linux-tools-perf/src/tools/perf/util/ |
vdso.c | 21 FILE *maps; 97 char *file; local 99 file = get_file(); 100 if (!file) 106 dso__set_long_name(dso, file);
|