HomeSort by relevance Sort by last modified time
    Searched defs:annotate (Results 1 - 25 of 49) sorted by null

1 2

  /dalvik/dexgen/src/com/android/dexgen/util/
AnnotatedOutput.java 49 public void annotate(String msg); method in interface:AnnotatedOutput
62 public void annotate(int amt, String msg); method in interface:AnnotatedOutput
66 * until the next call to {@link #annotate}.
  /dalvik/dx/src/com/android/dx/util/
AnnotatedOutput.java 49 public void annotate(String msg); method in interface:AnnotatedOutput
62 public void annotate(int amt, String msg); method in interface:AnnotatedOutput
66 * until the next call to {@link #annotate}.
  /external/dexmaker/src/dx/java/com/android/dx/util/
AnnotatedOutput.java 49 public void annotate(String msg); method in interface:AnnotatedOutput
62 public void annotate(int amt, String msg); method in interface:AnnotatedOutput
66 * until the next call to {@link #annotate}.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dircache.py 5 The annotate() routine appends slashes to directories."""
12 __all__ = ["listdir", "opendir", "annotate", "reset"]
37 def annotate(head, list): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dircache.py 5 The annotate() routine appends slashes to directories."""
12 __all__ = ["listdir", "opendir", "annotate", "reset"]
37 def annotate(head, list): function
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsContextAnnotation.cpp 145 void GraphicsContextAnnotator::annotate(const PaintInfo& paintInfo, const RenderObject* object) function in class:WebCore::GraphicsContextAnnotator
  /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
DoubleEncodedValue.java 63 out.annotate(1, "value_type=" + ValueType.VALUE_DOUBLE.name() + ",value_arg=" + (bytes.length - 1));
64 out.annotate(bytes.length, "value: " + value);
EnumEncodedValue.java 66 out.annotate(1, "value_type=" + ValueType.VALUE_ENUM.name() + ",value_arg=" + (bytes.length - 1));
67 out.annotate(bytes.length, "value: " + value.getFieldString());
FieldEncodedValue.java 66 out.annotate(1, "value_type=" + ValueType.VALUE_FIELD.name() + ",value_arg=" + (bytes.length - 1));
67 out.annotate(bytes.length, "value: " + value.getFieldString());
FloatEncodedValue.java 63 out.annotate(1, "value_type=" + ValueType.VALUE_FLOAT.name() + ",value_arg=" + (bytes.length - 1));
64 out.annotate(bytes.length, "value: " + value);
IntEncodedValue.java 62 out.annotate(1, "value_type=" + ValueType.VALUE_INT.name() + ",value_arg=" + (bytes.length - 1));
63 out.annotate(bytes.length, "value: 0x" + Integer.toHexString(value) + " (" + value + ")");
LongEncodedValue.java 62 out.annotate(1, "value_type=" + ValueType.VALUE_LONG.name() + ",value_arg=" + (bytes.length - 1));
63 out.annotate(bytes.length, "value: 0x" + Long.toHexString(value) + " (" + value + ")");
MethodEncodedValue.java 66 out.annotate(1, "value_type=" + ValueType.VALUE_METHOD.name() + ",value_arg=" + (bytes.length - 1));
67 out.annotate(bytes.length, "value: " + value.getMethodString());
ShortEncodedValue.java 62 out.annotate(1, "value_type=" + ValueType.VALUE_SHORT.name() + ",value_arg=" + (bytes.length - 1));
63 out.annotate(bytes.length, "value: 0x" + Integer.toHexString(value) + " (" + value + ")");
StringEncodedValue.java 67 out.annotate(1, "value_type=" + ValueType.VALUE_STRING.name() + ",value_arg=" + (bytes.length - 1));
68 out.annotate(bytes.length, "value: \"" + Utf8Utils.escapeString(value.getStringValue()) + "\"");
TypeEncodedValue.java 66 out.annotate(1, "value_type=" + ValueType.VALUE_TYPE.name() + ",value_arg=" + (bytes.length - 1));
67 out.annotate(bytes.length, "value: " + value.getTypeDescriptor());
CharEncodedValue.java 62 out.annotate(1, "value_type=" + ValueType.VALUE_CHAR.name() + ",value_arg=" + (bytes.length - 1));
65 out.annotate(bytes.length, "value: 0x" + Integer.toHexString(value) + " '" + c[0] + "'");
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
AnnotatedOutput.java 57 public void annotate(String msg); method in interface:AnnotatedOutput
70 public void annotate(int amt, String msg); method in interface:AnnotatedOutput
74 * until the next call to {@link #annotate}.
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArray.java 55 * @param ex {@code non-null;} the exception to annotate
57 public abstract void annotate(ExceptionWithContext ex); method in class:LocalsArray
ExecutionStack.java 79 * @param ex {@code non-null;} the exception to annotate
81 public void annotate(ExceptionWithContext ex) { method in class:ExecutionStack
311 this.annotate(ex);
313 other.annotate(ex);
OneLocalsArray.java 58 public void annotate(ExceptionWithContext ex) { method in class:OneLocalsArray
213 annotate(ex);
215 other.annotate(ex);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
__init__.py 57 annotate = _singleton_method('annotate') variable
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
TypeListItem.java 97 out.annotate(0, offsetString() + " type_list");
98 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz));
102 out.annotate(ELEMENT_SIZE,
  /dalvik/dx/src/com/android/dx/dex/file/
TypeListItem.java 96 out.annotate(0, offsetString() + " type_list");
97 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz));
101 out.annotate(ELEMENT_SIZE,
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
TypeListItem.java 97 out.annotate(0, offsetString() + " type_list");
98 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz));
102 out.annotate(ELEMENT_SIZE,

Completed in 834 milliseconds

1 2