Result:
found 493 distributions and 964 files matching your query ! ( run in 3.368 )


Mac-FSEvents

 view release on metacpan or  search on metacpan

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


Mac-Pasteboard

 view release on metacpan or  search on metacpan

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


Magic-Check

 view release on metacpan or  search on metacpan

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


Magic-Coerce

 view release on metacpan or  search on metacpan

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


Mail-MIMEDefang

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

#   MILTERLIB=/path/to/milter/lib     Milter library directory     [auto-detect]
#   SPOOLDIR=/var/spool/MIMEDefang    Spool directory
#   QUARANTINEDIR=/var/spool/MD-Quarantine
#   CONFSUBDIR=mail                   Subdirectory under sysconfdir
#   SYSCONFDIR=/etc                   System configuration root
#   ENABLE_EMBEDDED_PERL=1|0          Build embedded Perl interpreter  [1]
#   ENABLE_POLL=0|1                   Use poll(2) instead of select(2) [0]
#   ENABLE_DEBUGGING=0|1              Enable syslog debug messages     [0]
#   ENABLE_ANTI_VIRUS=1|0             Probe for AV scanners            [1]
#   ENABLE_CHECK_PERL_MODULES=1|0     Verify Perl deps at build time   [1]
#   ENABLE_PTHREAD_FLAG=0|1           Pass -pthread to the C compiler  [0]

Makefile.PL  view on Meta::CPAN


print "Milter include dir   : $MILTERINC\n";
print "Milter library dir   : $MILTERLIB\n";

# --- Feature flags ---------------------------------------------------------
my $ENABLE_EMBEDDED_PERL     = opt('ENABLE_EMBEDDED_PERL',     1);
my $ENABLE_POLL              = opt('ENABLE_POLL',              0);
my $ENABLE_DEBUGGING         = opt('ENABLE_DEBUGGING',         0);
my $ENABLE_ANTI_VIRUS        = opt('ENABLE_ANTI_VIRUS',        1);
my $ENABLE_CHECK_PERL_MODULES= opt('ENABLE_CHECK_PERL_MODULES',1);
my $ENABLE_PTHREAD_FLAG      = opt('ENABLE_PTHREAD_FLAG',      0);

Makefile.PL  view on Meta::CPAN

my $HAVE_LIBRESOLV = probe_libresolv();
print "libresolv             : " . ($HAVE_LIBRESOLV ? 'yes' : 'no (using libc)') . "\n";

# --- Embedded Perl C/LD flags ----------------------------------------------
my ($EMBPERL_CFLAGS, $EMBPERL_LDFLAGS) = ('', '');
if ($ENABLE_EMBEDDED_PERL) {
    chomp($EMBPERL_CFLAGS  = `$PERL -MExtUtils::Embed -e ccopts  2>/dev/null`);
    chomp($EMBPERL_LDFLAGS = `$PERL -MExtUtils::Embed -e ldopts  2>/dev/null`);
    print "Embedded Perl        : enabled\n";
} else {
    print "Embedded Perl        : disabled\n";

Makefile.PL  view on Meta::CPAN

    "-std=c89 -D_BSD_SOURCE -D_DEFAULT_SOURCE",
    ($ENABLE_DEBUGGING         ? '-DENABLE_DEBUGGING'    : ()),
    ($ENABLE_POLL              ? '-DUSE_POLL'             : ()),
    ($ENABLE_PTHREAD_FLAG      ? '-pthread'               : ()),
    ($HAVE_CLOCK_MONOTONIC     ? '-DHAVE_CLOCK_MONOTONIC' : ()),
    ($ENABLE_EMBEDDED_PERL     ? ('-DEMBED_PERL', $EMBPERL_CFLAGS) : ()),
);

my $LDFLAGS_MILTER  = "-L$MILTERLIB -lmilter";
my $LDFLAGS_PTHREAD = $ENABLE_PTHREAD_FLAG ? '-lpthread' : '';
my $LDFLAGS_EMBPERL = $ENABLE_EMBEDDED_PERL ? $EMBPERL_LDFLAGS : '';
my $LDFLAGS_COMMON  = join(' ', ($HAVE_LIBRESOLV ? '-lresolv' : ()),
                            $LDFLAGS_PTHREAD, $LDFLAGS_EMBPERL);

my $HAVE_MILTER = probe_milter($CC, $CFLAGS);
print "\nmilter.h: " . ($HAVE_MILTER ? 'found' : 'not found') . "\n";

