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

1 2 3 4 5 6 7

  /external/clang/test/CodeGen/
annotations-global.c 8 static __attribute((annotate("sfoo_0"))) __attribute((annotate("sfoo_1"))) char sfoo;
9 __attribute((annotate("foo_0"))) __attribute((annotate("foo_1"))) char foo;
11 void __attribute((annotate("ann_a_0"))) __attribute((annotate("ann_a_1"))) __attribute((annotate("ann_a_2"))) __attribute((annotate("ann_a_3"))) a(char *a);
12 void __attribute((annotate("ann_a_0"))) __attribute((annotate("ann_a_1"))) a(char *a)
    [all...]
annotations-loc.c 7 int __attribute((annotate("foo"))) foo(void) { return 0; }
annotations-var.c 17 int foo(int v __attribute__((annotate("param_ann_2"))) __attribute__((annotate("param_ann_3"))));
18 int foo(int v __attribute__((annotate("param_ann_0"))) __attribute__((annotate("param_ann_1")))) {
33 int localvar __attribute__((annotate("localvar_ann_0"))) __attribute__((annotate("localvar_ann_1"))) = 3;
43 int undefvar __attribute__((annotate("undefvar_ann_0")));
2007-06-15-AnnotateAttribute.c 5 int X __attribute__((annotate("GlobalValAnnotation")));
8 int foo(int y) __attribute__((annotate("GlobalValAnnotation")))
11 int foo(int y __attribute__((annotate("LocalValAnnotation")))) {
12 int x __attribute__((annotate("LocalValAnnotation")));
18 static int a __attribute__((annotate("GlobalValAnnotation")));
annotations-field.c 8 int v __attribute__((annotate("v_ann_0"))) __attribute__((annotate("v_ann_1")));
  /external/clang/test/Index/
complete-with-annotations.cpp 4 int field __attribute((annotate("one"), annotate("two"), annotate("three")));
6 public __attribute__((annotate("some annotation"))):
8 int member2 __attribute__((annotate("another annotation")));
annotate-attribute.cpp 5 __attribute__((annotate("spiffy_method"))) void aMethod();
7 public __attribute__((annotate("works"))):
10 private __attribute__((annotate("investigations"))):
22 // CHECK-NEXT: attribute(annotate)=spiffy_method Extent=[5:18 - 5:43]
24 // CHECK-NEXT: attribute(annotate)=works Extent=[7:23 - 7:40]
26 // CHECK-NEXT: attribute(annotate)=works Extent=[7:23 - 7:40]
28 // CHECK-NEXT: attribute(annotate)=investigations Extent=[10:24 - 10:50]
30 // CHECK-NEXT: attribute(annotate)=investigations Extent=[10:24 - 10:50]
  /external/clang/test/Sema/
annotate.c 3 void __attribute__((annotate("foo"))) foo(float *a) {
4 __attribute__((annotate("bar"))) int x;
5 __attribute__((annotate(1))) int y; // expected-error {{'annotate' attribute requires a string}}
6 __attribute__((annotate("bar", 1))) int z; // expected-error {{'annotate' attribute takes one argument}}
  /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}.
  /external/clang/test/Parser/
access-spec-attrs.cpp 6 private __attribute__((annotate("foobar"))):
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
GraphicsContextAnnotator.h 38 scopedGraphicsContextAnnotator.annotate(paintInfo, renderer)
58 void annotate(const PaintInfo&, const RenderObject*);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
HeaderItem.java 75 out.annotate(8, "magic: " + new CstUtf8(MAGIC).toQuoted());
76 out.annotate(4, "checksum");
77 out.annotate(20, "signature");
78 out.annotate(4, "file_size: " +
80 out.annotate(4, "header_size: " + Hex.u4(HEADER_SIZE));
81 out.annotate(4, "endian_tag: " + Hex.u4(ENDIAN_TAG));
82 out.annotate(4, "link_size: 0");
83 out.annotate(4, "link_off: 0");
84 out.annotate(4, "map_off: " + Hex.u4(mapOff));
116 out.annotate(4, "data_size: " + Hex.u4(dataSize))
    [all...]
MemberIdItem.java 72 out.annotate(0, indexString() + ' ' + cst.toHuman());
73 out.annotate(2, " class_idx: " + Hex.u2(classIdx));
74 out.annotate(2, String.format(" %-10s %s", getTypoidName() + ':',
76 out.annotate(4, " name_idx: " + Hex.u4(nameIdx));
CodeItem.java 244 out.annotate(0, offsetString() + ' ' + ref.toHuman());
245 out.annotate(2, " registers_size: " + Hex.u2(regSz));
246 out.annotate(2, " ins_size: " + Hex.u2(insSz));
247 out.annotate(2, " outs_size: " + Hex.u2(outsSz));
248 out.annotate(2, " tries_size: " + Hex.u2(triesSz));
249 out.annotate(4, " debug_off: " + Hex.u4(debugOff));
250 out.annotate(4, " insns_size: " + Hex.u4(insnsSz));
255 out.annotate(0, " throws " + StdTypeList.toHuman(throwsList));
271 out.annotate(2, " padding: 0");
285 out.annotate(0, " debug info")
    [all...]
FieldAnnotationStruct.java 90 out.annotate(0, " " + field.toHuman());
91 out.annotate(4, " field_idx: " + Hex.u4(fieldIdx));
92 out.annotate(4, " annotations_off: " +
MethodAnnotationStruct.java 90 out.annotate(0, " " + method.toHuman());
91 out.annotate(4, " method_idx: " + Hex.u4(methodIdx));
92 out.annotate(4, " annotations_off: " +
  /dalvik/dx/src/com/android/dx/dex/file/
HeaderItem.java 67 out.annotate(8, "magic: " + new CstString(magic).toQuoted());
68 out.annotate(4, "checksum");
69 out.annotate(20, "signature");
70 out.annotate(4, "file_size: " +
72 out.annotate(4, "header_size: " + Hex.u4(SizeOf.HEADER_ITEM));
73 out.annotate(4, "endian_tag: " + Hex.u4(DexFormat.ENDIAN_TAG));
74 out.annotate(4, "link_size: 0");
75 out.annotate(4, "link_off: 0");
76 out.annotate(4, "map_off: " + Hex.u4(mapOff));
108 out.annotate(4, "data_size: " + Hex.u4(dataSize))
    [all...]
MemberIdItem.java 70 out.annotate(0, indexString() + ' ' + cst.toHuman());
71 out.annotate(2, " class_idx: " + Hex.u2(classIdx));
72 out.annotate(2, String.format(" %-10s %s", getTypoidName() + ':',
74 out.annotate(4, " name_idx: " + Hex.u4(nameIdx));
CodeItem.java 235 out.annotate(0, offsetString() + ' ' + ref.toHuman());
236 out.annotate(2, " registers_size: " + Hex.u2(regSz));
237 out.annotate(2, " ins_size: " + Hex.u2(insSz));
238 out.annotate(2, " outs_size: " + Hex.u2(outsSz));
239 out.annotate(2, " tries_size: " + Hex.u2(triesSz));
240 out.annotate(4, " debug_off: " + Hex.u4(debugOff));
241 out.annotate(4, " insns_size: " + Hex.u4(insnsSz));
246 out.annotate(0, " throws " + StdTypeList.toHuman(throwsList));
262 out.annotate(2, " padding: 0");
276 out.annotate(0, " debug info")
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
HeaderItem.java 67 out.annotate(8, "magic: " + new CstString(magic).toQuoted());
68 out.annotate(4, "checksum");
69 out.annotate(20, "signature");
70 out.annotate(4, "file_size: " +
72 out.annotate(4, "header_size: " + Hex.u4(SizeOf.HEADER_ITEM));
73 out.annotate(4, "endian_tag: " + Hex.u4(DexFormat.ENDIAN_TAG));
74 out.annotate(4, "link_size: 0");
75 out.annotate(4, "link_off: 0");
76 out.annotate(4, "map_off: " + Hex.u4(mapOff));
108 out.annotate(4, "data_size: " + Hex.u4(dataSize))
    [all...]
MemberIdItem.java 70 out.annotate(0, indexString() + ' ' + cst.toHuman());
71 out.annotate(2, " class_idx: " + Hex.u2(classIdx));
72 out.annotate(2, String.format(" %-10s %s", getTypoidName() + ':',
74 out.annotate(4, " name_idx: " + Hex.u4(nameIdx));
CodeItem.java 244 out.annotate(0, offsetString() + ' ' + ref.toHuman());
245 out.annotate(2, " registers_size: " + Hex.u2(regSz));
246 out.annotate(2, " ins_size: " + Hex.u2(insSz));
247 out.annotate(2, " outs_size: " + Hex.u2(outsSz));
248 out.annotate(2, " tries_size: " + Hex.u2(triesSz));
249 out.annotate(4, " debug_off: " + Hex.u4(debugOff));
250 out.annotate(4, " insns_size: " + Hex.u4(insnsSz));
255 out.annotate(0, " throws " + StdTypeList.toHuman(throwsList));
271 out.annotate(2, " padding: 0");
285 out.annotate(0, " debug info")
    [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...]

Completed in 877 milliseconds

1 2 3 4 5 6 7