Searched defs:annotate (Results 1 - 23 of 23) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/util/
H A DAnnotatedOutput.java49 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}.
H A DByteArrayAnnotatedOutput.java360 public void annotate(String msg) { method in class:ByteArrayAnnotatedOutput
370 public void annotate(int amt, String msg) { method in class:ByteArrayAnnotatedOutput
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DGraphicsContextAnnotator.cpp89 void GraphicsContextAnnotator::annotate(const PaintInfo& paintInfo, const RenderObject* object) function in class:blink::GraphicsContextAnnotator
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A D__init__.py57 annotate = _singleton_method('annotate') variable
H A Dcontrol.py5 from coverage.annotate import AnnotateReporter
569 def annotate(self, morfs=None, directory=None, ignore_errors=None, member in class:coverage
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dmanifest_data_source.py90 def annotate(parent_level, features): function in function:_AddLevelAnnotations
98 annotate(level, item['children'])
102 annotate('required', features)
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DAnnotate.py54 def annotate(self, pos, item): member in class:AnnotationCCodeWriter
137 def annotate(match): function in function:AnnotationCCodeWriter.save_annotation
159 code = _parse_code(annotate, code)
H A DOptions.py22 annotate = False variable
H A DFusedNode.py788 def annotate(self, code): member in class:FusedCFuncDefNode
790 stat.annotate(code)
H A DUtilNodes.py115 def annotate(self, code): member in class:TempsBlockNode
116 self.body.annotate(code)
H A DMain.py418 if options.annotate is None:
424 options.annotate = True
656 annotate = None, variable
H A DNodes.py82 # here we annotate the code with this function call
240 def annotate(self, code): member in class:Node
243 self.body.annotate(code)
351 def annotate(self, code): member in class:CompilerDirectivesNode
354 self.body.annotate(code)
402 def annotate(self, code): member in class:StatListNode
404 stat.annotate(code)
448 def annotate(self, code): member in class:CDefExternNode
449 self.body.annotate(code)
842 def annotate(sel member in class:CArgDeclNode
1379 def annotate(self, code): member in class:CppClassNode
4383 def annotate(self, code): member in class:CClassDefNode
4413 def annotate(self, code): member in class:PropertyNode
4497 def annotate(self, code): member in class:ExprStatNode
4655 def annotate(self, code): member in class:SingleAssignmentNode
4716 def annotate(self, code): member in class:CascadedAssignmentNode
4764 def annotate(self, code): member in class:ParallelAssignmentNode
4829 def annotate(self, code): member in class:InPlaceAssignmentNode
4898 def annotate(self, code): member in class:PrintStatNode
4940 def annotate(self, code): member in class:ExecStatNode
4994 def annotate(self, code): member in class:DelStatNode
5147 def annotate(self, code): member in class:ReturnStatNode
5243 def annotate(self, code): member in class:RaiseStatNode
5339 def annotate(self, code): member in class:AssertStatNode
5383 def annotate(self, code): member in class:IfStatNode
5423 def annotate(self, code): member in class:IfClauseNode
5449 def annotate(self, code): member in class:SwitchCaseNode
5486 def annotate(self, code): member in class:SwitchStatNode
5549 def annotate(self, code): member in class:WhileStatNode
5734 def annotate(self, code): member in class:ForInStatNode
5942 def annotate(self, code): member in class:ForFromStatNode
6093 def annotate(self, code): member in class:WithTargetAssignmentStatNode
6238 def annotate(self, code): member in class:TryExceptStatNode
6375 def annotate(self, code): member in class:ExceptClauseNode
6647 def annotate(self, code): member in class:TryFinallyStatNode
[all...]
H A DExprNodes.py665 def annotate(self, code): member in class:ExprNode
667 node.annotate(code)
2120 def annotate(self, code): member in class:NameNode
2127 code.annotate(pos, AnnotationItem(style, text % self.type, size=len(self.name)))
5654 def annotate(self, code): member in class:AttributeNode
5659 code.annotate(self.pos, AnnotationItem(style, text % self.type, size=len(self.attribute)))
6173 def annotate(self, code): member in class:SequenceNode
6175 arg.annotate(code)
6178 arg.annotate(code)
6180 arg.annotate(cod
6521 def annotate(self, code): member in class:ComprehensionNode
6563 def annotate(self, code): member in class:ComprehensionAppendNode
6595 def annotate(self, code): member in class:DictComprehensionAppendNode
6620 def annotate(self, code): member in class:InlinedGeneratorExpressionNode
6826 def annotate(self, code): member in class:DictNode
7120 def annotate(self, code): member in class:KeywordArgsNode
10324 def annotate(self, code): member in class:PrimaryCmpNode
10415 def annotate(self, code): member in class:CascadedCmpNode
10476 def annotate(self, code): member in class:CoercionNode
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DAnnotatedBytes.java109 annotate(offset - cursor, msg, formatArgs);
122 public void annotate(int length, @Nonnull String msg, Object... formatArgs) { method in class:AnnotatedBytes
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DDebugInfoEncoder.java130 private void annotate(int length, String message) { method in class:DebugInfoEncoder
136 annotateTo.annotate(shouldConsume ? length : 0, message);
203 annotate(1, String.format("%04x: prologue end",address));
371 boolean annotate = (annotateTo != null) || (debugPrint != null);
381 if (annotate) {
382 annotate(output.getCursor() - mark, "line_start: " + line);
408 if (annotate) {
409 annotate(output.getCursor() - mark,
451 if (annotate) {
455 annotate(outpu
[all...]
H A DDexFile.java193 boolean annotate = (humanOut != null);
194 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
200 if (annotate) {
215 boolean annotate = (humanOut != null);
216 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
218 if (annotate) {
490 * @param annotate whether or not to keep annotations
494 private ByteArrayAnnotatedOutput toDex0(boolean annotate, argument
559 if (annotate) {
594 if (annotate) {
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-annotate.c2 * 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
[all...]
/external/srec/srec/include/
H A Dutteranc.h63 annotate; typedef in typeref:struct:__anon31167
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);
/external/harfbuzz_ng/util/
H A Doptions.hh151 annotate = false;
163 hb_bool_t annotate; member in struct:view_options_t
/external/clang/lib/Format/
H A DTokenAnnotator.cpp1177 void TokenAnnotator::annotate(AnnotatedLine &Line) { function in class:clang::format::TokenAnnotator
1181 annotate(**I);
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
H A Dhists.c1423 annotate = -2, zoom_dso = -2, zoom_thread = -2, local
1575 annotate = nr_options++;
1630 if (choice == annotate || choice == annotate_t || choice == annotate_f) {
1662 * offer option to annotate the other branch source or target
1663 * (if they exists) when returning from annotate
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 1364 milliseconds