/external/clang/test/SemaCXX/ |
constructor-initializer.cpp | 2 class A { 5 A() : A::m(17) { } // expected-error {{member initializer 'm' does not name a non-static data member or base class}} 9 class B : public A { 19 class C : public virtual B { 24 class D : public C { 29 class E : public D, public B { 31 E() : B(), D() { } // expected-error{{base class initializer 'B' names both a direct base class and an inherited virtual base class}} 37 class F : public B { [all...] |
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> 191 template <class T> 196 template <class T> 211 Class(); 212 Class(int,int); 227 ASSERT_LVALUE(::Class::function); // qualified-id: functio [all...] |
/external/clang/tools/libclang/ |
IndexDecl.cpp | 18 class IndexingDeclVisitor : public ConstDeclVisitor<IndexingDeclVisitor, bool> { 162 const ObjCInterfaceDecl *Class = D->getClassInterface(); 163 if (!Class) 166 if (Class->isImplicitInterfaceDecl()) 167 IndexCtx.handleObjCInterface(Class);
|
/external/llvm/lib/Transforms/ObjCARC/ |
ObjCARCContract.cpp | 51 class ObjCARCContract : public FunctionPass { 73 InstructionClass Class, 151 InstructionClass Class, 161 if (Class == IC_AutoreleaseRV) 192 Constant *Decl = EP.get(Class == IC_AutoreleaseRV ? 233 InstructionClass Class = GetBasicInstructionClass(Inst); 236 if (IsRetain(Class)) 242 if (CanUse(Inst, Load, PA, Class)) 350 InstructionClass Class = GetBasicInstructionClass(Inst); 351 switch (Class) { [all...] |
/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 | 39 public class ProviderTest extends TestCase { 97 // make sure class exists and can be initialized 99 assertNotNull(Class.forName(className, 103 // Sun forgot their own class 126 * Makes sure all provider properties either point to a class 155 assertEquals(String.class, k.getClass()); 156 assertEquals(String.class, v.getClass()); 184 assertNotNull(Class.forName(className, 188 // Sun forgot their own class 190 fail("Could not find class " + className + " for " + typeAndAlgorithm) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
symtable.py | 10 __all__ = ["symtable", "SymbolTable", "Class", "Function", "Symbol"] 19 class SymbolTableFactory: 27 return Class(table, filename) 40 class SymbolTable(object): 66 return "class" 121 class Function(SymbolTable): 159 class Class(SymbolTable): 172 class Symbol(object): 213 If the name is used as the target of a function or class [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
symtable.py | 10 __all__ = ["symtable", "SymbolTable", "Class", "Function", "Symbol"] 19 class SymbolTableFactory: 27 return Class(table, filename) 40 class SymbolTable(object): 66 return "class" 121 class Function(SymbolTable): 159 class Class(SymbolTable): 172 class Symbol(object): 213 If the name is used as the target of a function or class [all...] |
/external/chromium_org/third_party/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...] |
/external/chromium_org/third_party/skia/src/sfnt/ |
SkPanose.h | 363 struct Class {
|
/external/clang/lib/ARCMigrate/ |
Transforms.cpp | 58 ObjCInterfaceDecl *Class = ObjT->getInterfaceDecl(); 59 if (!AllowOnUnknownClass && (!Class || Class->getName() == "NSObject")) 61 if (!AllowOnUnknownClass && !Class->hasDefinition()) 63 if (Class && Class->isArcWeakrefUnavailable()) 218 class ReferenceClear : public RecursiveASTVisitor<ReferenceClear> { 225 class ReferenceCollector : public RecursiveASTVisitor<ReferenceCollector> { 240 class RemovablesCollector : public RecursiveASTVisitor<RemovablesCollector> { 322 class ASTTransform : public RecursiveASTVisitor<ASTTransform> [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 { 73 class Class { [all...] |
/external/llvm/lib/CodeGen/ |
TargetInstrInfo.cpp | 10 // This file implements the TargetInstrInfo class. 305 // the register class to use. 611 unsigned Class = MI->getDesc().getSchedClass(); 612 int UOps = ItinData->Itineraries[Class].NumMicroOps;
|
/external/llvm/lib/TableGen/ |
TGLexer.h | 10 // This class represents the Lexer for tablegen files. 24 class MemoryBuffer; 25 class SourceMgr; 26 class SMLoc; 27 class Twine; 46 Bit, Bits, Class, Code, Dag, Def, Foreach, Defm, Field, In, Int, Let, List, 61 /// TGLexer - TableGen Lexer class. 62 class TGLexer {
|
/external/skia/src/sfnt/ |
SkPanose.h | 363 struct Class {
|
/frameworks/base/tools/aidl/ |
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;
|
/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/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
radeon_pair_regalloc.c | 97 enum rc_reg_class Class; 101 /** This is 1 if this class is being used by the register allocator 105 /** This is the ID number assigned to this class by ra. */ 108 /** List of writemasks that belong to this class */ 383 return classes[class_index].Class; 387 "Could not find class for index=%u mask=%u\n", 568 /* If we haven't used this register class yet, mark it 581 struct rc_class class = rc_class_list[i]; local 582 if (!class.Used) { 587 for (j = 0; j < class.WritemaskCount; j++) [all...] |
/external/clang/lib/AST/ |
ExprCXX.cpp | 10 // This file implements the subclesses of Expr class declared in ExprCXX.h 34 // polymorphic class type, [...] the expression is an unevaluated operand. [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
|
/external/clang/lib/Sema/ |
Sema.cpp | 10 // This file implements the actions class which performs semantic analysis and 159 // Create the built-in typedef for 'Class'. 160 DeclarationName Class = &Context.Idents.get("Class"); 161 if (IdResolver.begin(Class) == IdResolver.end()) 655 // scope without an initializer, and without a storage-class 656 // specifier or with the storage-class specifier static, [all...] |
SemaLambda.cpp | 32 // Start constructing the lambda class. 33 CXXRecordDecl *Class = CXXRecordDecl::CreateLambda(Context, DC, Info, 36 DC->addDecl(Class); 38 return Class; 69 // Default arguments of member function parameters that appear in a class 114 // -- the in-class initializers of class members 116 // -- default arguments appearing in class definitions 123 CXXMethodDecl *Sema::startLambdaDefinition(CXXRecordDecl *Class, 141 = CXXMethodDecl::Create(Context, Class, EndLoc [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
CallEvent.cpp | 434 // Is the type a C++ class? (This is mostly a defensive check.) 442 // Find the decl for this method in that class. 447 // However, we should at least be able to search up and down our own class 492 const CXXRecordDecl *Class = MD->getParent(); 493 QualType Ty = Ctx.getPointerType(Ctx.getRecordType(Class)); 514 // id-expression in the class member access expression is a qualified-id, 639 // FIXME: Is this the best way to handle class receivers? 739 // If the class interface is declared inside the main file, assume it is not 755 // Find the first declaration in the class hierarchy that declares 859 // This is a class method [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 */
|
/external/harfbuzz_ng/src/hb-old/ |
harfbuzz-open.h | 217 HB_UShort* ClassValueArray; /* array of class values */ 230 HB_UShort Class; /* applied to all glyphs in range */
|