HomeSort by relevance Sort by last modified time
    Searched defs:Class (Results 76 - 100 of 251) sorted by null

1 2 34 5 6 7 8 91011

  /packages/apps/Settings/tests/robotests/src/com/android/settings/core/codeinspection/
ClassScanner.java 34 public class ClassScanner {
36 private static final String CLASS_SUFFIX = ".class";
38 public List<Class<?>> getClassesForPackage(String packageName)
40 final List<Class<?>> classes = new ArrayList<>();
71 private void loadClassFromDirectory(File directory, String packageName, List<Class<?>> classes)
79 classes.add(Class.forName(
84 // do nothing. this class hasn't been found by the
98 List<Class<?>> classes) throws ClassNotFoundException, IOException {
114 classes.add(Class.forName(name,
118 // do nothing. this class hasn't been found by th
    [all...]
  /cts/tests/core/runner/src/com/android/cts/core/runner/
TestList.java 30 class TestList {
45 private final Collection<Class<?>> classesToRun;
49 // Run from the root test class.
53 List<Class<?>> classesToRun1 = getClasses(classNamesToRun);
58 private static List<Class<?>> getClasses(Set<String> classNames) {
60 List<Class<?>> classesToRun = new ArrayList<>();
63 classesToRun.add(Class.forName(className));
65 throw new IllegalStateException("Could not load class '" + className, e);
74 public TestList(Collection<Class<?>> classes) {
97 public Class[] getClassesToRun()
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/DeviceMngr/
DeviceManager.h 114 UINT16 Class;
194 section header for all class of devices, one-of opcode to set VBIOS.
215 @param ControllerHandle The class guid specifies which form set will be displayed.
293 @param ControllerHandle The class guid specifies which form set will be displayed.
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DeviceManagerLib/
DeviceManager.h 109 UINT16 Class;
  /device/linaro/bootloader/edk2/OvmfPkg/Csm/CsmSupportLib/
LegacyPlatform.h 59 UINT8 Class;
64 UINT8 Class;
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDriver1CommandsLib/
Connect.c 214 UINT8 Class[3];
296 Status = PciIo->Pci.Read (PciIo, EfiPciIoWidthUint8, 0x09, 3, &Class);
298 if ((PCI_CLASS_SERIAL == Class[2]) &&
299 (PCI_CLASS_SERIAL_USB == Class[1])) {
  /external/clang/lib/CodeGen/
CGCXX.cpp 33 /// base-class destructor.
38 // Producing an alias to a base class ctor/dtor can degrade debug quality
44 // an alias, unless this class owns no members.
54 const CXXRecordDecl *Class = D->getParent();
58 if (Class->mayInsertExtraPadding())
62 if (Class->getNumVBases()) {
71 for (const auto *I : Class->fields())
75 // Try to find a unique base class with a non-trivial destructor.
77 for (const auto &I : Class->bases()) {
87 // If we've already found a base class with a non-trivia
    [all...]
  /external/clang/test/SemaTemplate/
current-instantiation.cpp 189 class Class {
192 typename Enable_If<Is_Same<U, Class>::value, void>::type
199 typename Enable_If<Is_Same<U, Class<T> >::value, void>::type
200 Class<T>::foo() {}
205 class X0 {
207 class Inner1;
209 class Inner2 {
221 class X {
225 template<Enum> class Inner
    [all...]
  /external/libcxx/test/support/
poisoned_hash_helper.hpp 22 template <class ...Args> struct TypeList;
25 template <class Hash, class Key, class InputKey = Key>
28 template <class T, class InputKey = T>
34 template <class Hash, class Key>
37 template <class T>
45 struct Class {};
    [all...]
  /external/llvm/utils/TableGen/
SearchableTableEmitter.cpp 32 class SearchableTableEmitter {
306 Record *Class = NameRec.second.get();
307 if (Class->getSuperClasses().size() != 1 ||
308 !Class->isSubClassOf(SearchableTable))
310 emitMapping(Class, OS);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/
MdeModuleHii.h 112 /// Device Class opcode.
124 UINT16 Class; ///< Device Class from the above.
145 UINT16 SubClass; ///< Sub Class type from the above.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/
TianoHii.h 106 UINT16 Class;
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Guid/
MdeModuleHii.h 111 /// Device Class opcode.
123 UINT16 Class; ///< Device Class from the above.
144 UINT16 SubClass; ///< Sub Class type from the above.
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Impl.c     [all...]
Dhcp4Io.c 396 INTN Class;
406 Class = NetGetIpClass (DhcpSb->ClientAddr);
407 ASSERT (Class < IP4_ADDR_CLASSE);
408 DhcpSb->Netmask = gIp4AllMasks[Class << 3];
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/
UefiDevicePathLib.h 84 UINT8 Class;
  /external/clang/include/clang/AST/
CXXInheritance.h 31 class CXXBaseSpecifier;
32 class CXXMethodDecl;
33 class CXXRecordDecl;
34 class NamedDecl;
36 /// \brief Represents an element in a path from a derived class to a
37 /// base class.
40 /// derived class to one of its direct base classes, along with a
42 /// original derived class we are referencing.
45 /// class to a base class, which will be followed by this bas
    [all...]
  /external/clang/lib/Index/
IndexDecl.cpp 25 class IndexingDeclVisitor : public ConstDeclVisitor<IndexingDeclVisitor, bool> {
249 const ObjCInterfaceDecl *Class = D->getClassInterface();
250 if (!Class)
253 if (Class->isImplicitInterfaceDecl())
254 IndexCtx.handleDecl(Class);
391 // FIXME: Ignore a class template in a dependent context, these are not
  /external/clang/test/SemaCXX/
constructor-initializer.cpp 5 class A {
8 A() : A::m(17) { } // expected-error {{member initializer 'm' does not name a non-static data member or base class}}
12 class B : public A {
22 class C : public virtual B {
27 class D : public C {
32 class E : public D, public B { // expected-warning{{direct base 'B' is inaccessible due to ambiguity:\n class E -> class D -> class C -> class B\n class E -> class B}
    [all...]
  /external/clang/unittests/ASTMatchers/Dynamic/
RegistryTest.cpp 22 class RegistryTest : public ::testing::Test {
149 EXPECT_TRUE(matches("class X {};", Value));
202 std::string Code = "class Y { public: void x(); }; void z() { Y y; y.x(); }";
206 Code = "class Z { public: void z() { this->z(); } };";
234 Matcher<Decl> Class =
240 EXPECT_TRUE(matches("class A {};", Class));
241 EXPECT_FALSE(matches("class A;", Class));
251 EXPECT_TRUE(matches("class Foo {};", Anything))
    [all...]
  /external/llvm/include/llvm/ObjectYAML/
ELFYAML.h 34 // class's with appropriate fixed underlying type.
61 ELF_ELFCLASS Class;
88 enum class SectionKind {
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 57 class ObjCARCContract : public FunctionPass {
87 ARCInstKind Class,
147 Function &F, Instruction *Autorelease, ARCInstKind Class,
155 if (Class == ARCInstKind::AutoreleaseRV)
184 Constant *Decl = EP.get(Class == ARCInstKind::AutoreleaseRV
223 // Otherwise, we check if Inst is a "good" store. Grab the instruction class
225 ARCInstKind Class = GetBasicARCInstKind(Inst);
231 if (IsRetain(Class))
241 if (!CanUse(Inst, Load, PA, Class)) {
412 ARCInstKind Class = GetBasicARCInstKind(Inst)
    [all...]
  /external/objenesis/main/src/main/java/org/objenesis/instantiator/basic/
ClassDefinitionUtils.java 46 * Helper class for ProxyObjectInstantiator. We can see the details of a class specification
51 public final class ClassDefinitionUtils {
78 public static final int ACC_INTERFACE = 0x0200; // Is an interface, not a class.
95 return ClassDefinitionUtils.class.getProtectionDomain();
102 Class<?> loader = Class.forName("java.lang.ClassLoader"); // JVM crash w/o this
104 new Class[]{ String.class,
105 byte[].class,
    [all...]
  /external/syslinux/efi32/include/efi/
efifs.h 55 UINT32 Class;
89 UINT32 Class;

Completed in 1676 milliseconds

1 2 34 5 6 7 8 91011