HomeSort by relevance Sort by last modified time
    Searched defs:Class (Results 26 - 50 of 82) sorted by null

12 3 4

  /frameworks/base/test-runner/src/android/test/
ClassPathPackageInfoSource.java 39 public class ClassPathPackageInfoSource {
41 private static final String CLASS_EXTENSION = ".class";
44 = ClassPathPackageInfoSource.class.getClassLoader();
54 // The class path of the running application
78 Set<Class<?>> topLevelClasses = Sets.newHashSet();
87 // We get errors in the emulator if we don't use the caller's class loader.
88 topLevelClasses.add(Class.forName(className, false,
91 // Should not happen unless there is a generated class that is not included in
93 Log.w("ClassPathPackageInfoSource", "Cannot load class. "
94 + "Make sure it is in your apk. Class name: '" + classNam
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
ProviderTest.java 33 public class ProviderTest extends TestCase {
91 // make sure class exists and can be initialized
93 assertNotNull(Class.forName(className,
97 // Sun forgot their own class
120 * Makes sure all provider properties either point to a class
149 assertEquals(String.class, k.getClass());
150 assertEquals(String.class, v.getClass());
178 assertNotNull(Class.forName(className,
182 // Sun forgot their own class
184 fail("Could not find class " + className + " for " + typeAndAlgorithm)
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 44 var Class = {
54 Object.extend(klass, Class.Methods);
77 Class.Methods = {
294 var PeriodicalExecuter = Class.create({
560 var Template = Class.create({
997 var Hash = Class.create(Enumerable, (function() {
1094 var ObjectRange = Class.create(Enumerable, {
1168 Ajax.Base = Class.create({
1190 Ajax.Request = Class.create(Ajax.Base, {
    [all...]
mootools-1.2.2-core-nc.js 15 - Class implementation inspired by [Base.js](http://dean.edwards.name/weblog/2006/03/base/) Copyright (c) 2006 Dean Edwards, [GNU Lesser General Public License](http://opensource.org/licenses/lgpl-license.php)
1038 Script: Class.js
1039 Contains the Class Function for easily creating, extending, and implementing reusable Classes.
1045 function Class(params){
1060 newClass.constructor = Class;
1095 new Native({name: 'Class', initialize: Class}).extend({
1120 Class.implement({
1129 var mutator = Class.Mutators[key];
1142 proto[key] = Class.wrap(this, key, value)
    [all...]
  /external/clang/test/CXX/class.access/class.friend/
p1.cpp 3 // C++'0x [class.friend] p1:
4 // A friend of a class is a function or class that is given permission to use
5 // the private and protected member names from the class. A class specifies
8 // friends members of the befriending class.
62 class ClassFriend {
66 class MemberFriend {
72 class Class {
    [all...]
  /external/clang/test/SemaCXX/
expression-traits.cpp 19 // a macro), except at class scope
36 // Note: these asserts cannot be made at class scope in C++03. Put
180 struct Class : BaseClass
185 template <class T>
188 template <class T> // expected-note{{possible target for call}}
191 template <class T>
196 template <class T>
211 Class();
212 Class(int,int);
227 ASSERT_LVALUE(::Class::function); // qualified-id: functio
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.h 10 // This class represents the Lexer for tablegen files.
23 class MemoryBuffer;
24 class SourceMgr;
25 class SMLoc;
26 class Twine;
45 Bit, Bits, Class, Code, Dag, Def, Defm, Field, In, Int, Let, List,
60 /// TGLexer - TableGen Lexer class.
61 class TGLexer {
TGParser.cpp 68 // The value already exists in the class, treat this as a set.
151 // Add all of the values in the subclass into the current class.
212 // Add all of the values in the subclass into the current class.
298 return K == tgtok::Class || K == tgtok::Def ||
344 /// ParseClassID - Parse and resolve a reference to a class name. This returns
357 TokError("Couldn't find class '" + Lex.getCurStrVal() + "'");
376 TokError("Couldn't find class '" + Lex.getCurStrVal() + "'");
    [all...]
  /frameworks/base/tools/aidl/
AST.h 12 class Type;
313 struct Class : public ClassElement
316 CLASS,
322 int what; // CLASS or INTERFACE
328 Class();
329 virtual ~Class();
341 vector<Class*> classes;
  /libcore/luni/src/test/java/libcore/java/lang/
OldClassTest.java 42 public class OldClassTest extends junit.framework.TestCase {
45 OldClassTest.class.getPackage().getName().replace('.', '/') +
60 public static class TestClass1C {
68 public static class TestClass2 {
75 public static class TestClass3 {
86 static class StaticMember$Class {
87 class Member2$A {
91 class Member$Class {
    [all...]
  /external/clang/lib/AST/
DeclCXX.cpp 86 // An aggregate is [...] a class with [...] no base classes [...].
89 // C++ [class]p4:
90 // A POD-struct is an aggregate class...
97 // The virtual bases of this class.
104 // Keep track of inherited vbases for this base class.
113 // A class with a non-empty base class is not empty.
117 // C++0x [class]p7:
118 // A standard-layout class is a class that
    [all...]
RecordLayoutBuilder.cpp 1 //=== RecordLayoutBuilder.cpp - Helper class for building record layouts ---==//
28 /// BaseSubobjectInfo - Represents a single base subobject in a complete class.
29 /// For a class hierarchy like
31 /// class A { };
32 /// class B : A { };
33 /// class C : A, B { };
40 /// Class - The class for this base info.
41 const CXXRecordDecl *Class;
58 /// offsets while laying out a C++ class
    [all...]
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 47 unsigned Class : 3;
109 class StringSizerHelper {
120 #define DIAG(ENUM,CLASS,DEFAULT_MAPPING,DESC,GROUP, \
123 { diag::ENUM, DEFAULT_MAPPING, CLASS, SFINAE, ACCESS, \
288 if (Info->Class == CLASS_ERROR)
342 /// getBuiltinDiagClass - Return the class field of the diagnostic.
346 return Info->Class;
385 class CustomDiagInfo {
602 // If we are in a system header, we ignore it. We look at the diagnostic class
702 // Get the class of the diagnostic. If this is a NOTE, map it onto whateve
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp 312 class DefaultABIInfo : public ABIInfo {
330 class DefaultTargetCodeGenInfo : public TargetCodeGenInfo {
391 class X86_32ABIInfo : public ABIInfo {
431 class X86_32TargetCodeGenInfo : public TargetCodeGenInfo {
824 class X86_64ABIInfo : public ABIInfo {
825 enum Class {
845 static Class merge(Class Accum, Class Field);
861 void postMerge(unsigned AggregateSize, Class &Lo, Class &Hi) const
    [all...]
CGDecl.cpp 77 case Decl::Record: // struct/union/class X;
80 case Decl::CXXRecord: // struct/union/class X; [C++]
139 llvm_unreachable("Unknown storage class");
702 /// variable declaration with auto, register, or no storage class specifier.
768 // variable (C++0x [class.copy]p34).
802 const char *Class =
804 DeclPtr = CreateStaticVarDecl(D, Class,
    [all...]
CodeGenModule.cpp 274 // Every use of a non-template class's type information has to emit it.
282 // an arbitrary template class, and linkers aren't necessarily able
    [all...]
  /external/clang/lib/Sema/
Sema.cpp 10 // This file implements the actions class which performs semantic analysis and
79 // Synthesize "@class Protocol;
169 // Create the built-in typedef for 'Class'.
170 DeclarationName Class = &Context.Idents.get("Class");
171 if (IdentifierResolver::begin(Class) == IdentifierResolver::end())
478 // scope without an initializer, and without a storage-class
479 // specifier or with the storage-class specifier static,
760 // out-of-line definitions of static class members.
    [all...]
SemaExprObjC.cpp 250 // C++ case, we don't require an instance method --- class methods
292 // was a class message send, T is the declared return type of the method
297 // - if the receiver is super, T is a pointer to the class of the
301 if (ObjCInterfaceDecl *Class = CurMethod->getClassInterface())
303 Context.getObjCInterfaceType(Class));
306 // - if the receiver is the name of a class U, T is a pointer to U
310 // - if the receiver is of type Class or qualified Class type,
316 // - if the receiver is id, qualified id, Class, or qualified Class,
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 10 // This file defines BasicObjCFoundationChecks, a class that encapsulates
36 class APIMisuse : public BugType {
72 class NilArgChecker : public Checker<check::PreObjCMessage> {
143 class CFNumberCreateChecker : public Checker< check::PreStmt<CallExpr> > {
178 class Optional {
350 class CFRetainReleaseChecker : public Checker< check::PreStmt<CallExpr> > {
428 // Check for sending 'retain', 'release', or 'autorelease' directly to a Class.
432 class ClassReleaseChecker : public Checker<check::PreObjCMessage> {
448 BT.reset(new APIMisuse("message incorrectly sent to class instead of class "
    [all...]
  /external/harfbuzz/src/
harfbuzz-open.h 217 HB_UShort* ClassValueArray; /* array of class values */
230 HB_UShort Class; /* applied to all glyphs in range */
harfbuzz-gsub-private.h 207 HB_UShort* Class; /* array of classes */
  /libcore/luni/src/main/java/java/lang/
Class.java 63 * The in-memory representation of a Java class. This representation serves as
64 * the starting point for querying class-related information, a process usually
65 * called "reflection". There are basically three types of {@code Class}
69 * <h4>Class instances representing object types (classes or interfaces)</h4>
71 * These represent an ordinary class or interface as found in the class
72 * hierarchy. The name associated with these {@code Class} instances is simply
73 * the fully qualified class name of the class or interface that it represents.
74 * In addition to this human-readable name, each class is also associated by
    [all...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
ast.py 26 # * Handle static class data for templatized classes
102 class _NullDict(object):
108 class Node(object):
143 class Define(Node):
154 class Include(Node):
167 class Goto(Node):
176 class Expr(Node):
189 class Return(Expr):
193 class Delete(Expr):
197 class Friend(Expr)
    [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 23 class IdentifierInfo;
24 class ASTContext;
28 class ObjCStringLiteral : public Expr {
62 class ObjCEncodeExpr : public Expr {
104 class ObjCSelectorExpr : public Expr {
144 class ObjCProtocolExpr : public Expr {
178 class ObjCIvarRefExpr : public Expr {
179 class ObjCIvarDecl *D;
231 class ObjCPropertyRefExpr : public Expr {
405 friend class ASTStmtReader
    [all...]
  /external/webkit/Source/WebCore/css/
CSSSelector.h 32 class CSSSelectorList;
34 // this class represents a selector for a StyleRule
35 class CSSSelector {
93 Class,
236 bool hasAttribute() const { return m_match == Id || m_match == Class || (m_hasRareData && m_data.m_rareData->m_attribute != anyQName()); }

Completed in 1197 milliseconds

12 3 4