Home | History | Annotate | Download | only in mac

Lines Matching defs:error

36 my $error = 0;
38 sub error ($)
41 $error = 1;
48 error "$name shows up twice in output" if $namesWritten{$name};
78 error "Platform encoding name $PlatformName is mentioned twice in $baseFilename" if $seenPlatformNames{$PlatformNameWithFlags};
90 error "$name, in $baseFilename, has illegal characters in it";
96 error "$name, in $baseFilename, has illegal characters in it (must be all lowercase alphanumeric)";
100 error "$name comes after $prevName in $baseFilename, but everything must be in alphabetical order";
110 error "$name is mentioned twice in $baseFilename" if $seenIANANames{$canonicalName};
123 error "$baseFilename lists both $name and $otherName under $PlatformName, but that aliasing is already specified in character-sets.txt";
136 error "Platform encoding name $PlatformName is mentioned twice in $baseFilename" if $seenPlatformNames{$PlatformName};
139 error "syntax error in $baseFilename, line $.";
178 error "saw $new_canonical_name twice in character-sets.txt", if $seen{$new_canonical_name};
193 error "saw $new_alias twice in character-sets.txt $seen{$new_alias}, $canonical_name", if $seen{$new_alias} && $seen{$new_alias} ne $canonical_name && !$exceptions{$new_alias};
209 exit 1 if $error;