OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ucfirst
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/dom/
make_names.pl
403
$name = "FE" .
ucfirst
$1 if $name =~ /^fe(.+)$/;
415
$name = $1 .
ucfirst
$2;
418
return
ucfirst
$name;
671
my $shortCamelType =
ucfirst
($shortType);
674
print F " // " .
ucfirst
($type) . "\n";
[
all
...]
/external/webkit/Source/JavaScriptCore/
create_hash_table
115
return
ucfirst
($value);
/external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorCPP.pm
447
my $setterName = "set" .
ucfirst
($attributeName);
748
my $setterName = "set" .
ucfirst
($attributeName);
749
my $argName = "new" .
ucfirst
($attributeName);
798
$paramName = "in" .
ucfirst
($paramName) if $attributeNames{$paramName};
[
all
...]
CodeGeneratorObjC.pm
801
my $setterName = "set" .
ucfirst
($attributeName) . ":";
833
my $setter = "- (void)$setterName(" . $attributeType . ")new" .
ucfirst
($attributeName) . $declarationSuffix;
[
all
...]
CodeGenerator.pm
416
my $ret =
ucfirst
($param);
CodeGeneratorGObject.pm
91
join('', map{
ucfirst
$_ } split(/(?<=[A-Za-z])_(?=[A-Za-z])|\b/, $s));
[
all
...]
Completed in 95 milliseconds