HomeSort by relevance Sort by last modified time
    Searched full:annotate (Results 151 - 175 of 1244) sorted by null

1 2 3 4 5 67 8 91011>>

  /dalvik/dx/src/com/android/dx/dex/file/
ParameterAnnotationStruct.java 117 out.annotate(0, " " + method.toHuman());
118 out.annotate(4, " method_idx: " + Hex.u4(methodIdx));
119 out.annotate(4, " annotations_off: " +
TypeListItem.java 97 out.annotate(0, offsetString() + " type_list");
98 out.annotate(HEADER_SIZE, " size: " + Hex.u4(sz));
102 out.annotate(ELEMENT_SIZE,
AnnotationsDirectoryItem.java 296 out.annotate(0, offsetString() + " annotations directory");
297 out.annotate(4, " class_annotations_off: " + Hex.u4(classOff));
298 out.annotate(4, " fields_size: " +
300 out.annotate(4, " methods_size: " +
302 out.annotate(4, " parameters_size: " +
314 out.annotate(0, " fields:");
324 out.annotate(0, " methods:");
334 out.annotate(0, " parameters:");
CallSiteIdItem.java 78 out.annotate(0, indexString() + ' ' + invokeDynamicRef.toString());
79 out.annotate(4, "call_site_off: " + Hex.u4(offset));
DebugInfoEncoder.java 138 private void annotate(int length, String message) { method in class:DebugInfoEncoder
144 annotateTo.annotate(shouldConsume ? length : 0, message);
211 annotate(1, String.format("%04x: prologue end",address));
379 boolean annotate = (annotateTo != null) || (debugPrint != null);
389 if (annotate) {
390 annotate(output.getCursor() - mark, "line_start: " + line);
416 if (annotate) {
417 annotate(output.getCursor() - mark,
459 if (annotate) {
463 annotate(output.getCursor() - mark
    [all...]
StringDataItem.java 76 out.annotate(Leb128.unsignedLeb128Size(utf16Size),
78 out.annotate(bytes.size() + 1, value.toQuoted());
  /external/flatbuffers/src/
flathash.cpp 66 bool annotate = false; local
75 else if (opt == "-c") annotate = true;
93 if (annotate)
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
FieldIdItem.java 58 out.annotate(2, "class_idx = %s", TypeIdItem.getReferenceAnnotation(dexFile, classIndex));
61 out.annotate(2, "return_type_idx = %s", TypeIdItem.getReferenceAnnotation(dexFile, typeIndex));
64 out.annotate(4, "name_idx = %s", StringIdItem.getReferenceAnnotation(dexFile, nameIndex));
MethodIdItem.java 58 out.annotate(2, "class_idx = %s", TypeIdItem.getReferenceAnnotation(dexFile, classIndex));
61 out.annotate(2, "proto_idx = %s", ProtoIdItem.getReferenceAnnotation(dexFile, protoIndex));
64 out.annotate(4, "name_idx = %s", StringIdItem.getReferenceAnnotation(dexFile, nameIndex));
ProtoIdItem.java 58 out.annotate(4, "shorty_idx = %s", StringIdItem.getReferenceAnnotation(dexFile, shortyIndex));
61 out.annotate(4, "return_type_idx = %s", TypeIdItem.getReferenceAnnotation(dexFile, returnTypeIndex));
64 out.annotate(4, "parameters_off = %s", TypeListItem.getReferenceAnnotation(dexFile, parametersOffset));
AnnotationSetItem.java 55 out.annotate(4, "size = %d", size);
59 out.annotate(4, AnnotationItem.getReferenceAnnotation(dexFile, annotationOffset));
AnnotationSetRefList.java 55 out.annotate(4, "size = %d", size);
59 out.annotate(4, "annotation_set_item[0x%x]", annotationSetOffset);
  /libcore/ojluni/src/main/java/java/lang/
SuppressWarnings.java 36 * example, if you annotate a class to suppress one warning and annotate a
41 * suppress a warning in a particular method, you should annotate that
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationsDirectoryItem.java 292 out.annotate(0, offsetString() + " annotations directory");
293 out.annotate(4, " class_annotations_off: " + Hex.u4(classOff));
294 out.annotate(4, " fields_size: " +
296 out.annotate(4, " methods_size: " +
298 out.annotate(4, " parameters_size: " +
310 out.annotate(0, " fields:");
320 out.annotate(0, " methods:");
330 out.annotate(0, " parameters:");
DebugInfoEncoder.java 130 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(output.getCursor() - mark
    [all...]
StringDataItem.java 76 out.annotate(Leb128Utils.unsignedLeb128Size(utf16Size),
78 out.annotate(bytes.size() + 1, value.toQuoted());
EncodedMethod.java 179 out.annotate(0, String.format(" [%x] %s", dumpSeq,
181 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
183 out.annotate(Leb128Utils.unsignedLeb128Size(accessFlags),
186 out.annotate(Leb128Utils.unsignedLeb128Size(codeOff),
ProtoIdItem.java 150 out.annotate(0, indexString() + ' ' + sb.toString());
151 out.annotate(4, " shorty_idx: " + Hex.u4(shortyIdx) +
153 out.annotate(4, " return_type_idx: " + Hex.u4(returnIdx) +
155 out.annotate(4, " parameters_off: " + Hex.u4(paramsOff));
  /external/clang/test/Index/
targeted-annotation.c 9 // RUN: env CINDEXTEST_FAILONERROR=1 c-index-test -test-annotate-tokens=%s:1:1:7:1 %s -include %t.h \
15 // RUN: c-index-test -test-annotate-tokens=%s:1:1:7:1 %s -include %t.h \
34 // RUN: env CINDEXTEST_FAILONERROR=1 c-index-test -test-annotate-tokens=%S/targeted-fields.h:1:1:4:1 %s -include %t.h \
40 // RUN: c-index-test -test-annotate-tokens=%S/targeted-fields.h:1:1:4:1 %s -include %t.h \
53 // RUN: env CINDEXTEST_FAILONERROR=1 c-index-test -test-annotate-tokens=%S/targeted-nested1.h:1:1:3:1 %s -include %t.h \
58 // RUN: c-index-test -test-annotate-tokens=%S/targeted-nested1.h:1:1:3:1 %s -include %t.h \
68 // RUN: env CINDEXTEST_FAILONERROR=1 c-index-test -test-annotate-tokens=%S/targeted-top.h:1:1:12:1 %s -include %t.h \
74 // RUN: c-index-test -test-annotate-tokens=%S/targeted-top.h:1:1:12:1 %s -include %t.h \
  /external/llvm/test/Verifier/
range-2.ll 38 ; We can annotate the range of the return value of a CALL.
49 ; We can annotate the range of the return value of an INVOKE.
  /frameworks/base/libs/incident/proto/android/
privacy.proto 58 // Flags used to annotate a field with right privacy level.
63 // Flags used to annotate a message which all its unset primitive fields inhert this tag.
  /libcore/ojluni/src/main/java/java/util/
TooManyListenersException.java 31 * the Java Event model to annotate and implement a unicast special case of
37 * event listener registration pattern is used to annotate that interface as
  /external/protobuf/src/google/protobuf/io/
printer.h 113 // printer.Annotate("name", person_);
120 // Annotate can only examine variables substituted during the last call to
128 // variable. For example, the Annotate call above is equivalent to this one:
130 // printer.Annotate("name", "name", person_);
140 // printer.Annotate("first", "last", person_);
159 // printer.Annotate("function", "rmark", call_);
182 void Annotate(const char* varname, const SomeDescriptor* descriptor) {
183 Annotate(varname, varname, descriptor);
191 void Annotate(const char* begin_varname, const char* end_varname,
200 Annotate(begin_varname, end_varname, descriptor->file()->name(), path)
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
printer.h 113 // printer.Annotate("name", person_);
120 // Annotate can only examine variables substituted during the last call to
128 // variable. For example, the Annotate call above is equivalent to this one:
130 // printer.Annotate("name", "name", person_);
140 // printer.Annotate("first", "last", person_);
159 // printer.Annotate("function", "rmark", call_);
182 void Annotate(const char* varname, const SomeDescriptor* descriptor) {
183 Annotate(varname, varname, descriptor);
191 void Annotate(const char* begin_varname, const char* end_varname,
200 Annotate(begin_varname, end_varname, descriptor->file()->name(), path)
    [all...]
  /art/compiler/jit/
jit_logger.h 57 // $ perf annotate -i perf.data.jitted
82 // PERF ANNOTATE
83 // - The 'perf annotate' tool displays assembly level profiling report.
85 // - Make sure above small ELF files are available for 'perf annotate' tool to access,

Completed in 704 milliseconds

1 2 3 4 5 67 8 91011>>