Home
last modified time | relevance | path

Searched refs:IsPrimitiveType (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/bindings/scripts/
DCodeGeneratorCPP.pm149 return $name if $codeGenerator->IsPrimitiveType($name);
246 return $name if $codeGenerator->IsPrimitiveType($type) or $type eq "DOMTimeStamp";
262 … return $argName if $codeGenerator->IsPrimitiveType($type) or $codeGenerator->IsStringType($type);
549 } elsif ($codeGenerator->IsPrimitiveType($returnType)) {
808 … unless ($codeGenerator->IsPrimitiveType($idlType) or $codeGenerator->IsStringType($idlType)) {
DCodeGeneratorObjC.pm347 …return $name if $codeGenerator->IsPrimitiveType($name) or $name eq "DOMImplementation" or $name eq…
476 return $name if $codeGenerator->IsPrimitiveType($type) or $type eq "DOMTimeStamp";
495 …} elsif (!$codeGenerator->IsStringType($type) && !$codeGenerator->IsPrimitiveType($type) && $type …
515 …return $argName if $codeGenerator->IsPrimitiveType($type) or $codeGenerator->IsStringType($type) o…
1385 … unless ($codeGenerator->IsPrimitiveType($idlType) or $codeGenerator->IsStringType($idlType)) {
1476 … unless ($codeGenerator->IsPrimitiveType($idlType) or $codeGenerator->IsStringType($idlType)) {
DCodeGenerator.pm325 sub IsPrimitiveType subroutine
DCodeGeneratorGObject.pm809 my $paramTypeIsPrimitive = $codeGenerator->IsPrimitiveType($paramIDLType);
DCodeGeneratorV8.pm131 …if (!$codeGenerator->IsPrimitiveType($type) and !$codeGenerator->IsStringType($type) and !$codeGen…
3132 return "v8::Number::New($value)" if $codeGenerator->IsPrimitiveType($type);
DCodeGeneratorJS.pm244 if ($codeGenerator->IsPrimitiveType($type) or $codeGenerator->AvoidInclusionOfType($type)
2519 if ($codeGenerator->IsPrimitiveType($type) or $type eq "DOMTimeStamp") {
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0627161 … * bindings/scripts/CodeGenerator.pm: Split IsPrimitiveType in IsPrimitiveType and IsNumericType.