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

1 2 3 4 5 6 7 8 91011>>

  /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]
  /bionic/libc/include/android/
versioning.h 20 #define __INTRODUCED_IN(api_level) __attribute__((annotate("introduced_in=" #api_level)))
21 #define __INTRODUCED_IN_FUTURE __attribute__((annotate("introduced_in_future")))
22 #define __DEPRECATED_IN(api_level) __attribute__((annotate("deprecated_in=" #api_level)))
23 #define __REMOVED_IN(api_level) __attribute__((annotate("obsoleted_in=" #api_level)))
24 #define __INTRODUCED_IN_32(api_level) __attribute__((annotate("introduced_in_32=" #api_level)))
25 #define __INTRODUCED_IN_64(api_level) __attribute__((annotate("introduced_in_64=" #api_level)))
26 #define __INTRODUCED_IN_ARM(api_level) __attribute__((annotate("introduced_in_arm=" #api_level)))
27 #define __INTRODUCED_IN_X86(api_level) __attribute__((annotate("introduced_in_x86=" #api_level)))
28 #define __INTRODUCED_IN_MIPS(api_level) __attribute__((annotate("introduced_in_mips=" #api_level)))
30 #define __VERSIONER_NO_GUARD __attribute__((annotate("versioner_no_guard"))
    [all...]
  /external/clang/test/Parser/
access-spec-attrs.cpp 6 private __attribute__((annotate("foobar"))):
8 private __attribute__((annotate())): // expected-error {{'annotate' attribute takes one argument}}
  /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/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
AnnotationDirectoryItem.java 60 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(0, "method_annotation[%d]", i)
    [all...]
EncodedValue.java 49 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(valueArg+1, "value = 0x%x", longValue)
    [all...]
HeaderItem.java 173 out.annotate(8, "magic: %s", StringUtils.escapeString(magicBuilder.toString()));
174 out.annotate(4, "checksum");
175 out.annotate(20, "signature");
176 out.annotate(4, "file_size: %d", dexFile.readInt(out.getCursor()));
179 out.annotate(4, "header_size: %d", headerSize);
182 out.annotate(4, "endian_tag: 0x%x (%s)", endianTag, getEndianText(endianTag));
184 out.annotate(4, "link_size: %d", dexFile.readInt(out.getCursor()));
185 out.annotate(4, "link_offset: 0x%x", dexFile.readInt(out.getCursor()));
187 out.annotate(4, "map_off: 0x%x", dexFile.readInt(out.getCursor()));
189 out.annotate(4, "string_ids_size: %d", dexFile.readInt(out.getCursor()))
    [all...]
SectionAnnotator.java 67 * @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);
ClassDefItem.java 72 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(4, "static_values_off = encoded_array_item[NO_OFFSET]")
    [all...]
CodeItem.java 92 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(0, "try_items:")
    [all...]
MapItem.java 83 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);
ClassDataItem.java 77 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);
  /external/ImageMagick/Magick++/demo/
gravity.cpp 60 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 );
  /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));
  /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...]
MethodHandleItem.java 71 out.annotate(0, indexString() + ' ' + methodHandle.toString());
73 out.annotate(2, "type: " + Hex.u2(mhType) + typeComment);
74 out.annotate(2, "reserved: " + Hex.u2(0));
77 out.annotate(2, "fieldId: " + Hex.u2(targetIndex) + targetComment);
79 out.annotate(2, "methodId: " + Hex.u2(targetIndex) + targetComment);
81 out.annotate(2, "reserved: " + Hex.u2(0));

Completed in 469 milliseconds

1 2 3 4 5 6 7 8 91011>>