OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsPrimitive
(Results
1 - 25
of
28
) sorted by null
1
2
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
TypeExtensions.cs
89
public static bool
isPrimitive
( this Type type )
91
return type.
IsPrimitive
;
/art/runtime/mirror/
class.h
248
if (component->
IsPrimitive
()) {
281
bool
IsPrimitive
() const {
322
return IsArrayClass() && GetComponentType()->
IsPrimitive
();
363
return !
IsPrimitive
() && GetSuperClass() == NULL;
366
return (!
IsPrimitive
() && !IsInterface() && !IsAbstract()) || ((IsAbstract()) && IsArrayClass());
370
return GetComponentType() != NULL && !GetComponentType()->
IsPrimitive
();
456
return !src->
IsPrimitive
();
[
all
...]
object.cc
62
if (!c->GetComponentType()->
IsPrimitive
()) {
object_array-inl.h
117
CHECK(!element_class->
IsPrimitive
());
object-inl.h
102
return IsArrayInstance() && !GetClass()->GetComponentType()->
IsPrimitive
();
object_test.cc
219
EXPECT_TRUE(array->GetClass()->GetComponentType()->
IsPrimitive
());
/art/runtime/verifier/
reg_type.cc
673
return type->IsArrayClass() && !type->GetComponentType()->
IsPrimitive
();
899
DCHECK(c1 != NULL && !c1->
IsPrimitive
());
900
DCHECK(c2 != NULL && !c2->
IsPrimitive
());
917
DCHECK(!s->
IsPrimitive
()) << PrettyClass(s);
918
DCHECK(!t->
IsPrimitive
()) << PrettyClass(t);
928
if (s_ct->
IsPrimitive
() || t_ct->
IsPrimitive
()) {
reg_type_cache.cc
208
if (klass->
IsPrimitive
()) {
/art/runtime/native/
java_lang_System.cc
220
if (srcComponentType->
IsPrimitive
() || dstComponentType->
IsPrimitive
()) {
/external/chromium_org/v8/test/mjsunit/regress/
regress-1200351.js
140
eval("switch (-1.length+new Object().prototype.name) { case (debugger.constructor.sort()):
IsPrimitive
(undef.__defineSetter__(undef,function(){native})); break; }")
192
eval("SetValueOf(function () { IsSmi(-1) }, unescape(
IsPrimitive
(void)))")
444
eval("delete
IsPrimitive
(null.join())")
460
eval("let (NaN==true.length) {
IsPrimitive
(0.2).prototype.value }")
520
eval("native
IsPrimitive
(continue)==break.charCodeAt(new Object())")
564
eval("x =
IsPrimitive
(0).concat(new Object().name())")
687
eval("export break.name()/
IsPrimitive
(this)")
759
eval("for (~
IsPrimitive
(new RegExp), true.toString().size, null.charCodeAt('a') > null.concat(0)) { break.toJSONProtocol/
IsPrimitive
(break) }")
[
all
...]
/external/v8/test/mjsunit/regress/
regress-1200351.js
140
eval("switch (-1.length+new Object().prototype.name) { case (debugger.constructor.sort()):
IsPrimitive
(undef.__defineSetter__(undef,function(){native})); break; }")
192
eval("SetValueOf(function () { IsSmi(-1) }, unescape(
IsPrimitive
(void)))")
444
eval("delete
IsPrimitive
(null.join())")
460
eval("let (NaN==true.length) {
IsPrimitive
(0.2).prototype.value }")
520
eval("native
IsPrimitive
(continue)==break.charCodeAt(new Object())")
564
eval("x =
IsPrimitive
(0).concat(new Object().name())")
687
eval("export break.name()/
IsPrimitive
(this)")
759
eval("for (~
IsPrimitive
(new RegExp), true.toString().size, null.charCodeAt('a') > null.concat(0)) { break.toJSONProtocol/
IsPrimitive
(break) }")
[
all
...]
/art/runtime/
class_linker_test.cc
81
EXPECT_TRUE(primitive->
IsPrimitive
());
131
EXPECT_FALSE(array->
IsPrimitive
());
240
EXPECT_FALSE(klass->
IsPrimitive
());
278
ASSERT_TRUE(!field_type->
IsPrimitive
());
285
if (!fh.IsPrimitiveType() || !field_type->
IsPrimitive
()) {
309
if (klass->
IsPrimitive
()) {
[
all
...]
reflection.cc
82
if (!dst_class->
IsPrimitive
()) {
286
if (!dst_class->
IsPrimitive
()) {
object_utils.h
102
} else if (UNLIKELY(klass_->
IsPrimitive
())) {
136
if (klass_->
IsPrimitive
()) {
155
DCHECK(!klass_->
IsPrimitive
());
163
DCHECK(!klass_->
IsPrimitive
());
class_linker.cc
518
DCHECK(klass->IsArrayClass() || klass->
IsPrimitive
() || klass->GetDexCache() != NULL);
536
if (!c->IsArrayClass() && !c->
IsPrimitive
()) {
[
all
...]
check_jni.cc
208
if (!field_type->
IsPrimitive
()) {
[
all
...]
debugger.cc
861
if (!c->
IsPrimitive
()) {
[
all
...]
/external/chromium_org/v8/src/
type-info.h
128
inline bool
IsPrimitive
() {
runtime.js
624
function
IsPrimitive
(x) {
637
if (%
IsPrimitive
(v)) return v;
643
if (%
IsPrimitive
(s)) return s;
654
if (%
IsPrimitive
(s)) return s;
660
if (%
IsPrimitive
(v)) return v;
/external/v8/src/
type-info.h
128
inline bool
IsPrimitive
() {
runtime.js
618
function
IsPrimitive
(x) {
631
if (%
IsPrimitive
(v)) return v;
637
if (%
IsPrimitive
(s)) return s;
649
if (%
IsPrimitive
(s)) return s;
655
if (%
IsPrimitive
(v)) return v;
/art/runtime/entrypoints/
entrypoint_utils.cc
52
if (UNLIKELY(klass->
IsPrimitive
() && !klass->IsPrimitiveInt())) {
/art/runtime/hprof/
hprof.cc
904
} else if (thisClass->IsArrayClass() || thisClass->
IsPrimitive
()) {
[
all
...]
/art/oatdump/
oatdump.cc
[
all
...]
/art/runtime/interpreter/
interpreter.cc
137
if (!ctype->
IsPrimitive
()) {
[
all
...]
Completed in 329 milliseconds
1
2