Makefile.PL  view on Meta::CPAN

    HAVE_INET_NTOP    => $HAVE_INET_NTOP,
    HAVE_SOCKLEN_T    => $HAVE_SOCKLEN_T,
    HAVE_MILTER       => $HAVE_MILTER,
    ENABLE_DEBUGGING  => $ENABLE_DEBUGGING,
    ENABLE_POLL       => $ENABLE_POLL,
    WITH_EMBEDDED_PERL=> $ENABLE_EMBEDDED_PERL,
);

# ---------------------------------------------------------------------------
# Substitution map for .in template files
# ---------------------------------------------------------------------------

Makefile.PL  view on Meta::CPAN

            notifier.o
            rm_r.o
            syslog-fac.o
            utils.o
        );
        push @mux_obj_list, 'embperl.o', 'xs_init.o' if $ENABLE_EMBEDDED_PERL;
        my $mux_objs = join(' ', @mux_obj_list);
        my $mux_ldflags = '$(MD_LDFLAGS_COMMON)';

        # md-mx-ctrl
        my $ctrl_objs = join(' ', qw(

Makefile.PL  view on Meta::CPAN

            my $mode = (stat $mdfile)[2] & 0777;
            chmod $mode, $outf;
        }

        # Generate xs_init.c for embedded Perl support
        if ($ENABLE_EMBEDDED_PERL) {
            print "Generating xs_init.c for embedded Perl...\n";
            system($PERL, '-MExtUtils::Embed', '-e', 'xsinit', '--', '-o', 'xs_init.c') == 0
                or warn "WARNING: Failed to generate xs_init.c\n";
        }

Makefile.PL  view on Meta::CPAN

    print $fh "#ifndef HAVE_INET_NTOP\n#define HAVE_INET_NTOP\n#endif\n"   if $v{HAVE_INET_NTOP};
    print $fh "#define HAVE_SOCKLEN_T\n"       if not $v{HAVE_SOCKLEN_T};
    print $fh "#define HAVE_MILTER\n"           if $v{HAVE_MILTER};
    print $fh "#ifndef ENABLE_DEBUGGING\n#define ENABLE_DEBUGGING\n#endif\n" if $v{ENABLE_DEBUGGING};
    print $fh "#ifndef USE_POLL\n#define USE_POLL\n#endif\n"                 if $v{ENABLE_POLL};
    print $fh "#ifndef EMBED_PERL\n#define EMBED_PERL\n#endif\n" if $v{WITH_EMBEDDED_PERL};
    print $fh "#define STDC_HEADERS 1\n";
    close $fh;
    print "config.h written.\n";
}

 view all matches for this distribution


Mail-Toaster

 view release on metacpan or  search on metacpan

lib/Mail/Toaster/Setup.pm  view on Meta::CPAN

    $self->freebsd->install_port( "php5",
        category=> 'lang',
        options => "# This file generated by mail-toaster
# Options for php5-5.4.16
_OPTIONS_READ=php5-5.4.16
_FILE_COMPLETE_OPTIONS_LIST=CLI CGI FPM APACHE AP2FILTER EMBED DEBUG DTRACE IPV6 MAILHEAD LINKTHR
OPTIONS_FILE_SET+=CLI
OPTIONS_FILE_SET+=CGI
OPTIONS_FILE_UNSET+=FPM
OPTIONS_FILE_UNSET+=APACHE
OPTIONS_FILE_UNSET+=AP2FILTER
OPTIONS_FILE_UNSET+=EMBED
OPTIONS_FILE_UNSET+=DEBUG
OPTIONS_FILE_UNSET+=DTRACE
OPTIONS_FILE_SET+=IPV6
OPTIONS_FILE_UNSET+=MAILHEAD
OPTIONS_FILE_UNSET+=LINKTHR

 view all matches for this distribution


MarpaX-ESLIF

 view release on metacpan or  search on metacpan

etc/compile_marpaESLIF.pl  view on Meta::CPAN

        push(@extra_compiler_flags, "-DLUA_DL_DLL=1");
    } else {
        push(@extra_compiler_flags, "-DLUA_USE_DLOPEN=1");
        push(@extra_compiler_flags, "-DLUA_USE_POSIX=1");
    }
    push(@extra_compiler_flags, "-DMARPAESLIFLUA_EMBEDDED=1");
    push(@extra_compiler_flags, "-DMARPAESLIF_BUFSIZ=1048576");
    push(@extra_compiler_flags, "-DPCRE2_CODE_UNIT_WIDTH=8");
    push(@extra_compiler_flags, "-DPCRE2_STATIC=1");
    #
    # We want to align lua integer type with perl ivtype

 view all matches for this distribution


