HomeSort by relevance Sort by last modified time
    Searched refs:CLASS (Results 151 - 175 of 289) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/tools/aidl/
generate_java_rpc.cpp 85 class DispatcherClass : public Class
109 :Class(),
287 class RpcProxyClass : public Class
302 :Class()
306 this->what = Class::CLASS;
356 class EventListenerClass : public DispatcherClass
378 this->what = Class::CLASS
    [all...]
AST.cpp 780 Class::Class()
782 what(CLASS),
788 Class::~Class()
793 Class::GatherTypes(set<Type*>* types) const
814 Class::Write(FILE* to)
824 if (this->what == Class::CLASS) {
825 fprintf(to, "class ");
    [all...]
generate_java_binder.cpp 9 class StubClass : public Class
25 :Class()
27 this->comment = "/** Local-side IPC implementation stub class. */";
29 this->what = Class::CLASS;
125 // different class loader) runs in the same process as the service.
149 class ProxyClass : public Class
160 :Class()
    [all...]
AST.h 12 class Type;
335 struct Class : public ClassElement
338 CLASS,
344 int what; // CLASS or INTERFACE
350 Class();
351 virtual ~Class();
363 vector<Class*> classes;
  /external/llvm/include/llvm/IR/
InstrTypes.h 26 class LLVMContext;
29 // TerminatorInst Class
32 /// TerminatorInst - Subclasses of this class are all able to terminate a basic
35 class TerminatorInst : public Instruction {
86 // UnaryInstruction Class
89 class UnaryInstruction : public Instruction {
135 // BinaryOperator Class
138 class BinaryOperator : public Instruction {
175 #define HANDLE_BINARY_INST(N, OPC, CLASS) \
181 #define HANDLE_BINARY_INST(N, OPC, CLASS) \
    [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp 107 class ItaniumMangleContext : public MangleContext {
195 class CXXNameMangler {
208 class FunctionTypeDepthState {
352 // Declare manglers for every type class.
353 #define ABSTRACT_TYPE(CLASS, PARENT)
354 #define NON_CANONICAL_TYPE(CLASS, PARENT)
355 #define TYPE(CLASS, PARENT) void mangleType(const CLASS##Type *T);
551 // Check if we have a class template.
892 // template <class T...> class A
    [all...]
DumpXML.cpp 61 template <class Impl> struct XMLDeclVisitor {
62 #define DISPATCH(NAME, CLASS) \
63 static_cast<Impl*>(this)->NAME(static_cast<CLASS*>(D))
117 template <class Impl> struct XMLTypeVisitor {
118 #define DISPATCH(NAME, CLASS) \
119 static_cast<Impl*>(this)->NAME(static_cast<CLASS*>(T))
265 class TemporaryContainer {
411 template <class T> void visitRedeclarableAttrs(T *D) {
StmtPrinter.cpp 34 class StmtPrinter : public StmtVisitor<StmtPrinter> {
101 #define ABSTRACT_STMT(CLASS)
102 #define STMT(CLASS, PARENT) \
103 void Visit##CLASS(CLASS *Node);
587 class OMPClausePrinter : public OMPClauseVisitor<OMPClausePrinter> {
591 #define OPENMP_CLAUSE(Name, Class) \
592 void Visit##Class(Class *S);
602 #define PROCESS_OMP_CLAUSE_LIST(Class, Node, StartSym)
    [all...]
Stmt.cpp 10 // This file implements the Stmt class and statement subclasses.
44 #define STMT(CLASS, PARENT) \
45 StmtClassInfo[(unsigned)Stmt::CLASS##Class].Name = #CLASS; \
46 StmtClassInfo[(unsigned)Stmt::CLASS##Class].Size = sizeof(CLASS);
140 template <class T> good implements_children(children_t T::*) {
148 template <class T> good implements_getLocStart(getLocStart_t T::*)
    [all...]
  /cts/tools/dasm/src/dasm/
ReservedWords.java 23 class ReservedWords {
42 reserved_words.put(".class", new token(sym.DCLASS));
71 reserved_words.put("class", new token(sym.CLASS));
  /external/droiddriver/src/com/google/android/droiddriver/finders/
By.java 29 public class By {
155 * @param className The exact class name to match against
156 * @return a finder to find an element by class name
159 return attribute(Attribute.CLASS, OBJECT_EQUALS, className);
163 * @param clazz The class whose name is matched against
164 * @return a finder to find an element by class name
166 public static ByAttribute<String> className(Class<?> clazz) {
ByXPath.java 51 public class ByXPath implements Finder {
122 setAttribute(element, Attribute.CLASS, className);
  /external/e2fsprogs/intl/
bindtextdom.c 39 # define __libc_rwlock_define(CLASS, NAME)
  /external/javassist/src/main/javassist/compiler/
Parser.java 20 public final class Parser implements TokenId {
98 * [ THROWS class.type ( "," class.type ) ]
181 /* formal.type : ( build-in-type | class.type ) array.dimension
467 * [ CATCH "(" class.type Identifier ")" block.statement ]*
481 if (d.getArrayDim() > 0 || d.getType() != CLASS)
554 * | [ FINAL ] class.type array.dimension declarators
759 * | relational.expr INSTANCEOF class.type ("[" "]")*
892 | "(" class.type ("[" "]")* ")" unary.expr2
897 Either "(int.class)" or "(String[].class)" is a not cast expression
    [all...]
  /libcore/libdvm/src/main/java/java/lang/reflect/
Constructor.java 43 * This class represents a constructor. Information about the constructor can be
46 * @param <T> the class that declares this constructor
48 public final class Constructor<T> extends AccessibleObject implements GenericDeclaration,
51 Class<T> declaringClass;
53 Class<?>[] parameterTypes;
55 Class<?>[] exceptionTypes;
80 * Prevent this class from being instantiated.
87 * Creates an instance of the class. Only called from native code, thus
91 * the class this constructor object belongs to
97 * the slot of the constructor inside the VM class structur
    [all...]
Method.java 45 * This class represents a method. Information about the method can be accessed,
48 public final class Method extends AccessibleObject implements GenericDeclaration, Member {
62 Class<?>[] aParameters = a.parameterTypes;
63 Class<?>[] bParameters = b.parameterTypes;
85 private Class<?> declaringClass;
89 private Class<?>[] parameterTypes;
91 private Class<?>[] exceptionTypes;
93 private Class<?> returnType;
115 private Method(Class<?> declaring, Class<?>[] paramTypes, Class<?>[] exceptTypes, Class<?> returnType, String name, int slot, int methodDex (…)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
glx_api.c 119 /* Macro to handle c_class vs class field name in XVisualInfo struct */
121 #define CLASS c_class
123 #define CLASS class
134 switch (vinfo->CLASS) {
388 temp.CLASS = xclass;
391 default_class = DefaultVisual(dpy,scr)->CLASS;
459 _mesa_warning(NULL, "GLX unable to find visual class=%s, depth=%d.",
472 * preferred_class - preferred GLX visual class or DONT_CARE
536 /* search for a specific visual class */
    [all...]
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_api.c 119 /* Macro to handle c_class vs class field name in XVisualInfo struct */
121 #define CLASS c_class
123 #define CLASS class
134 switch (vinfo->CLASS) {
388 temp.CLASS = xclass;
391 default_class = DefaultVisual(dpy,scr)->CLASS;
459 _mesa_warning(NULL, "GLX unable to find visual class=%s, depth=%d.",
472 * preferred_class - preferred GLX visual class or DONT_CARE
536 /* search for a specific visual class */
    [all...]
  /build/core/
base_rules.mk 130 # Make sure that this IS_HOST/CLASS/MODULE combination is unique.
283 ## Java: Compile .java files to .class
372 $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_JAVA_OBJECTS := $(patsubst %.java,%.class,$(LOCAL_SRC_FILES))
579 ALL_MODULES.$(LOCAL_MODULE).CLASS := \
580 $(ALL_MODULES.$(LOCAL_MODULE).CLASS) $(LOCAL_MODULE_CLASS)
  /external/clang/include/clang/AST/
Comment.h 25 class Decl;
26 class ParmVarDecl;
27 class TemplateParameterList;
30 class FullComment;
52 /// Abstract class.
53 class Comment {
61 class CommentBitfields {
62 friend class Comment;
69 class InlineContentCommentBitfields {
70 friend class InlineContentComment
    [all...]
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 41 unsigned Class : 3;
69 #define DIAG(ENUM,CLASS,DEFAULT_MAPPING,DESC,GROUP, \
72 { diag::ENUM, DEFAULT_MAPPING, CLASS, SFINAE, ACCESS, \
247 if (Info->Class == CLASS_ERROR)
257 /// getBuiltinDiagClass - Return the class field of the diagnostic.
261 return Info->Class;
271 class CustomDiagInfo {
487 // If we are in a system header, we ignore it. We look at the diagnostic class
  /cts/tests/SignatureTest/src/android/tests/sigtest/
SignatureTest.java 38 public class SignatureTest extends AndroidTestCase {
42 private static final String TAG_CLASS = "class";
88 private class TestResultObserver implements ResultObserver {
118 Class rClass = R.xml.class;
218 * @param className of the class being examined which will be shown in error messages
232 * @param className of the class being examined which will be shown in error messages
247 * @param currentClass the current class being loaded.
258 * Load class or interface information to memory.
261 * @param isInterface true if the current class is an interface, otherwise is false
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 26 * class are generally interned and may be usefully compared with each
29 public final class Type implements TypeBearer, Comparable<Type> {
34 /** {@code non-null;} table mapping types as {@code Class} objects to internal form */
35 private static final HashMap<Class, Type> CLASS_TYPE_MAP =
36 new HashMap<Class, Type>();
126 * Create a mapping between types as Java Class objects
129 CLASS_TYPE_MAP.put(boolean.class, BOOLEAN);
130 CLASS_TYPE_MAP.put(short.class, SHORT);
131 CLASS_TYPE_MAP.put(int.class, INT);
132 CLASS_TYPE_MAP.put(long.class, LONG)
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 25 * class are generally interned and may be usefully compared with each
28 public final class Type implements TypeBearer, Comparable<Type> {
131 /** {@code non-null;} instance representing {@code java.lang.Class} */
132 public static final Type CLASS = intern("Ljava/lang/Class;");
257 * {@code null-ok;} the internal-form class name corresponding to
324 * intern cache, then it had better be the descriptor for a class.
334 * Validate the characters of the class name itself. Note that
336 * internal-form class names, and the definition here is fairly
395 * class with the given name. Calling this method is equivalent t
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Type.java 26 * class are generally interned and may be usefully compared with each
29 public final class Type implements TypeBearer, Comparable<Type> {
132 /** {@code non-null;} instance representing {@code java.lang.Class} */
133 public static final Type CLASS = intern("Ljava/lang/Class;");
258 * {@code null-ok;} the internal-form class name corresponding to
325 * intern cache, then it had better be the descriptor for a class.
335 * Validate the characters of the class name itself. Note that
337 * internal-form class names, and the definition here is fairly
396 * class with the given name. Calling this method is equivalent t
    [all...]

Completed in 7231 milliseconds

1 2 3 4 5 67 8 91011>>