Searched refs:annotate (Results 1 - 25 of 66) sorted by relevance

123

/external/clang/test/CodeGen/
H A Dannotations-global.c8 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_
[all...]
H A Dannotations-loc.c7 int __attribute((annotate("foo"))) foo(void) { return 0; }
H A Dannotations-var.c17 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")));
H A D2007-06-15-AnnotateAttribute.c5 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")));
H A Dannotations-field.c8 int v __attribute__((annotate("v_ann_0"))) __attribute__((annotate("v_ann_1")));
/external/clang/test/Index/
H A Dcomplete-with-annotations.cpp4 int field __attribute((annotate("one"), annotate("two"), annotate("three")));
6 public __attribute__((annotate("some annotation"))):
8 int member2 __attribute__((annotate("another annotation")));
H A Dannotate-attribute.cpp5 __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/Parser/
H A Daccess-spec-attrs.cpp6 private __attribute__((annotate("foobar"))):
8 private __attribute__((annotate())): // expected-error {{'annotate' attribute takes one argument}}
/external/clang/test/Sema/
H A Dannotate.c3 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}}
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DAnnotationDirectoryItem.java60 out.annotate(4, "class_annotations_off = %s",
64 out.annotate(4, "fields_size = %d", fieldsSize);
67 out.annotate(4, "annotated_methods_size = %d", annotatedMethodsSize);
70 out.annotate(4, "annotated_parameters_size = %d", annotatedParameterSize);
73 out.annotate(0, "field_annotations:");
76 out.annotate(0, "field_annotation[%d]", i);
79 out.annotate(4, "%s", FieldIdItem.getReferenceAnnotation(dexFile, fieldIndex));
81 out.annotate(4, "%s", AnnotationSetItem.getReferenceAnnotation(dexFile, annotationOffset));
88 out.annotate(0, "method_annotations:");
91 out.annotate(
[all...]
H A DEncodedValue.java49 out.annotate(1, "valueArg = %d, valueType = 0x%x: byte", valueArg, valueType);
51 out.annotate(1, "value = 0x%x", intValue);
54 out.annotate(1, "valueArg = %d, valueType = 0x%x: short", valueArg, valueType);
56 out.annotate(valueArg + 1, "value = 0x%x", intValue);
59 out.annotate(1, "valueArg = %d, valueType = 0x%x: char", valueArg, valueType);
61 out.annotate(valueArg+1, "value = 0x%x", intValue);
64 out.annotate(1, "valueArg = %d, valueType = 0x%x: int", valueArg, valueType);
66 out.annotate(valueArg+1, "value = 0x%x", intValue);
69 out.annotate(1, "valueArg = %d, valueType = 0x%x: long", valueArg, valueType);
71 out.annotate(valueAr
[all...]
H A DHeaderItem.java180 out.annotate(8, "magic: %s", StringUtils.escapeString(magicBuilder.toString()));
181 out.annotate(4, "checksum");
182 out.annotate(20, "signature");
183 out.annotate(4, "file_size: %d", dexFile.readInt(out.getCursor()));
186 out.annotate(4, "header_size: %d", headerSize);
189 out.annotate(4, "endian_tag: 0x%x (%s)", endianTag, getEndianText(endianTag));
191 out.annotate(4, "link_size: %d", dexFile.readInt(out.getCursor()));
192 out.annotate(4, "link_offset: 0x%x", dexFile.readInt(out.getCursor()));
194 out.annotate(4, "map_off: 0x%x", dexFile.readInt(out.getCursor()));
196 out.annotate(
[all...]
H A DSectionAnnotator.java67 * @param out The AnnotatedBytes object to annotate to
78 out.annotate(0, "");
79 out.annotate(0, "-----------------------------");
80 out.annotate(0, "%s section", itemName);
81 out.annotate(0, "-----------------------------");
82 out.annotate(0, "");
89 out.annotate(0, "[%d] %s: %s", i, itemName, itemIdentity);
91 out.annotate(0, "[%d] %s", i, itemName);
H A DClassDefItem.java72 out.annotate(4, "class_idx = %s", TypeIdItem.getReferenceAnnotation(dexFile, classIndex));
75 out.annotate(4, "access_flags = 0x%x: %s", accessFlags,
79 out.annotate(4, "superclass_idx = %s",
83 out.annotate(4, "interfaces_off = %s", TypeListItem.getReferenceAnnotation(dexFile, interfacesOffset));
86 out.annotate(4, "source_file_idx = %s", StringIdItem.getOptionalReferenceAnnotation(dexFile,
91 out.annotate(4, "annotations_off = annotations_directory_item[NO_OFFSET]");
93 out.annotate(4, "annotations_off = annotations_directory_item[0x%x]", annotationsOffset);
98 out.annotate(4, "class_data_off = class_data_item[NO_OFFSET]");
100 out.annotate(4, "class_data_off = class_data_item[0x%x]", classDataOffset);
106 out.annotate(
[all...]
H A DCodeItem.java92 out.annotate(2, "registers_size = %d", registers);
95 out.annotate(2, "ins_size = %d", inSize);
98 out.annotate(2, "outs_size = %d", outSize);
101 out.annotate(2, "tries_size = %d", triesCount);
104 out.annotate(4, "debug_info_off = 0x%x", debugInfoOffset);
111 out.annotate(4, "insns_size = 0x%x", instructionSize);
113 out.annotate(0, "instructions:");
157 out.annotate(0, "annotation error: %s", ex.getMessage());
168 out.annotate(2, "padding");
171 out.annotate(
[all...]
H A DMapItem.java83 out.annotate(2, "type = 0x%x: %s", itemType, ItemType.getItemTypeName(itemType));
85 out.annotate(2, "unused");
88 out.annotate(4, "size = %d", size);
91 out.annotate(4, "offset = 0x%x", offset);
97 out.annotate(4, "size = %d", mapItemCount);
H A DClassDataItem.java77 out.annotate(0, "static_fields:");
80 out.annotate(0, "static_field[%d]", i);
89 out.annotate(0, "instance_fields:");
93 out.annotate(0, "instance_field[%d]", i);
102 out.annotate(0, "direct_methods:");
106 out.annotate(0, "direct_method[%d]", i);
115 out.annotate(0, "virtual_methods:");
119 out.annotate(0, "virtual_method[%d]", i);
H A DAnnotationSetItem.java55 out.annotate(4, "size = %d", size);
59 out.annotate(4, AnnotationItem.getReferenceAnnotation(dexFile, annotationOffset));
/external/ImageMagick/Magick++/demo/
H A Dgravity.cpp60 pic.annotate( "NorthWest", Geometry(0,0,x,y), NorthWestGravity, angle );
61 pic.annotate( "North", Geometry(0,0,0,y), NorthGravity, angle );
62 pic.annotate( "NorthEast", Geometry(0,0,x,y), NorthEastGravity, angle );
63 pic.annotate( "East", Geometry(0,0,x,0), EastGravity, angle );
64 pic.annotate( "Center", Geometry(0,0,0,0), CenterGravity, angle );
65 pic.annotate( "SouthEast", Geometry(0,0,x,y), SouthEastGravity, angle );
66 pic.annotate( "South", Geometry(0,0,0,y), SouthGravity, angle );
67 pic.annotate( "SouthWest", Geometry(0,0,x,y), SouthWestGravity, angle );
68 pic.annotate( "West", Geometry(0,0,x,0), WestGravity, angle );
H A Dshapes.cpp88 image.annotate( "Hello world!", "+150+20" );
92 image.annotate( "Goodbye cruel world!", "+150+38" );
96 image.annotate( "I'm climbing the wall!", "+280+120",
/external/autotest/frontend/health/
H A Dutils.py30 status__word=_TEST_PASS_STATUS).annotate(
51 failure_clauses).annotate(
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
H A DModifiable.java45 public AnnotationWriter annotate(ClassName annotation) { method in class:Modifiable
51 public AnnotationWriter annotate(Class<? extends Annotation> annotation) { method in class:Modifiable
52 return annotate(ClassName.fromClass(annotation));
/external/flatbuffers/src/
H A Dflathash.cpp66 bool annotate = false; local
75 else if (opt == "-c") annotate = true;
93 if (annotate)
/external/ImageMagick/PerlMagick/demo/
H A DMakefile12 perl annotate.pl
/external/ImageMagick/PerlMagick/t/ttf/
H A Dread.t36 # 3) Test drawing text using annotate
39 print("Draw text using annotate ...\n");
42 q!../reference/ttf/annotate.miff!,

Completed in 1217 milliseconds

123