HomeSort by relevance Sort by last modified time
    Searched full:file (Results 676 - 700 of 168772) sorted by null

<<21222324252627282930>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
xmldsodid.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.
  /prebuilts/tools/common/proguard/proguard4.7/bin/
proguard.sh 3 # Start-up script for ProGuard -- free class file shrinker, optimizer,
6 # Note: when passing file names containing spaces to this script,
8 # "\"/My Directory/My File.txt\""
retrace.sh 3 # Start-up script for Retrace -- companion tool for ProGuard, free class file
6 # Note: when passing file names containing spaces to this script,
8 # "\"/My Directory/My File.txt\""
  /sdk/testapps/aidlTest/libWithAidl/
project.properties 1 # This file is automatically generated by Android Tools.
2 # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
4 # This file must be checked in Version Control Systems.
  /sdk/testapps/basicProjectWithAidl/
project.properties 1 # This file is automatically generated by Android Tools.
2 # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
4 # This file must be checked in Version Control Systems.
  /sdk/testapps/customViewTest/libWithCustomView/
project.properties 1 # This file is automatically generated by Android Tools.
2 # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
4 # This file must be checked in Version Control Systems.
  /sdk/testapps/jarCheckTests1/lib1/
project.properties 1 # This file is automatically generated by Android Tools.
2 # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
4 # This file must be checked in Version Control Systems.
  /sdk/testapps/jarCheckTests1/lib2/
project.properties 1 # This file is automatically generated by Android Tools.
2 # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
4 # This file must be checked in Version Control Systems.
  /sdk/testapps/jarCheckTests2/lib1/
project.properties 1 # This file is automatically generated by Android Tools.
2 # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
4 # This file must be checked in Version Control Systems.
  /sdk/testapps/jarCheckTests2/lib2/
project.properties 1 # This file is automatically generated by Android Tools.
2 # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
4 # This file must be checked in Version Control Systems.
  /sdk/testapps/jarCheckTests3/lib1/
project.properties 1 # This file is automatically generated by Android Tools.
2 # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
4 # This file must be checked in Version Control Systems.
  /sdk/testapps/jarCheckTests3/lib2/
project.properties 1 # This file is automatically generated by Android Tools.
2 # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
4 # This file must be checked in Version Control Systems.
  /art/compiler/
elf_writer.h 5 * you may not use this file except in compliance with the License.
38 // Looks up information about location of oat file in elf file container.
40 static void GetOatElfInformation(File* file,
47 static bool Fixup(File* file, uintptr_t oat_data_begin);
50 ElfWriter(const CompilerDriver& driver, File* elf_file)
63 File* const elf_file_;
  /art/test/097-duplicate-method/
info.txt 1 This is a test to verify that duplicate methods in a dex file are handled
  /art/test/126-miranda-multidex/
info.txt 1 This test ensures that cross-dex-file Miranda methods are correctly resolved.
  /art/test/127-secondarydex/
info.txt 1 Test features with a secondary dex file.
  /art/test/138-duplicate-classes-check2/
info.txt 2 it before creating the dex file).
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
DebugInfoItem.java 5 * you may not use this file except in compliance with the License.
31 public void read(DexRandomAccessFile file) throws IOException {
32 file.getOffsetTracker().getNewOffsettable(file, this);
34 file.read(data);
38 public void write(DexRandomAccessFile file) throws IOException {
39 file.getOffsetTracker().updatePositionOfNextOffsettable(file);
40 file.write(data);
EncodedAnnotation.java 5 * you may not use this file except in compliance with the License.
27 public void read(DexRandomAccessFile file) throws IOException {
28 typeIdx = file.readUleb128();
29 size = file.readUleb128();
33 (elements[i] = new AnnotationElement()).read(file);
39 public void write(DexRandomAccessFile file) throws IOException {
40 file.writeUleb128(typeIdx);
41 file.writeUleb128(size);
44 annotationElement.write(file);
EncodedArrayItem.java 5 * you may not use this file except in compliance with the License.
25 public void read(DexRandomAccessFile file) throws IOException {
26 file.getOffsetTracker().getNewOffsettable(file, this);
27 (value = new EncodedArray()).read(file);
31 public void write(DexRandomAccessFile file) throws IOException {
32 file.getOffsetTracker().updatePositionOfNextOffsettable(file);
33 value.write(file);
EncodedCatchHandler.java 5 * you may not use this file except in compliance with the License.
27 public void read(DexRandomAccessFile file) throws IOException {
28 size = file.readSleb128();
33 (handlers[i] = new EncodedTypeAddrPair()).read(file);
37 catchAllAddr = file.readUleb128();
42 public void write(DexRandomAccessFile file) throws IOException {
43 file.writeSleb128(size);
46 encodedTypeAddrPair.write(file);
50 file.writeUleb128(catchAllAddr);
FieldAnnotation.java 5 * you may not use this file except in compliance with the License.
26 public void read(DexRandomAccessFile file) throws IOException {
27 fieldIdx = file.readUInt();
28 annotationsOff = file.getOffsetTracker().getNewOffset(file.readUInt());
32 public void write(DexRandomAccessFile file) throws IOException {
33 file.writeUInt(fieldIdx);
34 file.getOffsetTracker().tryToWriteOffset(annotationsOff, file, false /* ULEB128 */);
MethodAnnotation.java 5 * you may not use this file except in compliance with the License.
26 public void read(DexRandomAccessFile file) throws IOException {
27 methodIdx = file.readUInt();
28 annotationsOff = file.getOffsetTracker().getNewOffset(file.readUInt());
32 public void write(DexRandomAccessFile file) throws IOException {
33 file.writeUInt(methodIdx);
34 file.getOffsetTracker().tryToWriteOffset(annotationsOff, file, false /* ULEB128 */);
ParameterAnnotation.java 5 * you may not use this file except in compliance with the License.
26 public void read(DexRandomAccessFile file) throws IOException {
27 methodIdx = file.readUInt();
28 annotationsOff = file.getOffsetTracker().getNewOffset(file.readUInt());
32 public void write(DexRandomAccessFile file) throws IOException {
33 file.writeUInt(methodIdx);
34 file.getOffsetTracker().tryToWriteOffset(annotationsOff, file, false /* ULEB128 */);
TryItem.java 5 * you may not use this file except in compliance with the License.
27 public void read(DexRandomAccessFile file) throws IOException {
28 startAddr = file.readUInt();
29 insnCount = file.readUShort();
30 handlerOff = file.readUShort();
34 public void write(DexRandomAccessFile file) throws IOException {
35 file.writeUInt(startAddr);
36 file.writeUShort(insnCount);
37 file.writeUShort(handlerOff);

Completed in 574 milliseconds

<<21222324252627282930>>