Math-3Space

 view release on metacpan or  search on metacpan

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


Math-Histo

 view release on metacpan or  search on metacpan

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


Math-NLopt

 view release on metacpan or  search on metacpan

lib/Math/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


Math-Pari

 view release on metacpan or  search on metacpan

Pari.xs  view on Meta::CPAN

#define AssignPariExpr2(var,arg)	AssignPariExpr2R(var,arg,MAYBE_NOTVOID, 0, 0)
#define AssignPariExprR0(var,arg,is_void)	AssignPariExprR(var,arg,is_void,0)

XS((*math_pari_subaddr));		/* On CygWin XS() has attribute conflicting with static */

#if defined(MYMALLOC) && defined(EMBEDMYMALLOC) && defined(UNEMBEDMYMALLOC)

Malloc_t
malloc(register size_t nbytes)
{
    return Perl_malloc(nbytes);

 view all matches for this distribution


Math-Prime-Util

 view release on metacpan or  search on metacpan

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


MaxMind-DB-Reader-XS

 view release on metacpan or  search on metacpan

c/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


MaxMind-DB-Writer

 view release on metacpan or  search on metacpan

c/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


Medusa-XS

 view release on metacpan or  search on metacpan

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


Module-Dependency

 view release on metacpan or  search on metacpan

examples/pmd_cgidepend.plx  view on Meta::CPAN


### EDIT THIS OPTIONALLY - if true then we'll print a clientside imagemap/make SVGs clickable. if false, no imagemap
use constant DOES_IMAGEMAP => 1;

### EDIT THIS OPTIONALLY - set to 'object' or 'embed'. the default way of embedding an SVG image into the page. Apparently we _should_ use object but many browsers can't handle that
use constant HOW_EMBED => 'object';

use CGI;
use Module::Dependency::Info;
use Module::Dependency::Grapher;

examples/pmd_cgidepend.plx  view on Meta::CPAN

	my $kind = $cgi->param('kind') || 'both';
	my $embed = $cgi->param('embed');
	my $format = $cgi->param('format') || DEFAULT_FORMAT;
	$format =~ s/\W//g;
	$format = uc($format);
	my $howembed = lc($cgi->param('howembed')) || HOW_EMBED;
	
	if ($datafile) {
		die("Unlikely characters in filename") if ($datafile =~ m/[^\w\/\:\.-]/);
		die("Unlikely looking filename") if ($datafile =~ m/\.\./);
		Module::Dependency::Grapher::setIndex( DATADIR . $datafile );

 view all matches for this distribution


Module-Which

 view release on metacpan or  search on metacpan

lib/Module/Which/P5Path.pm  view on Meta::CPAN

/usr/local/lib/perl

====

> perl -v
This is perl, version 5.003 with EMBED

r11:/u01/r11>/u01/app/oracle/product/8.0.6/ows/3.0/perl/bin/perl  -e '$" = "\n"; print "@INC"'
/mnt/was302/SRC/exp/cartxs/src/perl/lib/PA-RISC/5.003
/mnt/was302/SRC/exp/cartxs/src/perl/lib
/mnt/was302/SRC/exp/cartxs/src/perl/lib/site_perl/PA-RISC

 view all matches for this distribution


Mojo-PrettyTidy

 view release on metacpan or  search on metacpan

Manual.pod  view on Meta::CPAN


The formatter avoids treating prose as a generic wrapping target. Editor or
terminal line wrapping is preferred for long prose until an explicit safe rule
is added.

=head1 EMBEDDED PERL FORMATTING

C<Mojo::PrettyTidy> uses C<perltidy> for Embedded Perl/code regions where
possible. If C<$HOME/.perltidyrc> exists, it is passed to C<perltidy>, so
your normal Perl indentation preferences are inherited.

 view all matches for this distribution


Mojolicious-Plugin-LinkEmbedder

 view release on metacpan or  search on metacpan

lib/Mojolicious/Plugin/LinkEmbedder.pm  view on Meta::CPAN


use Mojo::Base 'Mojolicious::Plugin';
use Mojo::JSON;
use Mojo::UserAgent;
use Mojolicious::Plugin::LinkEmbedder::Link;
use constant DEBUG => $ENV{MOJO_LINKEMBEDDER_DEBUG} || 0;

our $VERSION = '0.2301';

has _ua => sub { Mojo::UserAgent->new(max_redirects => 3) };

 view all matches for this distribution


Monero-Keys

 view release on metacpan or  search on metacpan

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


Moose

 view release on metacpan or  search on metacpan

lib/Moose.pm  view on Meta::CPAN

        $self->first_name . ' ' . $self->last_name
    }

    no Moose; # keywords are removed from the Person package

=head1 EXTENDING AND EMBEDDING MOOSE

To learn more about extending Moose, we recommend checking out the
"Extending" recipes in the L<Moose::Cookbook>, starting with
L<Moose::Cookbook::Extending::ExtensionOverview>, which provides an overview of
all the different ways you might extend Moose. L<Moose::Exporter> and

 view all matches for this distribution


Mozilla-ConsoleService

 view release on metacpan or  search on metacpan

ConsoleService.xs  view on Meta::CPAN

#include <nsIServiceManager.h>
#include <nsEmbedString.h>
#include <nsServiceManagerUtils.h>
#include "build/version.h"

#if MCS_MOZEMBED_VERSION < 1900
#define GetMessageMoz GetMessage
#endif /* MCS_MOZEMBED_VERSION */

static SV *wrap_unichar_string(const PRUnichar *uni_str) {
	nsEmbedString utf8;
	nsEmbedCString u8c;
	const char * u8str;

 view all matches for this distribution


Mozilla-DOM

 view release on metacpan or  search on metacpan

xs/DOM.xs  view on Meta::CPAN


MODULE = Mozilla::DOM	PACKAGE = Mozilla::DOM::HTMLEmbedElement	PREFIX = moz_dom_

# /usr/include/mozilla/nsIDOMHTMLEmbedElement.h

## NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMHTMLEMBEDELEMENT_IID)
static nsIID
nsIDOMHTMLEmbedElement::GetIID()
    CODE:
	const nsIID &id = nsIDOMHTMLEmbedElement::GetIID();
	RETVAL = (nsIID) id;

 view all matches for this distribution


Mozilla-SourceViewer

 view release on metacpan or  search on metacpan

gtkmozembed2perl-version.h  view on Meta::CPAN

#define GTK_MOZ_EMBED_MAJOR_VERSION (1)
#define GTK_MOZ_EMBED_MINOR_VERSION (7)
#define GTK_MOZ_EMBED_MICRO_VERSION (13)
#define GTK_MOZ_EMBED_CHECK_VERSION(major,minor,micro) \
	(GTK_MOZ_EMBED_MAJOR_VERSION > (major) || \
	 (GTK_MOZ_EMBED_MAJOR_VERSION == (major) && GTK_MOZ_EMBED_MINOR_VERSION > (minor)) || \
	 (GTK_MOZ_EMBED_MAJOR_VERSION == (major) && GTK_MOZ_EMBED_MINOR_VERSION == (minor) && GTK_MOZ_EMBED_MICRO_VERSION >= (micro)))

 view all matches for this distribution


MsgPack-Raw

 view release on metacpan or  search on metacpan

deps/msgpack-c/include/msgpack/unpack_define.h  view on Meta::CPAN

#ifdef __cplusplus
extern "C" {
#endif


#ifndef MSGPACK_EMBED_STACK_SIZE
#define MSGPACK_EMBED_STACK_SIZE 32
#endif


typedef enum {
    MSGPACK_CS_HEADER            = 0x00,  // nil

 view all matches for this distribution


Music-Abc-DT

 view release on metacpan or  search on metacpan

lib/Music/Abc/DT.pm  view on Meta::CPAN


  use constant { # symbol state in file/tune
    ABC_S_GLOBAL  => 0,      # global
    ABC_S_HEAD    => 1,      # in header (after X:)
    ABC_S_TUNE    => 2,       # in tune (after K:)
    ABC_S_EMBED   => 3     # embedded header (between [..])
  };


  use constant { # info flags
    ABC_F_ERROR       => 0x0001,  #  error around this symbol

lib/Music/Abc/DT.pm  view on Meta::CPAN

  );
  our %state_name = (
    (ABC_S_GLOBAL)  => 'in_global',
    (ABC_S_HEAD)    => 'in_header',
    (ABC_S_TUNE)    => 'in_tune',
    (ABC_S_EMBED)   => 'in_line',
  );

  our @key_tonic = qw(F C G D A E B);
  our @key_shift = (1, 3, 5, 0, 2, 4, 6, 1, 4); # [7 + 2]
  our @clef_type = qw(treble alto bass perc);

lib/Music/Abc/DT.pm  view on Meta::CPAN


#  -- Updates the current voice and some info related to it --
sub _get_voice {
  my $sym = shift;

  if ( $sym->{state} == ABC_S_TUNE || $sym->{state} == ABC_S_EMBED ) {
    $c_voice = $sym->{info}->{voice};

    #set voice stuff if not already set
    #TODO check abcm2ps-7.3.4/parse.c:2817 (do_tune)
    $voice_struct{$c_voice}{id}              ||= $sym->{info}->{id};

lib/Music/Abc/DT.pm  view on Meta::CPAN


# -- returns the abc for the info field and the new line flag
sub _info_to_abc {
  my ($new_abc, $sym, $c, $nl_new) = @_;

  if ($sym->{state} == ABC_S_EMBED) { $new_abc .= '[' }
  elsif ($c ne "\n")                { $new_abc .= "\\\n";
    # _lyrics_dump($new_abc, $sym);
  }
  $new_abc = _header_dump($new_abc, $sym);
  if ($sym->{state} == ABC_S_EMBED) { $new_abc .= ']' }
  else                              { $nl_new = 1; }

  return ($new_abc, $nl_new);
}

lib/Music/Abc/DT.pm  view on Meta::CPAN

    my $s = \${$tunes_ref}->{$tune}->{symbols}->[$ix];
    given ( ${$s}->{type} ) {
      when (ABC_T_INFO) {
        given ( substr ${$s}->{text}, 0, 1 ) {
          when ('V') {    # Voice
            if ( ${$s}->{state} ~~ [ABC_S_TUNE, ABC_S_EMBED] ) {
              $c = ${$s}->{info}->{voice};
              $v_i{$c}{meter}{wmeasure} ||= BASE_LEN;
            }
          }
          when ('M') {    # Meter

lib/Music/Abc/DT.pm  view on Meta::CPAN


    given ( $s->{type} ) {
      when (ABC_T_INFO) {
        given ( substr $s->{text}, 0, 1 ) {
          when ('V') {    # Voice
            if ( $s->{state} ~~ [ABC_S_TUNE, ABC_S_EMBED] ) {
              $c = $s->{info}->{voice};
              $v_i{$c}{meter}{wmeasure} ||= BASE_LEN;
              $v_i{$c}{bar}{num}        ||= int $FIRST_MEASURE;
              $v_i{$c}{bar}{time}       ||= 0;
              $v_i{$c}{time}            ||= 0;

 view all matches for this distribution


NPRG

 view release on metacpan or  search on metacpan

Wingraph.pm  view on Meta::CPAN

    GDI_CLIP_CHARACTER_PRECIS  =>1,
    GDI_CLIP_STROKE_PRECIS     =>2,
    GDI_CLIP_MASK              =>0xf,
    GDI_CLIP_LH_ANGLES          =>(1<<4),
    GDI_CLIP_TT_ALWAYS          =>(2<<4),
    GDI_CLIP_EMBEDDED           =>(8<<4),
    
    GDI_DEFAULT_QUALITY        =>0,
    GDI_DRAFT_QUALITY          =>1,
    GDI_PROOF_QUALITY          =>2,
    

 view all matches for this distribution


Nagios-Object

 view release on metacpan or  search on metacpan

t/v2_config/nagios.cfg  view on Meta::CPAN


date_format=us



# MAXIMUM EMBEDDED PERL INTERPRETER CALLS
# This value determines how often (if at all) the embedded Perl
# interpreter is reinitialized during runtime.  This is useful
# if you notice that the Perl interpreter is causing slow 
# memory leaks over time.  Setting this value to 0 means the 
# embedded Perl interpreter will never be reinitialized.  Any

 view all matches for this distribution


Neo4j-Bolt

 view release on metacpan or  search on metacpan

include/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


Net-AMQP-RabbitMQ

 view release on metacpan or  search on metacpan

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


( run in 3.368 seconds using v1.01-cache-2.11-cpan-8dfa8b56332 )