/dalvik/dx/src/com/android/dx/command/dump/ |
ClassDumper.java | 17 package com.android.dx.command.dump; 26 * Utility to dump the contents of class files in a human-friendly form. 34 * @param out {@code non-null;} where to dump to 40 public static void dump(byte[] bytes, PrintStream out, method in class:ClassDumper 44 cd.dump(); 49 * Use {@link #dump}. 59 public void dump() { method in class:ClassDumper
|
Main.java | 17 package com.android.dx.command.dump; 118 DotDumper.dump(bytes, name, parsedArgs); 120 BlockDumper.dump(bytes, System.out, name, false, parsedArgs); 122 BlockDumper.dump(bytes, System.out, name, true, parsedArgs); 126 SsaDumper.dump(bytes, System.out, name, parsedArgs); 128 ClassDumper.dump(bytes, System.out, name, parsedArgs);
|
/dalvik/dx/tests/120-disable-extended-ops/ |
run | 25 --dump-method=Blort.test Blort.class | grep "iget/jumbo" | wc -l` 32 --dump-method=Blort.test Blort.class | grep "iget/jumbo" | wc -l`
|
/external/llvm/include/llvm/MC/ |
MCLabel.h | 46 /// dump - Print the value to stderr. 47 void dump() const;
|
/external/llvm/include/llvm/MC/MCParser/ |
MCParsedAsmOperand.h | 33 /// dump - Print to the debug stream. 34 virtual void dump() const;
|
/external/llvm/lib/CodeGen/ |
LiveDebugVariables.h | 57 /// dump - Print data structures to dbgs(). 58 void dump();
|
/external/llvm/lib/MC/ |
MCValue.cpp | 34 void MCValue::dump() const { function in class:MCValue
|
/external/llvm/lib/Support/ |
BranchProbability.cpp | 25 void BranchProbability::dump() const { function in class:BranchProbability
|
/external/skia/src/animator/ |
SkDisplayRandom.h | 29 virtual void dump(SkAnimateMaker* );
|
SkDrawSaveLayer.h | 25 virtual void dump(SkAnimateMaker* );
|
SkDrawTextBox.h | 23 virtual void dump(SkAnimateMaker* );
|
SkDrawTo.h | 24 virtual void dump(SkAnimateMaker* );
|
/external/webkit/Source/WebCore/platform/graphics/filters/ |
FEGaussianBlur.h | 44 virtual void dump();
|
FEMerge.h | 37 virtual void dump();
|
FEOffset.h | 42 virtual void dump();
|
FETile.h | 36 virtual void dump();
|
SourceAlpha.h | 38 virtual void dump();
|
SourceGraphic.h | 39 virtual void dump();
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
SystemUI.java | 33 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { method in class:SystemUI
|
/ndk/build/tools/ |
dev-system-import.sh | 42 dump "WARNING: Could not extract default platform level from $BUILD_PROP!" 44 dump "Defaulting to $PLATFORM" 118 dump "ERROR: Missing required API/platform level. See --help for usage instructions." 228 dump "ERROR: Could not find valid output directory (e.g. \$NDK/../development/ndk)." 229 dump "Please use --out-dir=<path> to specify one!" 283 # Dump the list of dynamic functions exported by a given shared library 291 # Dump the list of global variables exposed by a given shared library 322 dump "Generating shell library for `basename $1` ($numfuncs functions + $numvars variables)" 338 dump "ERROR: Can't generate shell library for: $1" 339 dump "See the content of $TMPC for details. [all...] |
build-gdbserver.sh | 156 dump "ERROR: Missing directory: $LIBTHREAD_DB_DIR" 165 dump "ERROR: Could not compile libthread_db.c!" 173 dump "Configure: $TOOLCHAIN gdbserver-$GDB_VERSION build." 214 dump "Could not configure gdbserver build. See $TMPLOG" 222 dump "Building : $TOOLCHAIN gdbserver." 226 dump "Could not build $TOOLCHAIN gdbserver. Use --verbose to see why." 240 dump "Install : $TOOLCHAIN $DSTFILE." 245 dump "Could not install $DSTFILE. See $TMPLOG" 252 dump "Packaging: $ARCHIVE" 261 dump "Done. [all...] |
dev-platform-import.sh | 88 dump "ERROR: Missing path parameter to platform build, see --help for details" 99 dump "ERROR: Not a directory: $ANDROID_PRODUCT_OUT" 100 dump "Please point to a valid and complete Android build directory" 106 dump "ERROR: Missing file: $BUILD_PROP" 107 dump "Please point to a valid and complete Android build directory" 116 dump "ERROR: Could not extract CPU ABI from $BUILD_PROP" 117 dump "Please use --arch=<name> to override this. See --help" 123 dump "ERROR: Can't translate $CPU_ABI ABI into CPU architecture!" 133 dump "WARNING: Could not extract default platform level from $BUILD_PROP!" 134 dump "Please use --platform=<name> to override this. See --help [all...] |
make-release.sh | 172 dump "Using toolchain source directory: $TOOLCHAIN_SRCDIR" 176 dump "Downloading toolchain sources..." 181 dump "ERROR: Could not download toolchain sources" 196 dump "Building host toolchain binaries..." 203 dump "Building Darwin prebuilts through ssh to $DARWIN_SSH..." 211 dump "Building windows toolchain binaries..." 223 dump "Generating NDK release packages" 226 dump "ERROR: Can't generate proper release packages." 232 dump "All clear. Good work! See $OUT_DIR"
|
/packages/apps/Email/src/org/apache/commons/io/ |
HexDump.java | 44 * Dump an array of bytes to an OutputStream.
59 public static void dump(byte[] data, long offset,
method in class:HexDump 81 dump(buffer, display_offset).append(' ');
84 dump(buffer, data[k + j]);
method 121 * Dump a long value into a StringBuffer.
123 * @param _lbuffer the StringBuffer to dump the value in
127 private static StringBuffer dump(StringBuffer _lbuffer, long value) {
method in class:HexDump 136 * Dump a byte value into a StringBuffer.
138 * @param _cbuffer the StringBuffer to dump the value in
142 private static StringBuffer dump(StringBuffer _cbuffer, byte value) { method in class:HexDump [all...] |
/external/skia/src/gpu/ |
gr_unittests.cpp | 29 static void dump(const GrTDArray<int>& array) { function 41 *array.append() = 0; dump(array); 42 *array.append() = 2; dump(array); 43 *array.append() = 4; dump(array); 44 *array.append() = 6; dump(array); 47 *array.insert(0) = -1; dump(array); 48 *array.insert(2) = 1; dump(array); 49 *array.insert(4) = 3; dump(array); 50 *array.insert(7) = 7; dump(array); 52 array.remove(3); dump(array) [all...] |