HomeSort by relevance Sort by last modified time
    Searched full:annotate (Results 226 - 250 of 509) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
CollectionSize.java 38 * However, when {@link CollectionSize.Require} is used to annotate a test it
  /external/harfbuzz_ng/util/
view-cairo.cc 95 if (view_options.annotate) {
options.hh 151 annotate = false;
163 hb_bool_t annotate; member in struct:view_options_t
  /external/junit/src/org/junit/runners/
Suite.java 20 * static {@link junit.framework.Test} <code>suite()</code> method. To use it, annotate a class
  /external/llvm/include/llvm/MC/
MCSymbolizer.h 31 /// \brief Symbolize and annotate disassembled instructions.
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
AnnotationItem.java 56 out.annotate(1, "visibility = %d: %s", visibility, getAnnotationVisibility(visibility));
TypeIdItem.java 54 out.annotate(4, StringIdItem.getReferenceAnnotation(dexFile, stringIndex));
  /packages/apps/Gallery2/
proguard.flags 5 # Since we annotate on the fields and use reflection to create SQL
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsnList.java 144 out.annotate(codeBytes, s);
146 out.annotate(codeBytes, "");
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Section.java 162 out.annotate(0, "\n" + name + ":");
164 out.annotate(0, "\n");
ClassDataItem.java 347 out.annotate(0, offsetString() + " class data for " +
378 out.annotate(String.format(" %-21s %08x", label + "_size:",
405 out.annotate(0, " " + label + ":");
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArray.java 55 * @param ex {@code non-null;} the exception to annotate
57 public abstract void annotate(ExceptionWithContext ex); method in class:LocalsArray
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsnList.java 144 out.annotate(codeBytes, s);
146 out.annotate(codeBytes, "");
  /dalvik/dx/src/com/android/dx/dex/file/
Section.java 161 out.annotate(0, "\n" + name + ":");
163 out.annotate(0, "\n");
  /external/chromium_org/base/third_party/dynamic_annotations/
dynamic_annotations.c 60 This makes all Annotate* functions different, which prevents the linker from
71 Otherwise, lineno (see above) numbers for different Annotate* functions may
  /external/chromium_org/third_party/webrtc/base/
common.h 192 // Annotate a virtual method indicating it must be overriding a virtual
213 // Annotate a function indicating the caller must examine the return value.
  /external/clang/lib/StaticAnalyzer/Checkers/
DirectIvarAssignment.cpp 15 // __attribute__((annotate("objc_no_direct_instance_variable_assignment")))
217 // with __attribute__((annotate("objc_no_direct_instance_variable_assignment"))).
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
DalvInsnList.java 145 out.annotate(codeBytes, s);
147 out.annotate(codeBytes, "");
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Section.java 162 out.annotate(0, "\n" + name + ":");
164 out.annotate(0, "\n");
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
Android.mk 48 util/annotate.c \
161 builtin-annotate.c \
builtin-top.c 24 #include "util/annotate.h"
104 * We can't annotate with just /proc/kallsyms
108 pr_err("Can't annotate %s: No vmlinux file was found in the "
397 fprintf(stdout, "\t[F] annotate display filter (percent). \t(%d%%)\n", top->sym_pcnt_filter);
398 fprintf(stdout, "\t[s] annotate symbol. \t(%s)\n", name?: "NULL");
1099 OPT_STRING(0, "sym-annotate", &top.sym_filter, "symbol name",
1100 "symbol to annotate"),
  /frameworks/base/docs/html/training/app-indexing/
enabling-app-indexing.jd 50 <p>To annotate the deep link for Google Search app indexing in your
72 Sitemap file, you can annotate the deep links in the HTML markup of your web
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Nodes.py 82 # here we annotate the code with this function call
240 def annotate(self, code): member in class:Node
243 self.body.annotate(code)
351 def annotate(self, code): member in class:CompilerDirectivesNode
354 self.body.annotate(code)
402 def annotate(self, code): member in class:StatListNode
404 stat.annotate(code)
448 def annotate(self, code): member in class:CDefExternNode
449 self.body.annotate(code)
842 def annotate(self, code): member in class:CArgDeclNode
1379 def annotate(self, code): member in class:CppClassNode
4383 def annotate(self, code): member in class:CClassDefNode
4413 def annotate(self, code): member in class:PropertyNode
4497 def annotate(self, code): member in class:ExprStatNode
4655 def annotate(self, code): member in class:SingleAssignmentNode
4716 def annotate(self, code): member in class:CascadedAssignmentNode
4764 def annotate(self, code): member in class:ParallelAssignmentNode
4829 def annotate(self, code): member in class:InPlaceAssignmentNode
4898 def annotate(self, code): member in class:PrintStatNode
4940 def annotate(self, code): member in class:ExecStatNode
4994 def annotate(self, code): member in class:DelStatNode
5147 def annotate(self, code): member in class:ReturnStatNode
5243 def annotate(self, code): member in class:RaiseStatNode
5339 def annotate(self, code): member in class:AssertStatNode
5383 def annotate(self, code): member in class:IfStatNode
5423 def annotate(self, code): member in class:IfClauseNode
5449 def annotate(self, code): member in class:SwitchCaseNode
5486 def annotate(self, code): member in class:SwitchStatNode
5549 def annotate(self, code): member in class:WhileStatNode
5734 def annotate(self, code): member in class:ForInStatNode
5942 def annotate(self, code): member in class:ForFromStatNode
6093 def annotate(self, code): member in class:WithTargetAssignmentStatNode
6238 def annotate(self, code): member in class:TryExceptStatNode
6375 def annotate(self, code): member in class:ExceptClauseNode
6647 def annotate(self, code): member in class:TryFinallyStatNode
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
hists.c 1423 annotate = -2, zoom_dso = -2, zoom_thread = -2, local
    [all...]
  /external/clang/test/Index/
annotate-tokens.c 60 // RUN: c-index-test -test-annotate-tokens=%s:4:1:37:1 %s | FileCheck %s
183 // RUN: c-index-test -test-annotate-tokens=%s:4:1:165:32 %s | FileCheck %s
184 // RUN: c-index-test -test-annotate-tokens=%s:4:1:165:38 %s | FileCheck %s
186 // RUN: c-index-test -test-annotate-tokens=%s:50:1:55:1 %s | FileCheck %s -check-prefix=CHECK-RANGE1
208 // RUN: c-index-test -test-annotate-tokens=%s:54:1:59:1 %s | FileCheck %s -check-prefix=CHECK-RANGE2

Completed in 502 milliseconds

1 2 3 4 5 6 7 8 91011>>