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

12 3 4 5 6

  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 29 const InstructionClass Class) {
30 switch (Class) {
80 llvm_unreachable("Unknown instruction class!");
180 InstructionClass Class = GetFunctionClass(F);
181 if (Class != IC_CallOrUser)
182 return Class;
DependencyAnalysis.cpp 37 InstructionClass Class) {
38 switch (Class) {
73 ProvenanceAnalysis &PA, InstructionClass Class) {
75 if (Class == IC_Call)
125 InstructionClass Class = GetInstructionClass(Inst);
126 switch (Class) {
132 return CanUse(Inst, Arg, PA, Class);
137 InstructionClass Class = GetInstructionClass(Inst);
138 switch (Class) {
150 InstructionClass Class = GetInstructionClass(Inst)
    [all...]
  /external/clang/test/CXX/except/except.spec/
p1.cpp 17 class Class {
34 class CA1 {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pyclbr.py 3 Parse enough of a Python file to recognize imports and class and
4 method definitions, and to find out the superclasses of a class.
13 via the from XXX import YYY construct). The values are class
14 instances of the class Class defined here. One special key/value pair
18 A class is described by the class Class in this module. Instances
19 of this class have the following instance variables:
21 name -- the name of the class
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pyclbr.py 3 Parse enough of a Python file to recognize imports and class and
4 method definitions, and to find out the superclasses of a class.
13 via the from XXX import YYY construct). The values are class
14 instances of the class Class defined here. One special key/value pair
18 A class is described by the class Class in this module. Instances
19 of this class have the following instance variables:
21 name -- the name of the class
    [all...]
  /external/clang/lib/Driver/
InputInfo.h 22 class InputInfo {
29 enum Class {
40 Class Kind;
  /external/clang/test/OpenMP/
threadprivate_messages.cpp 49 class Class {
53 Class() : a(0){}
55 Class (int aaa) : a(aaa) {}
59 #pragma omp threadprivate (Class::b) // expected-error {{'#pragma omp threadprivate' must appear in the scope of the 'Class::b' variable declaration}}
75 template <class T>
76 class TempClass {
  /external/emma/core/java12/com/vladium/emma/rt/
RTExitHook.java 23 final class RTExitHook implements Runnable
50 in = RTExitHook.class.getResourceAsStream (CLOSURE_RESOURCE);
82 final ClassLoader loader = RTExitHook.class.getClassLoader ();
91 Class.forName (className, true, loader);
95 throw new Error ("packaging failure: class [" + className + "] not found {" + e.toString () + "}");
105 RTExitHook (final Class RT, final ICoverageData cdata, final File outFile, final boolean merge)
120 private Class m_RT; // keep our RT class pinned in memory
125 } // end of class
  /external/junit/src/org/junit/runner/
JUnitCore.java 19 * For one-shot test runs, use the static method {@link #runClasses(Class[])}.
27 public class JUnitCore {
65 public static Result runClasses(Computer computer, Class<?>... classes) {
75 public static Result runClasses(Class<?>... classes) {
85 List<Class<?>> classes= new ArrayList<Class<?>>();
89 classes.add(Class.forName(each));
91 system.out().println("Could not find class: " + each);
98 Result result= run(classes.toArray(new Class[0]));
116 public Result run(Class<?>... classes)
    [all...]
  /external/android-mock/src/com/google/android/testing/mocking/
AndroidFrameworkMockGenerator.java 37 * This class will pull pre-defined mocks for Android framework classes. This is
39 * version Y, where the specification of the class being mocked will have
44 public class AndroidFrameworkMockGenerator {
49 * Returns a set of mock support classes for the specified Class for all versions of
50 * the Android SDK. If the requested class is not part of the Android framework, then the class
53 * @param clazz the class to mock.
55 * the requested Class.
57 public List<GeneratedClassFile> getMocksForClass(Class<?> clazz) throws ClassNotFoundException,
59 List<Class<?>> prebuiltClasses = getPrebuiltClassesFor(clazz)
    [all...]
UsesMocksProcessor.java 57 public class UsesMocksProcessor extends AbstractProcessor {
74 List<Class<?>> classesToMock = getClassesToMock(environment);
92 private Set<GeneratedClassFile> getMocksFor(List<Class<?>> classesToMock) throws IOException,
110 * @return a List of Class objects for the classes that need to be mocked.
112 private List<Class<?>> getClassesToMock(RoundEnvironment environment) {
114 List<Class<?>> classesToMock = new ArrayList<Class<?>>();
116 findClassesToMock(environment.getElementsAnnotatedWith(UsesMocks.class)));
133 List<Class<?>> findClassesToMock(Set<? extends Element> annotatedElements) {
135 List<Class<?>> classList = new ArrayList<Class<?>>()
    [all...]
  /external/clang/lib/CodeGen/
CGCXX.cpp 32 /// base-class destructor.
42 const CXXRecordDecl *Class = D->getParent();
45 if (Class->getNumVBases()) {
54 for (CXXRecordDecl::field_iterator I = Class->field_begin(),
55 E = Class->field_end(); I != E; ++I)
59 // Try to find a unique base class with a non-trivial destructor.
61 for (CXXRecordDecl::base_class_const_iterator I = Class->bases_begin(),
62 E = Class->bases_end(); I != E; ++I) {
72 // If we've already found a base class with a non-trivial
93 const ASTRecordLayout &ClassLayout = Context.getASTRecordLayout(Class);
    [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/clang/unittests/ASTMatchers/Dynamic/
RegistryTest.cpp 23 class RegistryTest : public ::testing::Test {
92 EXPECT_TRUE(matches("class X {};", Value));
142 std::string Code = "class Y { public: void x(); }; void z() { Y y; y.x(); }";
146 Code = "class Z { public: void z() { this->z(); } };";
155 Matcher<Decl> Class =
161 EXPECT_TRUE(matches("class A {};", Class));
162 EXPECT_FALSE(matches("class A;", Class));
171 EXPECT_TRUE(matches("class A {};", Anything))
    [all...]
  /external/llvm/include/llvm/Object/
ELFYAML.h 34 // class's with appropriate fixed underlying type.
48 ELF_ELFCLASS Class;
  /external/stlport/test/unit/
mfunptr_test.cpp 13 // TestCase class
15 class MemFunPtrTest : public CPPUNIT_NS::TestCase
53 class Class {
73 Class obj;
74 const Class& objc = obj;
94 mem_fun(&Class::f0)(&obj);
95 mem_fun(&Class::f1)(&obj, s1);
98 mem_fun(&Class::vf0)(&obj);
99 mem_fun(&Class::vf1)(&obj, s1)
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
mfunptr_test.cpp 13 // TestCase class
15 class MemFunPtrTest : public CPPUNIT_NS::TestCase
53 class Class {
73 Class obj;
74 const Class& objc = obj;
94 mem_fun(&Class::f0)(&obj);
95 mem_fun(&Class::f1)(&obj, s1);
98 mem_fun(&Class::vf0)(&obj);
99 mem_fun(&Class::vf1)(&obj, s1)
    [all...]
  /ndk/tests/device/test-stlport/unit/
mfunptr_test.cpp 13 // TestCase class
15 class MemFunPtrTest : public CPPUNIT_NS::TestCase
53 class Class {
73 Class obj;
74 const Class& objc = obj;
94 mem_fun(&Class::f0)(&obj);
95 mem_fun(&Class::f1)(&obj, s1);
98 mem_fun(&Class::vf0)(&obj);
99 mem_fun(&Class::vf1)(&obj, s1)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ClassTest.java 46 public class ClassTest extends junit.framework.TestCase {
48 public static final String FILENAME = ClassTest.class.getPackage().getName().replace('.', '/')+"/test#.properties";
50 static class StaticMember$Class {
51 class Member2$A {
55 class Member$Class {
56 class Member3$B {
60 public static class TestClass {
91 public static class SubTestClass extends TestClass
    [all...]
  /frameworks/base/tools/aidl/
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...]
  /external/chromium_org/v8/src/
types.h 42 // can express class types (a.k.a. specific maps) and singleton types (i.e.,
65 // Class(map) < T iff instance_type(map) < T
68 // Note that Constant(x) < Class(map(x)) does _not_ hold, since x's map can
90 // bitsets via smis. Class is a heap pointer to the respective map. Only
91 // Constant's, or unions containing Class'es or Constant's, require allocation.
134 class Type : public Object {
141 static Type* Class(Handle<i::Map> map) { return from_handle(map); }
163 // a constant and its map class.
176 template<class T>
177 class Iterator
    [all...]
  /external/chromium_org/v8/test/cctest/
test-types.cc 104 class HandlifiedTypes {
135 ObjectClass = Class(object_map);
136 ArrayClass = Class(array_map);
185 Handle<Type> Class(Handle<Map> map) {
186 return handle(Type::Class(map), isolate_);
228 TEST(Class) {
438 // Class-class
473 // Bitset-class
502 // Class-constan
    [all...]
  /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/test/CodeGenCXX/
mangle-ms-templates.cpp 5 class Class {
7 Class() {}
10 class Typename { };
13 class Nested { };
16 class BoolTemplate {
22 class IntTemplate {
28 class BoolTemplate<true> {
31 template<class T> void Foo(T arg) {}
35 Class<Typename> c1
    [all...]
microsoft-abi-sret-and-byval.cpp 158 class Class {
161 // LINUX: define {{.*}} void @_ZN5Class21thiscall_method_smallEv(%struct.Small* noalias sret %agg.result, %class.Class* %this)
162 // WIN32: define {{.*}} x86_thiscallcc void @"\01?thiscall_method_small@Class@@QAE?AUSmall@@XZ"(%struct.Small* noalias sret %agg.result, %class.Class* %this)
165 // LINUX: define {{.*}} void @_ZN5Class31thiscall_method_small_with_ctorEv(%struct.SmallWithCtor* noalias sret %agg.result, %class.Class* %this)
166 // WIN32: define {{.*}} x86_thiscallcc void @"\01?thiscall_method_small_with_ctor@Class@@QAE?AUSmallWithCtor@@XZ"(%struct.SmallWithCtor* noalias sret %agg.result, %class.Class* %this
    [all...]

Completed in 306 milliseconds

12 3 4 5 6