/external/compiler-rt/lib/tsan/rtl/ |
tsan.syms.extra | 11 Annotate*
|
/external/clang/test/Index/ |
annotate-tokens-include.c | 1 #include "annotate-tokens-include.h" 3 // RUN: c-index-test -test-annotate-tokens=%s:1:1:2:1 %s | FileCheck %s 4 // CHECK: Punctuation: "#" [1:1 - 1:2] inclusion directive=annotate-tokens-include.h 5 // CHECK: Identifier: "include" [1:2 - 1:9] inclusion directive=annotate-tokens-include.h 6 // CHECK: Literal: ""annotate-tokens-include.h"" [1:10 - 1:37] inclusion directive=annotate-tokens-include.h
|
index-attrs.m | 7 -(id)prop __attribute__((annotate("anno"))); 8 -(void)setProp:(id)p __attribute__((annotate("anno"))); 9 @property (assign) id prop __attribute__((annotate("anno"))); 15 // CHECK: <attribute>: attribute(annotate)=anno 16 // CHECK: <getter>: kind: objc-instance-method | name: prop | {{.*}} <attribute>: attribute(annotate)=anno 17 // CHECK: <setter>: kind: objc-instance-method | name: setProp: | {{.*}} <attribute>: attribute(annotate)=anno
|
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-comments-preprocessor.c | 6 #include "annotate-comments-preprocessor.h" /* Aaa. */ /* Bbb. */ 7 #include "annotate-comments-preprocessor.h" /* Aaa. */ 8 #include "annotate-comments-preprocessor.h" /** Aaa. */ 9 #include "annotate-comments-preprocessor.h" /**< Aaa. */ 10 #include "annotate-comments-preprocessor.h" // Aaa. 11 #include "annotate-comments-preprocessor.h" /// Aaa. 12 #include "annotate-comments-preprocessor.h" ///< Aaa.
|
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]
|
annotate-deep-statements.cpp | 1 // RUN: c-index-test -test-annotate-tokens=%s:1:1:1000:1 %s | FileCheck %s 4 // Check that we don't get stack overflow trying to annotate an extremely deep AST.
|
annotate-macro-args.m | 2 // RUN: c-index-test -test-annotate-tokens=%S/annotate-macro-args.h:9:1:10:1 %s -include %S/annotate-macro-args.h | FileCheck -check-prefix=CHECK1 %s 3 // RUN: c-index-test -test-annotate-tokens=%S/annotate-macro-args.h:15:1:16:1 %s -include %S/annotate-macro-args.h | FileCheck -check-prefix=CHECK2 %s 6 // RUN: c-index-test -write-pch %t.pch -x objective-c-header %S/annotate-macro-args.h -Xclang -detailed-preprocessing-record 7 // RUN: c-index-test -test-annotate-tokens=%S/annotate-macro-args.h:9:1:10:1 %s -include-pch %t.pch | FileCheck -check-prefix=CHECK1 %s 8 // RUN: c-index-test -test-annotate-tokens=%S/annotate-macro-args.h:15:1:16:1 %s -include-pch %t.pch | FileCheck -check-prefix=CHECK2 (…) [all...] |
annotate-comments.cpp | 297 // CHECK: annotate-comments.cpp:16:6: FunctionDecl=isdoxy4:{{.*}} isdoxy4 IS_DOXYGEN_SINGLE 298 // CHECK: annotate-comments.cpp:20:6: FunctionDecl=isdoxy5:{{.*}} isdoxy5 IS_DOXYGEN_SINGLE 299 // CHECK: annotate-comments.cpp:25:6: FunctionDecl=isdoxy6:{{.*}} isdoxy6 IS_DOXYGEN_SINGLE 300 // CHECK: annotate-comments.cpp:31:6: FunctionDecl=isdoxy7:{{.*}} isdoxy7 IS_DOXYGEN_SINGLE 301 // CHECK: annotate-comments.cpp:34:6: FunctionDecl=isdoxy8:{{.*}} isdoxy8 IS_DOXYGEN_SINGLE 302 // CHECK: annotate-comments.cpp:37:6: FunctionDecl=isdoxy9:{{.*}} isdoxy9 IS_DOXYGEN_SINGLE 303 // CHECK: annotate-comments.cpp:41:6: FunctionDecl=isdoxy10:{{.*}} isdoxy10 IS_DOXYGEN_SINGLE 304 // CHECK: annotate-comments.cpp:53:6: FunctionDecl=isdoxy13:{{.*}} isdoxy13 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END 305 // CHECK: annotate-comments.cpp:58:6: FunctionDecl=isdoxy14:{{.*}} isdoxy14 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END 306 // CHECK: annotate-comments.cpp:63:6: FunctionDecl=isdoxy15:{{.*}} isdoxy15 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_EN [all...] |
/external/clang/test/CodeGen/ |
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-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...] |
/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}}
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/ |
perfconfig.example | 15 annotate = on 23 [annotate]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
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 | 174 out.annotate(8, "magic: %s", StringUtils.escapeString(magicBuilder.toString())); 175 out.annotate(4, "checksum"); 176 out.annotate(20, "signature"); 177 out.annotate(4, "file_size: %d", dexFile.readInt(out.getCursor())); 180 out.annotate(4, "header_size: %d", headerSize); 183 out.annotate(4, "endian_tag: 0x%x (%s)", endianTag, getEndianText(endianTag)); 185 out.annotate(4, "link_size: %d", dexFile.readInt(out.getCursor())); 186 out.annotate(4, "link_offset: 0x%x", dexFile.readInt(out.getCursor())); 188 out.annotate(4, "map_off: 0x%x", dexFile.readInt(out.getCursor())); 190 out.annotate(4, "string_ids_size: %d", dexFile.readInt(out.getCursor())) [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...] |
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...] |
/external/chromium_org/v8/src/base/ |
compiler-specific.h | 10 // Annotate a variable indicating it's ok if the variable is not used. 22 // Annotate a virtual method indicating it must be overriding a virtual 33 // Annotate a virtual method indicating that subclasses must not override it, 34 // or annotate a class to indicate that it cannot be subclassed. 49 // Annotate a function indicating the caller must examine the return value.
|
/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...] |
/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...] |
/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...] |
/external/clang/test/Parser/ |
access-spec-attrs.cpp | 6 private __attribute__((annotate("foobar"))):
|
/external/jsr305/ri/src/main/java/javax/annotation/ |
WillClose.java | 10 * Used to annotate a method parameter to indicate that this method will close
|
WillCloseWhenClosed.java | 10 * Used to annotate a constructor/factory parameter to indicate that returned
|
WillNotClose.java | 10 * Used to annotate a method parameter to indicate that this method will not
|