view release on metacpan or search on metacpan
dXSTARG|5.006000|5.003007|poVnu
dXSUB_SYS|5.003007||Viu
edit_distance|5.023008||Vniu
EIGHT_BIT_UTF8_TO_NATIVE|5.023003||Viu
ELEMENT_RANGE_MATCHES_INVLIST|5.023002||Viu
EMBEDMYMALLOC|5.006000||Viu
emulate_cop_io|||xciu
emulate_setlocale|5.027009||Vniu
END|5.003007||Viu
END_EXTERN_C|5.005000|5.003007|pV
endgrent|5.009000||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
SFC_SET_NORM_FLOAT SFC_SET_NORM_DOUBLE SFC_GET_NORM_FLOAT SFC_GET_NORM_DOUBLE
SFC_SET_SCALE_FLOAT_INT_READ SFC_GET_SIMPLE_FORMAT_COUNT SFC_GET_SIMPLE_FORMAT
SFC_GET_FORMAT_INFO SFC_GET_FORMAT_MAJOR_COUNT SFC_GET_FORMAT_MAJOR SFC_GET_FORMAT_SUBTYPE_COUNT
SFC_GET_FORMAT_SUBTYPE SFC_SET_ADD_PEAK_CHUNK SFC_UPDATE_HEADER_NOW SFC_SET_UPDATE_HEADER_AUTO
SFC_FILE_TRUNCATE SFC_SET_RAW_START_OFFSET SFC_SET_CLIPPING SFC_GET_CLIPPING
SFC_GET_EMBED_FILE_INFO)) {
print "$_...";
open C,">test.c" or die "Can't write test.c: $!";
print C qq(
#include <sndfile.h>
#include <stdio.h>
view all matches for this distribution
view release on metacpan or search on metacpan
{
my ($self) = @_;
my $ppaddr = $self->can('ppaddr') ? $self->ppaddr : undef;
my $output = "";
# Normalize EMBED and non-EMBED ppaddr's:
$ppaddr =~ s/^Perl_// or # Historic
$ppaddr =~ s/^PL_ppaddr\[OP_(\w+)\]/'pp_' . lc $1/e; # 5.6.0+
if ($self->can('line')) {
$output = perline();
view all matches for this distribution
view release on metacpan or search on metacpan
dXSTARG|5.006000|5.003007|poVnu
dXSUB_SYS|5.003007||Viu
edit_distance|5.023008||Vniu
EIGHT_BIT_UTF8_TO_NATIVE|5.023003||Viu
ELEMENT_RANGE_MATCHES_INVLIST|5.023002||Viu
EMBEDMYMALLOC|5.006000||Viu
emulate_cop_io|||xciu
emulate_setlocale|5.027009||Vniu
END|5.003007||Viu
END_EXTERN_C|5.005000|5.003007|pV
endgrent|5.009000||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
dXSTARG|5.006000|5.003007|poVnu
dXSUB_SYS|5.003007||Viu
edit_distance|5.023008||Vniu
EIGHT_BIT_UTF8_TO_NATIVE|5.023003||Viu
ELEMENT_RANGE_MATCHES_INVLIST|5.023002||Viu
EMBEDMYMALLOC|5.006000||Viu
emulate_cop_io|||xciu
emulate_setlocale|5.027009||Vniu
END|5.003007||Viu
END_EXTERN_C|5.005000|5.003007|pV
endgrent|5.009000||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
lib/BeamerReveal/Object/BeamerFrame.pm view on Meta::CPAN
my %commonStamps = ( X => _topercent( $video->{x} ),
Y => _topercent( $video->{y} ),
W => _topercent( $video->{width} ),
H => _topercent( $video->{height} ),
VIDEOID => 'embedded-id-' . $embeddedID++,
VIDEOEMBEDDEDB64 => $videoContent,
MIMETYPE => $mimeType,
FIT => $video->{fit},
AUTOPLAY => exists $video->{autoplay} ? 'data-autoplay' : '',
CONTROLS => exists $video->{controls} ? 'controls' : '',
MUTED => exists $video->{muted} ? 'muted' : '',
lib/BeamerReveal/Object/BeamerFrame.pm view on Meta::CPAN
$vTemplate = $templateStore->fetch( 'html', 'video-embedded.html' );
my ( $mimeType ) = $mediaManager->videoFromStore( $video->{file},
to_embed => 1 );
$vStamps = { %commonStamps,
VIDEOID => 'embedded-id-' . $embeddedID++,
VIDEOEMBEDDEDB64 => $videoContent,
MIMETYPE => $mimeType,
};
} else {
$logger->log( 4, "- adding video" );
$vTemplate = $templateStore->fetch( 'html', 'video.html' );
lib/BeamerReveal/Object/BeamerFrame.pm view on Meta::CPAN
( $mimeType, $audioContent ) = $mediaManager->audioFromStore( $audio->{file},
to_embed => 1 );
}
$aStamps = { %commonStamps,
AUDIOID => 'embedded-id-' . $embeddedID++,
AUDIOEMBEDDEDB64 => $audioContent,
MIMETYPE => $mimeType,
};
} else {
$logger->log( 4, "- adding audio" );
$aTemplate = $templateStore->fetch( 'html', 'audio.html' );
lib/BeamerReveal/Object/BeamerFrame.pm view on Meta::CPAN
my %commonStamps = ( X => _topercent( $image->{x} ),
Y => _topercent( $image->{y} ),
W => _topercent( $image->{width} ),
H => _topercent( $image->{height} ),
IMAGEID => 'embedded-id-' . $embeddedID++,
IMAGEEMBEDDEDB64 => $imageContent,
MIMETYPE => $mimeType,
FIT => $image->{fit}
);
my $iStamps;
my $iTemplate;
lib/BeamerReveal/Object/BeamerFrame.pm view on Meta::CPAN
$iTemplate = $templateStore->fetch( 'html', 'image-embedded.html' );
my( $mimeType, $imageContent ) = $mediaManager->imageFromStore( $image->{file},
to_embed => 1 );
$iStamps = { %commonStamps,
IMAGEID => 'embedded-id-' . $embeddedID++,
IMAGEEMBEDDEDB64 => $imageContent,
MIMETYPE => $mimeType,
};
} else {
$logger->log( 4, "- adding image" );
$iTemplate = $templateStore->fetch( 'html', 'image.html' );
lib/BeamerReveal/Object/BeamerFrame.pm view on Meta::CPAN
$iTemplate = $templateStore->fetch( 'html', 'iframe-embedded.html' );
my ( $mimeType, $iframeContent ) = $mediaManager->iframeFromStore( $iframe->{file},
to_embed => 1 );
$iStamps = { %commonStamps,
IFRAMEID => 'embedded-id-' . $embeddedID++,
IFRAMEEMBEDDEDB64 => $iframeContent,
};
} else {
$logger->log( 4, "- adding iframe" );
$iTemplate = $templateStore->fetch( 'html', 'iframe.html' );
my $iframeFile;
lib/BeamerReveal/Object/BeamerFrame.pm view on Meta::CPAN
to_embed => 1 );
$aStamps =
{
%commonStamps,
ANIMATIONID => 'embedded-id-' . $embeddedID++,
ANIMATIONEMBEDDEDB64 => $videoContent,
MIMETYPE => $mimeType,
FIT => $image->{fit}
};
}
else {
lib/BeamerReveal/Object/BeamerFrame.pm view on Meta::CPAN
to_embed => 1 );
$sStamps =
{
%commonStamps,
STILLID => 'embedded-id-' . $embeddedID++,
STILLEMBEDDEDB64 => $videoContent,
MIMETYPE => $mimeType,
FIT => $image->{fit}
};
}
else {
lib/BeamerReveal/Object/BeamerFrame.pm view on Meta::CPAN
to_embed => 1 );
my $nStamps =
{
NOTEID => 'embedded-id-' . $embeddedID++,
NOTEEMBEDDEDB64 => $notesImage,
MIMETYPE => $mimeType,
};
$notes = BeamerReveal::TemplateStore::stampTemplate( $nTemplate, $nStamps );
}
lib/BeamerReveal/Object/BeamerFrame.pm view on Meta::CPAN
to_embed => 1 );
my $fStamps =
{
DATAMENUTITLE => $menuTitle,
SLIDEID => 'embedded-id-' . $embeddedID++,
SLIDEEMBEDDEDB64 => $slideImage,
MIMETYPE => $mimeType,
SLIDECONTENT => $content,
TRANSITION => $self->{parameters}->{transition} || 'fade',
AUTOSLIDE => $autoSlide,
NOTESIMAGE => $notes
view all matches for this distribution
view release on metacpan or search on metacpan
share/SpamAssassin/spam/0143.260a940290dcb61f9327b224a368d4af view on Meta::CPAN
Donald Bae @ 1847-677-1234 ext. 6880
Take a virtual tour of our hotel @ HYPERLINK "http://www.radisson-chicago.com" www.radisson-chicago.com
December 2001 Customer Satisfaction Survey-Radisson Worldwide Hotels and Resorts
EMBED MS_ClipArt_Gallery.5
view all matches for this distribution
view release on metacpan or search on metacpan
dXSTARG|5.006000|5.003007|poVnu
dXSUB_SYS|5.003007||Viu
edit_distance|5.023008||Vniu
EIGHT_BIT_UTF8_TO_NATIVE|5.023003||Viu
ELEMENT_RANGE_MATCHES_INVLIST|5.023002||Viu
EMBEDMYMALLOC|5.006000||Viu
emulate_cop_io|||xciu
emulate_setlocale|5.027009||Vniu
END|5.003007||Viu
END_EXTERN_C|5.005000|5.003007|pV
endgrent|5.009000||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
dXSTARG|5.006000|5.003007|poVnu
dXSUB_SYS|5.003007||Viu
edit_distance|5.023008||Vniu
EIGHT_BIT_UTF8_TO_NATIVE|5.023003||Viu
ELEMENT_RANGE_MATCHES_INVLIST|5.023002||Viu
EMBEDMYMALLOC|5.006000||Viu
emulate_cop_io|||xciu
emulate_setlocale|5.027009||Vniu
END|5.003007||Viu
END_EXTERN_C|5.005000|5.003007|pV
endgrent|5.009000||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
include/boost/spirit/dynamic/select.hpp view on Meta::CPAN
//
// The number of generated functions depends on the maximum tuple member
// limit defined by the PHOENIX_LIMIT pp constant.
//
///////////////////////////////////////////////////////////////////////////
#define BOOST_SPIRIT_SELECT_EMBEDDED(z, N, _) \
typename impl::as_embedded_parser<BOOST_PP_CAT(ParserT, N)>::type \
/**/
#define BOOST_SPIRIT_SELECT_EMBEDDED_TYPEDEF(z, N, _) \
typedef impl::as_embedded_parser<BOOST_PP_CAT(ParserT, N)> \
BOOST_PP_CAT(parser_t, N); \
/**/
#define BOOST_SPIRIT_SELECT_CONVERT(z, N, _) \
BOOST_PP_CAT(parser_t, N)::convert(BOOST_PP_CAT(p, N)) \
include/boost/spirit/dynamic/select.hpp view on Meta::CPAN
BOOST_PP_ENUM_PARAMS_Z(z, BOOST_PP_INC(N), typename ParserT) \
> \
select_parser< \
phoenix::tuple< \
BOOST_PP_ENUM_ ## z(BOOST_PP_INC(N), \
BOOST_SPIRIT_SELECT_EMBEDDED, _) \
>, \
BehaviourT, \
T \
> \
operator()( \
BOOST_PP_ENUM_BINARY_PARAMS_Z(z, BOOST_PP_INC(N), \
ParserT, const &p) \
) const \
{ \
BOOST_PP_REPEAT_ ## z(BOOST_PP_INC(N), \
BOOST_SPIRIT_SELECT_EMBEDDED_TYPEDEF, _) \
\
typedef phoenix::tuple< \
BOOST_PP_ENUM_BINARY_PARAMS_Z(z, BOOST_PP_INC(N), \
typename parser_t, ::type BOOST_PP_INTERCEPT) \
> tuple_t; \
include/boost/spirit/dynamic/select.hpp view on Meta::CPAN
BOOST_PP_REPEAT(BOOST_SPIRIT_SELECT_LIMIT_A,
BOOST_SPIRIT_SELECT_PARSER, _)
#undef BOOST_SPIRIT_SELECT_PARSER
#undef BOOST_SPIRIT_SELECT_CONVERT
#undef BOOST_SPIRIT_SELECT_EMBEDDED_TYPEDEF
#undef BOOST_SPIRIT_SELECT_EMBEDDED
///////////////////////////////////////////////////////////////////////////
};
///////////////////////////////////////////////////////////////////////////////
//
view all matches for this distribution
view release on metacpan or search on metacpan
lib/WWW/Scraper/JustTechJobs.pm view on Meta::CPAN
'CREATIVE' => ["http://www.JustCreativeJobs.com", 'jCreative j'] ,
'DB2' => ["http://www.JustDB2Jobs.com", 'jDB2 j'] ,
'DELPHI' => ["http://www.JustDelphiJobs.com", 'jDelphi j'] ,
'E-COMMERCE' => ["http://www.Juste-CommerceJobs.com", 'je-Commerce j'] ,
'ELECTRICAL ENGINEERING' => ["http://www.JustEEJobs.com", 'jElectrical Engineering j'] ,
'EMBEDDED' => ["http://www.JustEmbeddedJobs.com", 'jembj'] ,
'EXCHANGE' => ["http://www.JustExchangeJobs.com", 'jExchange j'] ,
'FOXPRO' => ["http://www.JustFoxProJobs.com", 'jFoxPro j'] ,
'HELPDESK' => ["http://www.JustHelpdeskJobs.com", 'jHelpdesk j'] ,
'INFORMIX' => ["http://www.JustInformixJobs.com", 'jInformix j'] ,
'JAVA' => ["http://www.JustJavaJobs.com", 'jjavj'] ,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bytes/Random/Secure/Tiny.pm view on Meta::CPAN
EM => 'Math::Random::ISAAC::PP::Embedded',
);
sub new {
my ($class, @seed) = @_;
our $EMBEDDED_CSPRNG =
defined $EMBEDDED_CSPRNG ? $EMBEDDED_CSPRNG :
defined $ENV{'BRST_EMBEDDED_CSPRNG'} ? $ENV{'BRST_EMBEDDED_CSPRNG'} : 0;
my $DRIVER =
$EMBEDDED_CSPRNG ? $CSPRNG{'EM'} :
eval {require Math::Random::ISAAC::XS; 1} ? $CSPRNG{'XS'} :
eval {require Math::Random::ISAAC::PP; 1} ? $CSPRNG{'PP'} :
$CSPRNG{'EM'};
return bless [$DRIVER->new(@seed)], $class;
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/C/sparse.pm view on Meta::CPAN
TOKEN_ERROR
TOKEN_IDENT
TOKEN_ZERO_IDENT
TOKEN_NUMBER
TOKEN_CHAR
TOKEN_CHAR_EMBEDDED_0
TOKEN_CHAR_EMBEDDED_1
TOKEN_CHAR_EMBEDDED_2
TOKEN_CHAR_EMBEDDED_3
TOKEN_WIDE_CHAR
TOKEN_WIDE_CHAR_EMBEDDED_0
TOKEN_WIDE_CHAR_EMBEDDED_1
TOKEN_WIDE_CHAR_EMBEDDED_2
TOKEN_WIDE_CHAR_EMBEDDED_3
TOKEN_STRING
TOKEN_WIDE_STRING
TOKEN_SPECIAL
TOKEN_STREAMBEGIN
TOKEN_STREAMEND
view all matches for this distribution
view release on metacpan or search on metacpan
corpus/config-checkConfig.cdb view on Meta::CPAN
}
SAVE_DRAWING_PICTURE_FILE ( -Aw )
{
NO
EXPORT
EMBED
BOTH
}
SAVE_HIDDEN_ITEMS_W_STATUS ( -Aw )
{
YES
view all matches for this distribution
view release on metacpan or search on metacpan
dXSTARG|5.006000|5.003007|poVnu
dXSUB_SYS|5.003007||Viu
edit_distance|5.023008||Vniu
EIGHT_BIT_UTF8_TO_NATIVE|5.023003||Viu
ELEMENT_RANGE_MATCHES_INVLIST|5.023002||Viu
EMBEDMYMALLOC|5.006000||Viu
emulate_cop_io|||xciu
emulate_setlocale|5.027009||Vniu
END|5.003007||Viu
END_EXTERN_C|5.005000|5.003007|pV
endgrent|5.009000||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CGI/Application/Framework.pm view on Meta::CPAN
You can hook into the template generation process so that you can modify
every template created. Details for how to do this can be found in the docs
for to L<CGI::Application::Plugin::AnyTemplate>.
=head1 EMBEDDED COMPONENTS
Embedded Components allow you to include application components within
your templates.
For instance, you might include a I<header> component a the top of every
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CGI/Application/Plugin/AnyTemplate.pm view on Meta::CPAN
at the bottom of every page.
These components are actually full L<CGI::Application> run modes, and
can do anything normal run mode can do, including processing form
parameters and filling in their own templates. See
below under L<"EMBEDDED COMPONENTS"> for details.
=head2 Multiple Named Template Configurations
You can set up multiple named template configurations and select between
them at run time.
lib/CGI/Application/Plugin/AnyTemplate.pm view on Meta::CPAN
of C<output> will be a reference to a string. If the
C<return_references> option is false, then a copy of the string will be
returned. By default C<return_references> is true.
When you call the C<output> method, any components embedded in the
template are run. See L<"EMBEDDED COMPONENTS">, below.
=head1 PRE- AND POST- PROCESS
There are several ways to customize the template process. You can
modify the template parameters before the template is filled, and you
lib/CGI/Application/Plugin/AnyTemplate.pm view on Meta::CPAN
$$output_ref =~ s/foo/bar/;
}
=head1 EMBEDDED COMPONENTS
=head2 Introduction
C<CGI::Application::Plugin::AnyTemplate> allows you to include application
components within your templates.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CLDR/Number/Data/Base.pm view on Meta::CPAN
'¤ #,##0.00' => [ '#,##0.00', "$C $N" ],
'¤ #,##0.00;¤-#,##0.00' => [ '#,##0.00', "$C $N", "$C$M$N" ],
'¤ #,##0.00;¤ -#,##0.00' => [ '#,##0.00', "$C $N", "$C $M$N" ],
'¤ #,##0.00;¤ #,##0.00-' => [ '#,##0.00', "$C $N", "$C $N$M" ],
'¤ #,##,##0.00' => [ '#,##,##0.00', "$C $N" ],
"\N{LEFT-TO-RIGHT EMBEDDING}#,##0%\N{POP DIRECTIONAL FORMATTING}" => [
'#,##0',
"\N{LEFT-TO-RIGHT EMBEDDING}$N$P\N{POP DIRECTIONAL FORMATTING}"
],
"¤#,##0.00\N{LEFT-TO-RIGHT MARK}" => [
'#,##0.00',
"$C$N\N{LEFT-TO-RIGHT MARK}"
],
view all matches for this distribution
view release on metacpan or search on metacpan
easyxs/ppport.h view on Meta::CPAN
dXSTARG|5.006000|5.003007|poVnu
dXSUB_SYS|5.003007||Viu
edit_distance|5.023008||Vniu
EIGHT_BIT_UTF8_TO_NATIVE|5.023003||Viu
ELEMENT_RANGE_MATCHES_INVLIST|5.023002||Viu
EMBEDMYMALLOC|5.006000||Viu
emulate_cop_io|||xciu
emulate_setlocale|5.027009||Vniu
END|5.003007||Viu
END_EXTERN_C|5.005000|5.003007|pV
endgrent|5.009000||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CPANPLUS/Shell/Wx/Frame.pm view on Meta::CPAN
sub ShowHelpWindow{
my $self=shift;
use Wx::Help qw/wxHF_TOOLBAR wxHF_FLAT_TOOLBAR wxHF_CONTENTS wxHF_INDEX wxHF_SEARCH
wxHF_BOOKMARKS wxHF_OPEN_FILES wxHF_PRINT wxHF_MERGE_BOOKS wxHF_ICONS_BOOK
wxHF_ICONS_FOLDER wxHF_ICONS_BOOK_CHAPTER wxHF_EMBEDDED wxHF_DIALOG
wxHF_FRAME wxHF_MODAL wxHF_DEFAULT_STYLE /;
Wx::FileSystem::AddHandler(new Wx::ArchiveFSHandler);
my $helpFile=_uGetInstallPath('CPANPLUS::Shell::Wx::help::wxCPAN.hhp');
my $helpwin=Wx::HtmlHelpController->new();
$helpwin->AddBook($helpFile,1);
view all matches for this distribution
view release on metacpan or search on metacpan
gen/Makefile.unix view on Meta::CPAN
rm -f "$(CACHEDIR)/bin/cache"
mv "$(CACHEDIR)/bin/cache.old" "$(CACHEDIR)/bin/cache"
# note: I'm not proud of this one :)
cacembed.h:
$(PERL) -e 'print "#define CACEMBED_INC \"push \@INC, ".join(",", map( { s@\"@\\\"@; chr(39)."$$_".chr(39) } @INC)).";\"\n#define PERL_OS $$^O\n"' >$@
xsinit.c: cache_fix.h
$(PERL) -MExtUtils::Embed -e xsinit -- -o xsinit.c -std Cac
clean:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Catalyst/View/EmbeddedPerl/PerRequest.pm view on Meta::CPAN
sub inject_helpers {
my ($class, $sandbox_ns, %helpers) = @_;
foreach my $helper(keys %helpers) {
if($sandbox_ns->can($helper)) {
warn "Skipping injection of helper '$helper'; already exists in namespace $sandbox_ns"
if $ENV{DEBUG_TEMPLATE_EMBEDDED_PERL};
next;
}
eval qq[
package $sandbox_ns;
sub $helper { \$helpers{'$helper'}->(__SELF, __SELF->ctx, \@_) }
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Catalyst/View/EmbeddedPerl/PerRequest.pm view on Meta::CPAN
sub inject_helpers {
my ($class, $sandbox_ns, %helpers) = @_;
foreach my $helper(keys %helpers) {
if($sandbox_ns->can($helper)) {
warn "Skipping injection of helper '$helper'; already exists in namespace $sandbox_ns"
if $ENV{DEBUG_TEMPLATE_EMBEDDED_PERL};
next;
}
eval qq[
package $sandbox_ns;
sub $helper { \$helpers{'$helper'}->(__SELF, __SELF->ctx, \@_) }
view all matches for this distribution
view release on metacpan or search on metacpan
t/output/swfobject.js view on Meta::CPAN
/* SWFObject v2.1 <http://code.google.com/p/swfobject/>
Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van der Sluis
This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
var swfobject=function(){var b="undefined",Q="object",n="Shockwave Flash",p="ShockwaveFlash.ShockwaveFlash",P="application/x-shockwave-flash",m="SWFObjectExprInst",j=window,K=document,T=navigator,o=[],N=[],i=[],d=[],J,Z=null,M=null,l=null,e=false,A=f...
view all matches for this distribution
view release on metacpan or search on metacpan
dXSTARG|5.006000|5.003007|poVnu
dXSUB_SYS|5.003007||Viu
edit_distance|5.023008||Vniu
EIGHT_BIT_UTF8_TO_NATIVE|5.023003||Viu
ELEMENT_RANGE_MATCHES_INVLIST|5.023002||Viu
EMBEDMYMALLOC|5.006000||Viu
emulate_cop_io|||xciu
emulate_setlocale|5.027009||Vniu
END|5.003007||Viu
END_EXTERN_C|5.005000|5.003007|pV
endgrent|5.009000||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
dXSTARG|5.006000|5.003007|poVnu
dXSUB_SYS|5.003007||Viu
edit_distance|5.023008||Vniu
EIGHT_BIT_UTF8_TO_NATIVE|5.023003||Viu
ELEMENT_RANGE_MATCHES_INVLIST|5.023002||Viu
EMBEDMYMALLOC|5.006000||Viu
emulate_cop_io|||xciu
emulate_setlocale|5.027009||Vniu
END|5.003007||Viu
END_EXTERN_C|5.005000|5.003007|pV
endgrent|5.009000||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
php/PHP_CodeSniffer/src/Tokenizers/CSS.php view on Meta::CPAN
$cleanContent = Util\Common::prepareForOutput($content);
echo $cleanContent.PHP_EOL;
}
$finalTokens[$newStackPtr] = [
'type' => 'T_EMBEDDED_PHP',
'code' => T_EMBEDDED_PHP,
'content' => $content,
];
$newStackPtr++;
continue;
view all matches for this distribution
view release on metacpan or search on metacpan
dXSTARG|5.006000|5.003007|poVnu
dXSUB_SYS|5.003007||Viu
edit_distance|5.023008||Vniu
EIGHT_BIT_UTF8_TO_NATIVE|5.023003||Viu
ELEMENT_RANGE_MATCHES_INVLIST|5.023002||Viu
EMBEDMYMALLOC|5.006000||Viu
emulate_cop_io|||xciu
emulate_setlocale|5.027009||Vniu
END|5.003007||Viu
END_EXTERN_C|5.005000|5.003007|pV
endgrent|5.009000||Viu
view all matches for this distribution