代码搜索:split
找到约 9,328 项符合「split」的源代码
代码结果 9,328
www.eeworm.com/read/183315/5256653
py boxsizer.py
import wx
from blockwindow import BlockWindow
labels = "one two three four".split()
class TestFrame(wx.Frame):
title = "none"
def __init__(self):
wx.Frame.__init__(self, None, -1, se
www.eeworm.com/read/183315/5256658
py basicgridsizer.py
import wx
from blockwindow import BlockWindow
labels = "one two three four five six seven eight nine".split()
class GridSizerFrame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self,
www.eeworm.com/read/179911/5295816
c n_tty.c
/*
* n_tty.c --- implements the N_TTY line discipline.
*
* This code used to be in tty_io.c, but things are getting hairy
* enough that it made sense to split things off. (The N_TTY
* processin
www.eeworm.com/read/173653/5368867
pl mk_big5_ucs_map.pl
@NAME = ();
while() {
chop;
s/\s+$//;
(($n, $m, $d) = split(" ", $_, 3)) >= 3 || next;
push(@NAME, $n);
$MAP{$n} = $m;
$DESC{$n} = $d;
}
@to_ucs = ();
%from_ucs = ();
foreach $name (@NA
www.eeworm.com/read/173653/5368881
pl mk_hkscs_ucs_map.pl
@NAME = ();
while() {
chop;
s/\s+$//;
(($n, $m, $d) = split(" ", $_, 3)) >= 3 || next;
push(@NAME, $n);
$MAP{$n} = $m;
$DESC{$n} = $d;
}
@to_ucs = ();
%from_ucs = ();
foreach $name (@NA
www.eeworm.com/read/173653/5368947
pl mk_hkscs_ucs_p2_map.pl
@NAME = ();
while() {
chop;
s/\s+$//;
(($n, $m, $d) = split(" ", $_, 3)) >= 3 || next;
push(@NAME, $n);
$MAP{$n} = $m;
$DESC{$n} = $d;
}
%to_ucs = ();
%from_ucs = ();
foreach $name (@NA
www.eeworm.com/read/162614/5518063
c bitfield5_main.c
// The offset of `B::f2' is not ABI-compliant and may change in a future
// version of GCC.
// g++.dg/abi/bitfield5.C tests this with -Wabi.
// Split into pieces for binary compatibility testing Octob
www.eeworm.com/read/162614/5518069
c bitfield7_main.c
// { dg-options "-w" }
// The size assigned to `U' may not be ABI-compliant and may change in a
// future version of GCC.
// g++.dg/abi/bitfield7.C tests this with -Wabi.
// Split into pieces for bin
www.eeworm.com/read/350097/3130709
c n_tty.c
/*
* n_tty.c --- implements the N_TTY line discipline.
*
* This code used to be in tty_io.c, but things are getting hairy
* enough that it made sense to split things off. (The N_TTY
* processin
www.eeworm.com/read/347706/3163927
svn-base tooltip.js.svn-base
var lang = 'en';
var tooltips = new Object;
function show_tooltip(event){
var f = $(ASTGUI.events.getTarget(event)) ;
try{
if( f.hasAttribute('tip') ){
var s = f.getAttribute('tip').split(","