HomeSort by relevance Sort by last modified time
    Searched refs:CLASS (Results 76 - 100 of 252) sorted by null

1 2 34 5 6 7 8 91011

  /external/clang/tools/libclang/
RecursiveASTVisitor.h 77 /// \brief A class that does preorder depth-first traversal on the
80 /// This class performs three distinct tasks:
82 /// 2. at a given node, walk up the class hierarchy, starting from
83 /// the node's dynamic type, until the top-most class (e.g. Stmt,
85 /// 3. given a (node, class) combination, where 'class' is some base
86 /// class of the dynamic type of 'node', call a user-overridable
99 /// where Bar is the direct parent class of Foo (unless Foo has
109 /// is Foo's super class) before calling VisitFoo(), the result is
133 /// is to descend into the 'pattern' class or function body, not an
    [all...]
CursorVisitor.h 20 class PreprocessingRecord;
21 class ASTUnit;
25 class VisitorJob {
54 class CursorVisitor : public DeclVisitor<CursorVisitor, bool>,
121 class SetParentRAII {
229 // FIXME: ObjCCompatibleAliasDecl requires aliased-class locations.
250 #define ABSTRACT_TYPELOC(CLASS, PARENT)
251 #define TYPELOC(CLASS, PARENT) \
252 bool Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc)
    [all...]
  /external/iproute2/examples/
cbq.init-v0.7.3 35 # - allow symlinks to class files
39 # - allow setting of PRIO_{MARK,RULE,REALM} in class file
57 # some 40% faster, but the class ID must be in range 0x0002-0xffff
59 # class ID restriction, I bumped the version to 0.7 to indicate
74 # - removed setup of (unnecessary) class 1:1 - all classes
75 # now use qdisc's default class 1:0 as their parent
117 # - class ID check allows hexadecimal numbers
190 # Every traffic class must be described by a file in the $CBQ_PATH directory
191 # (/etc/sysconfig/cbq by default) - one file per class.
195 # is a CBQ class ID) and <name> is the name of the class -- anything to hel
    [all...]
  /cts/tools/dasm/src/dasm/
sym.java 9 /** JavaCup generated class containing symbol constants. */
10 public class sym {
34 static final int CLASS = 31;
  /external/apache-harmony/annotation/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
RetentionPolicyTest.java 28 public class RetentionPolicyTest extends TestCase {
35 assertSame(RetentionPolicy.CLASS, RetentionPolicy
36 .valueOf("CLASS"));
  /external/javassist/src/main/javassist/compiler/ast/
CastExpr.java 24 public class CastExpr extends ASTList implements TokenId {
30 castType = CLASS;
40 /* Returns CLASS, BOOLEAN, INT, or ...
  /frameworks/base/core/java/android/annotation/
SuppressLint.java 31 @Retention(RetentionPolicy.CLASS)
  /frameworks/compile/mclinker/lib/LD/
DiagnosticInfos.cpp 43 #define DIAG(ENUM, CLASS, ADDRDESC, LOCDESC) \
44 { diag::ENUM, CLASS, STR_SIZE(ADDRDESC, uint16_t), ADDRDESC },
59 #define DIAG(ENUM, CLASS, ADDRDESC, LOCDESC) \
60 { diag::ENUM, CLASS, STR_SIZE(LOCDESC, uint16_t), LOCDESC },
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
RetentionPolicyTest.java 25 public class RetentionPolicyTest extends TestCase {
27 assertSame(RetentionPolicy.CLASS, RetentionPolicy.valueOf("CLASS"));
  /sdk/annotations/src/android/annotation/
SuppressLint.java 31 @Retention(RetentionPolicy.CLASS)
  /cts/tests/SignatureTest/tests/src/android/tests/sigtest/tests/
JDiffClassDescriptionTest.java 27 * Test class for JDiffClassDescription.
29 public class JDiffClassDescriptionTest extends InstrumentationTestCase {
30 private class NoFailures implements ResultObserver {
36 private class ExpectFailure implements ResultObserver {
78 clz.setType(JDiffClassDescription.JDiffType.CLASS);
87 "public class NormalClass");
95 clz.setType(JDiffClassDescription.JDiffType.CLASS);
241 clz.setType(JDiffClassDescription.JDiffType.CLASS);
246 assertEquals(clz.toSignatureString(), "public class NormalClass.InnerClass");
250 clz.setType(JDiffClassDescription.JDiffType.CLASS);
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/arm/
arm.h     [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/
arm.h     [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/arm/
arm.h     [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/
arm.h     [all...]
  /external/javassist/src/main/javassist/compiler/
JvstTypeChecker.java 24 public class JvstTypeChecker extends TypeChecker {
37 exprType = CLASS;
49 exprType = CLASS;
54 exprType = CLASS;
56 className = "java/lang/Class";
60 exprType = CLASS;
62 className = "java/lang/Class";
131 exprType = CLASS;
276 exprType = CLASS;
  /external/llvm/include/llvm/
InstVisitor.h 27 #define HANDLE_INST(NUM, OPCODE, CLASS) class CLASS;
35 /// @brief Base class for instruction visitors
41 /// To define your own visitor, inherit from this class, specifying your
43 /// functions in your class. I say "override" because this class is defined
49 /// /// Declare the class. Note that we derive from InstVisitor instantiated
59 /// And this class would be used like this:
76 /// Note that this class is specifically designed as a template to avoi
    [all...]
  /external/llvm/include/llvm/IR/
Instruction.h 1 //===-- llvm/Instruction.h - Instruction class definition -------*- C++ -*-===//
10 // This file contains the declaration of the Instruction class, which is the
11 // base class for all of the LLVM instructions.
24 class FastMathFlags;
25 class LLVMContext;
26 class MDNode;
29 class SymbolTableListTraits;
31 class Instruction : public User, public ilist_node<Instruction> {
382 #define HANDLE_TERM_INST(N, OPC, CLASS) OPC = N,
389 #define HANDLE_BINARY_INST(N, OPC, CLASS) OPC = N
    [all...]
  /build/core/tasks/
ide.mk 38 $(if $(filter JAVA_LIBRARIES APPS,$(ALL_MODULES.$(m).CLASS)),$(m),))
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
Fuzzy.h 24 #define CLASS 7
39 /* interface lexer class */
FuzzyLexer.h 26 #define CLASS 10
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
FuzzyLexer.h 26 #define CLASS 10
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
filter-mode.rb 6 class TestFilterMode < ANTLR3::Test::Functional
23 CLASS
24 : 'class' WS ID WS? ('extends' WS QID WS?)?
77 public class Main {
98 class TestFuzzy < ANTLR3::Test::Functional
120 CLASS
121 : 'class' WS name=ID WS? ('extends' WS QID WS?)?
124 say("found class " << $name.text)
211 public class Main {
225 found class Mai
    [all...]
  /external/clang/tools/diagtool/
DiagnosticNames.cpp 31 #define DIAG(ENUM,CLASS,DEFAULT_MAPPING,DESC,GROUP, \
  /external/e2fsprogs/intl/
textdomain.c 38 # define __libc_rwlock_define(CLASS, NAME)

Completed in 762 milliseconds

1 2 34 5 6 7 8 91011