/external/chromium_org/base/ |
template_util_unittest.cc | 71 COMPILE_ASSERT(is_class<AStruct>::value, IsClass); 72 COMPILE_ASSERT(is_class<AClass>::value, IsClass); 73 COMPILE_ASSERT(!is_class<AnEnum>::value, IsClass); 74 COMPILE_ASSERT(!is_class<int>::value, IsClass); 75 COMPILE_ASSERT(!is_class<char*>::value, IsClass); 76 COMPILE_ASSERT(!is_class<int&>::value, IsClass); 77 COMPILE_ASSERT(!is_class<char[3]>::value, IsClass);
|
/art/runtime/entrypoints/portable/ |
portable_cast_entrypoints.cc | 34 DCHECK(dest_type->IsClass()) << PrettyClass(dest_type); 35 DCHECK(src_type->IsClass()) << PrettyClass(src_type);
|
/frameworks/native/opengl/tools/glgen/src/ |
JType.java | 23 boolean isClass; 146 this.isClass = false; 150 public JType(String primitiveTypeName, boolean isClass, boolean isArray) { 152 this.isClass = isClass; 169 public boolean isClass() { 170 return isClass; 178 return !isClass() && !isArray();
|
/art/runtime/entrypoints/quick/ |
quick_cast_entrypoints.cc | 38 DCHECK(src_type->IsClass()) << PrettyClass(src_type); 39 DCHECK(dest_type->IsClass()) << PrettyClass(dest_type);
|
/art/runtime/mirror/ |
object-inl.h | 86 inline bool Object::IsClass() const { 92 DCHECK(IsClass()); 97 DCHECK(IsClass()); 231 } else if (IsClass()) {
|
object.cc | 110 if (IsClass()) {
|
object.h | 121 bool IsClass() const;
|
/external/chromium/base/ |
template_util_unittest.cc | 56 TEST(TemplateUtilTest, IsClass) {
|
/external/chromium_org/tools/telemetry/telemetry/ |
__init__.py | 40 if (inspect.isclass(getattr(m, x)) or
|
test_runner.py | 148 if inspect.isclass(cls)
|
/art/runtime/native/ |
java_lang_reflect_Array.cc | 33 DCHECK(element_class->IsClass());
|
java_lang_Class.cc | 37 DCHECK(c->IsClass());
|
/external/emma/core/java12/com/vladium/emma/instr/ |
InstrProcessor.java | 232 protected final File getFullOutDir (final File pathDir, final boolean isClass) 244 return isClass ? Files.newFile (m_outDir, CLASSES) : Files.newFile (m_outDir, LIB); 249 protected final File getFullOutFile (final File pathDir, final File file, final boolean isClass) 251 return Files.newFile (getFullOutDir (pathDir, isClass), file.getPath ());
|
/external/chromium_org/v8/test/cctest/ |
test-types.cc | 35 static bool IsClass(Type* type) { return type->IsMap(); } 47 CHECK_EQ(IsClass(*type1), IsClass(*type2)); 54 } else if (IsClass(*type1)) { 234 CHECK(IsClass(*T.ObjectClass)); 235 CHECK(IsClass(*T.ArrayClass)); 439 CHECK(IsClass(Type::Union(T.ObjectClass, T.ObjectClass))); 622 CHECK(IsClass(Type::Intersect(T.ObjectClass, T.ObjectClass))); 640 CHECK(IsClass(Type::Intersect(T.ObjectClass, T.Object))); 677 CHECK(IsClass( [all...] |
/dalvik/vm/arch/x86/ |
Call386ABI.S | 114 jne isClass 117 isClass:
|
/external/chromium_org/third_party/protobuf/python/ |
stubout.py | 63 (not inspect.isclass(obj) and obj.__dict__.has_key(attr_name))): 68 if not inspect.isclass(obj):
|
/external/protobuf/python/ |
stubout.py | 63 (not inspect.isclass(obj) and obj.__dict__.has_key(attr_name))): 68 if not inspect.isclass(obj):
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
discover.py | 71 if not inspect.isclass(obj):
|
/external/clang/test/SemaCXX/ |
qualified-id-lookup.cpp | 121 bool isClass() {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_inspect.py | 23 # ismodule, isclass, ismethod, isfunction, istraceback, isframe, iscode, 46 predicates = set([inspect.isbuiltin, inspect.isclass, inspect.iscode, 104 self.istest(inspect.isclass, 'mod.StupidGit') 105 self.assertTrue(inspect.isclass(list)) 108 self.assertTrue(inspect.isclass(newstyle)) 113 self.assertFalse(inspect.isclass(CustomGetattr())) 218 classes = inspect.getmembers(mod, inspect.isclass) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_inspect.py | 23 # ismodule, isclass, ismethod, isfunction, istraceback, isframe, iscode, 46 predicates = set([inspect.isbuiltin, inspect.isclass, inspect.iscode, 104 self.istest(inspect.isclass, 'mod.StupidGit') 105 self.assertTrue(inspect.isclass(list)) 108 self.assertTrue(inspect.isclass(newstyle)) 113 self.assertFalse(inspect.isclass(CustomGetattr())) 218 classes = inspect.getmembers(mod, inspect.isclass) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
inspect.py | 10 ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(), 59 def isclass(object): function 81 But not if ismethod() or isclass() or isfunction() are true. 96 and not isclass(object)) 404 if isclass(object): 543 if isclass(object): [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
inspect.py | 10 ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(), 59 def isclass(object): function 81 But not if ismethod() or isclass() or isfunction() are true. 96 and not isclass(object)) 404 if isclass(object): 543 if isclass(object): [all...] |
/art/runtime/ |
reference_table.cc | 121 if (obj->IsClass()) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-apache-bcel.jar | |