HomeSort by relevance Sort by last modified time
    Searched defs:annotate (Results 1 - 25 of 41) 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/rendering/
GraphicsContextAnnotator.cpp 81 void GraphicsContextAnnotator::annotate(const PaintInfo& paintInfo, const RenderObject* object) function in class:WebCore::GraphicsContextAnnotator
  /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);
Frame.java 409 * @param ex {@code non-null;} the exception to annotate
411 public void annotate(ExceptionWithContext ex) { method in class:Frame
412 locals.annotate(ex);
413 stack.annotate(ex);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
__init__.py 57 annotate = _singleton_method('annotate') variable
control.py 5 from coverage.annotate import AnnotateReporter
569 def annotate(self, morfs=None, directory=None, ignore_errors=None, member in class:coverage
571 """Annotate a list of modules.
  /external/chromium_org/chrome/common/extensions/docs/server2/
manifest_data_source.py 89 def annotate(parent_level, features): function in function:_AddLevelAnnotations
97 annotate(level, item['children'])
101 annotate('required', features)
  /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,
CatchStructs.java 224 * Helper method to annotate or simply print the exception handlers.
230 * @param annotateTo {@code null-ok;} where to consume bytes and annotate to
243 annotateTo.annotate(0, prefix + "tries:");
256 annotateTo.annotate(amt1, s1);
257 annotateTo.annotate(amt2, s2);
269 annotateTo.annotate(0, prefix + "handlers:");
270 annotateTo.annotate(encodedHandlerHeaderSize,
296 * Helper for {@link #annotateEntries} to annotate a catch handler list
299 * @param handlers {@code non-null;} handlers to annotate
304 * @param annotateTo {@code non-null;} where to annotate t
    [all...]
  /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,
CatchStructs.java 221 * Helper method to annotate or simply print the exception handlers.
227 * @param annotateTo {@code null-ok;} where to consume bytes and annotate to
240 annotateTo.annotate(0, prefix + "tries:");
253 annotateTo.annotate(amt1, s1);
254 annotateTo.annotate(amt2, s2);
266 annotateTo.annotate(0, prefix + "handlers:");
267 annotateTo.annotate(encodedHandlerHeaderSize,
293 * Helper for {@link #annotateEntries} to annotate a catch handler list
296 * @param handlers {@code non-null;} handlers to annotate
301 * @param annotateTo {@code non-null;} where to annotate t
    [all...]
  /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,
CatchStructs.java 222 * Helper method to annotate or simply print the exception handlers.
228 * @param annotateTo {@code null-ok;} where to consume bytes and annotate to
241 annotateTo.annotate(0, prefix + "tries:");
254 annotateTo.annotate(amt1, s1);
255 annotateTo.annotate(amt2, s2);
267 annotateTo.annotate(0, prefix + "handlers:");
268 annotateTo.annotate(encodedHandlerHeaderSize,
294 * Helper for {@link #annotateEntries} to annotate a catch handler list
297 * @param handlers {@code non-null;} handlers to annotate
302 * @param annotateTo {@code non-null;} where to annotate t
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-annotate.c 2 * builtin-annotate.c
4 * Builtin annotate command: Analyze the perf.data input file,
22 #include "util/annotate.h"
270 "perf annotate [<options>]",
276 struct perf_annotate annotate = { local
293 OPT_STRING('s', "symbol", &annotate.sym_hist_filter, "symbol",
294 "symbol to annotate"),
295 OPT_BOOLEAN('f', "force", &annotate.force, "don't complain, do it"),
300 OPT_BOOLEAN(0, "gtk", &annotate.use_gtk, "Use the GTK interface"),
301 OPT_BOOLEAN(0, "tui", &annotate.use_tui, "Use the TUI interface")
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsnList.java 144 out.annotate(codeBytes, s);
146 out.annotate(codeBytes, "");
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsnList.java 144 out.annotate(codeBytes, s);
146 out.annotate(codeBytes, "");
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
DalvInsnList.java 145 out.annotate(codeBytes, s);
147 out.annotate(codeBytes, "");
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
AnnotatedBytes.java 109 annotate(offset - cursor, msg, formatArgs);
122 public void annotate(int length, @Nonnull String msg, Object... formatArgs) { method in class:AnnotatedBytes
  /external/srec/srec/include/
utteranc.h 63 annotate; typedef in typeref:struct:__anon34884
102 annotate *utb_table; /* utb file header information */
241 int init_utb_file(file_utterance_info *utt, annotate **table);
242 int position_utb_file(file_utterance_info *utt, long position, annotate *table);
253 int read_tcp(char *filename, annotate **tag_base);
254 int read_lst(char *filename, annotate *tag_base, int ntags);
255 int read_utb_table(char *filename, annotate **tag_base);
256 void save_tcp(char *tcpnam, annotate *tag, int ntags);

Completed in 376 milliseconds

1 2