Searched +refs:Label +refs:create (Results 1 - 25 of 47) sorted by relevance

12

/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/bwidget/
H A Ddnd.rb9 def self.create(nb) singleton method in class:DemoDnD
18 labf1 = Tk::BWidget::LabelFrame.new(subf, :text=>'Label (text)',
21 lab = Tk::BWidget::Label.new(f, :text=>'Drag this text',
24 labf2 = Tk::BWidget::LabelFrame.new(subf, :text=>'Label (bitmap)',
27 lab = Tk::BWidget::Label.new(f, :bitmap=>'info',
37 labf1 = Tk::BWidget::LabelFrame.new(subf, :text=>'Label', :width=>14)
39 lab = Tk::BWidget::Label.new(f, :dropenabled=>true,
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecompiler/
H A DBytecodeGenerator.h37 #include "Label.h"
54 class Label;
106 RefPtr<Label> target;
111 RefPtr<Label> start;
116 RefPtr<Label> start;
117 RefPtr<Label> end;
335 PassRefPtr<Label> newLabel();
367 void emitNodeInConditionContext(ExpressionNode* n, Label* trueTarget, Label* falseTarget, FallThroughMode fallThroughMode)
443 void emitCheckHasInstance(RegisterID* dst, RegisterID* value, RegisterID* base, Label* targe
[all...]
H A DNodesCodegen.cpp77 void ExpressionNode::emitBytecodeInConditionContext(BytecodeGenerator& generator, Label* trueTarget, Label* falseTarget, FallThroughMode fallThroughMode)
97 void ConstantNode::emitBytecodeInConditionContext(BytecodeGenerator& generator, Label* trueTarget, Label* falseTarget, FallThroughMode fallThroughMode)
128 return generator.emitNewRegExp(generator.finalDestination(dst), RegExp::create(*generator.vm(), m_pattern.string(), regExpFlags(m_flags.string())));
487 RefPtr<Label> realCall = generator.newLabel();
488 RefPtr<Label> end = generator.newLabel();
537 RefPtr<Label> realCall = generator.newLabel();
538 RefPtr<Label> end = generator.newLabel();
909 void LogicalNotNode::emitBytecodeInConditionContext(BytecodeGenerator& generator, Label* trueTarge
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_filedb/
H A DMetaRecord.cpp98 string aName(inInfo.AttributeInfo[anIndex].Label.AttributeName);
105 const CssmData &aNameID = CssmOid::overlay(inInfo.AttributeInfo[anIndex].Label.AttributeOID);
112 uint32 aNumber = inInfo.AttributeInfo[anIndex].Label.AttributeID;
158 mAttributeVector.push_back(MetaAttribute::create(inAttributeFormat,
326 data.Info.Label.AttributeName = NULL;
359 data.Info.Label.AttributeName = NULL;
386 string aName(inAttributeInfo.Label.AttributeName);
392 inAttributeInfo.Label.AttributeName);
406 const CssmOid &aName = CssmOid::overlay(inAttributeInfo.Label.AttributeOID);
415 uint32 aName = inAttributeInfo.Label
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_filedb/lib/
H A DMetaRecord.cpp98 string aName(inInfo.AttributeInfo[anIndex].Label.AttributeName);
105 const CssmData &aNameID = CssmOid::overlay(inInfo.AttributeInfo[anIndex].Label.AttributeOID);
112 uint32 aNumber = inInfo.AttributeInfo[anIndex].Label.AttributeID;
158 mAttributeVector.push_back(MetaAttribute::create(inAttributeFormat,
326 data.Info.Label.AttributeName = NULL;
359 data.Info.Label.AttributeName = NULL;
386 string aName(inAttributeInfo.Label.AttributeName);
392 inAttributeInfo.Label.AttributeName);
406 const CssmOid &aName = CssmOid::overlay(inAttributeInfo.Label.AttributeOID);
415 uint32 aName = inAttributeInfo.Label
[all...]
/macosx-10.9.5/tcl-102/tk/tk/library/ttk/
H A DvistaTheme.tcl44 ttk::style element create Menubutton.dropdown vsapi \
60 # Label and Toolbutton
61 ttk::style configure TLabelframe.Label -foreground "#0046d5"
67 ttk::style element create Combobox.field vsapi \
69 ttk::style element create Combobox.border vsapi \
71 ttk::style element create Combobox.rightdownarrow vsapi \
85 ttk::style element create ComboboxPopdownFrame.background vsapi\
104 ttk::style element create Entry.field vsapi \
106 ttk::style element create Entry.background vsapi \
124 ttk::style element create Spinbo
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/examples/tablelist/
H A Diwidgets.tcl27 option add *Tablelist*Dateentry*Label.background white
28 option add *Tablelist*Timeentry*Label.background white
42 set checkedImg [image create photo -file [file join $dir checked.gif]]
43 set uncheckedImg [image create photo -file [file join $dir unchecked.gif]]
H A Diwidgets_tile.tcl27 option add *Tablelist*Dateentry*Label.background white
28 option add *Tablelist*Timeentry*Label.background white
42 set checkedImg [image create photo -file [file join $dir checked.gif]]
43 set uncheckedImg [image create photo -file [file join $dir unchecked.gif]]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-en/
H A Dttkpane.rb20 Ttk::Label.new(base_frame, :font=>$font, :wraplength=>'4i', :justify=>:left,
136 tz = TZFile.create(zone[%r<[^:]+$>])
178 Ttk::Label.new(left_bot, :text=>label, :anchor=>'w').pack(:fill=>:x)
179 Ttk::Label.new(left_bot, :textvariable=>time.ref(label),
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-jp/
H A Dttkpane.rb22 Ttk::Label.new(base_frame, :font=>$font, :wraplength=>'4i', :justify=>:left,
139 tz = TZFile.create(zone[%r<[^:]+$>])
181 Ttk::Label.new(left_bot, :text=>label, :anchor=>'w').pack(:fill=>:x)
182 Ttk::Label.new(left_bot, :textvariable=>time.ref(label),
/macosx-10.9.5/JavaScriptCore-7537.78.1/parser/
H A DNodes.h44 class Label;
165 virtual void emitBytecodeInConditionContext(BytecodeGenerator&, Label*, Label*, FallThroughMode);
205 void emitBytecodeInConditionContext(BytecodeGenerator&, Label* trueTarget, Label* falseTarget, FallThroughMode);
800 void emitBytecodeInConditionContext(BytecodeGenerator&, Label* trueTarget, Label* falseTarget, FallThroughMode);
809 void emitBytecodeInConditionContext(BytecodeGenerator&, Label* trueTarget, Label* falseTarget, FallThroughMode);
964 void emitBytecodeInConditionContext(BytecodeGenerator&, Label* trueTarge
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DKeychains.cpp146 info.Label.AttributeID = indexRecord.at(0);
148 info.AttributeFormat = rim[info.Label.AttributeID];
224 info.Label.AttributeID = attributeId;
320 info.Label.AttributeID = pIndexInfo[ix].AttributeId;
321 info.AttributeFormat = rim[info.Label.AttributeID];
466 KeychainImpl::create(UInt32 passwordLength, const void *inPassword) function in class:KeychainImpl
472 create();
483 create(&rcc);
486 void KeychainImpl::create(ConstStringPtr inPassword) function in class:KeychainImpl
491 create(static_cas
497 KeychainImpl::create() function in class:KeychainImpl
532 KeychainImpl::create(const ResourceControlContext *rcc) function in class:KeychainImpl
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DKeychains.cpp146 info.Label.AttributeID = indexRecord.at(0);
148 info.AttributeFormat = rim[info.Label.AttributeID];
224 info.Label.AttributeID = attributeId;
320 info.Label.AttributeID = pIndexInfo[ix].AttributeId;
321 info.AttributeFormat = rim[info.Label.AttributeID];
466 KeychainImpl::create(UInt32 passwordLength, const void *inPassword) function in class:KeychainImpl
472 create();
483 create(&rcc);
486 void KeychainImpl::create(ConstStringPtr inPassword) function in class:KeychainImpl
491 create(static_cas
497 KeychainImpl::create() function in class:KeychainImpl
532 KeychainImpl::create(const ResourceControlContext *rcc) function in class:KeychainImpl
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DKeychains.cpp146 info.Label.AttributeID = indexRecord.at(0);
148 info.AttributeFormat = rim[info.Label.AttributeID];
224 info.Label.AttributeID = attributeId;
320 info.Label.AttributeID = pIndexInfo[ix].AttributeId;
321 info.AttributeFormat = rim[info.Label.AttributeID];
466 KeychainImpl::create(UInt32 passwordLength, const void *inPassword) function in class:KeychainImpl
472 create();
483 create(&rcc);
486 void KeychainImpl::create(ConstStringPtr inPassword) function in class:KeychainImpl
491 create(static_cas
497 KeychainImpl::create() function in class:KeychainImpl
532 KeychainImpl::create(const ResourceControlContext *rcc) function in class:KeychainImpl
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/bwidget/bwidget/
H A Dwizard.tcl9 # - Wizard::create
36 {-create Boolean "0" 1 }
111 image create photo Wizard::none
122 # Command Wizard::create
124 proc Wizard::create { path args } {
211 return [Widget::create Wizard $path]
828 if {[Widget::cget $items($node) -create]} { $path createStep $node }
873 option add *WizLayoutSimple*Label.padX 5 interactive
874 option add *WizLayoutSimple*Label.anchor nw interactive
875 option add *WizLayoutSimple*Label
[all...]
/macosx-10.9.5/tcl-102/tk/tk/library/
H A Dbgerror.tcl22 option add *ErrorDialog*Label.font TkCaptionFont widgetDefault
187 $dlg.bitmap create oval 0 0 31 31 -fill red -outline black
188 $dlg.bitmap create line 9 9 23 23 -fill white -width 4
189 $dlg.bitmap create line 9 23 23 9 -fill white -width 4
/macosx-10.9.5/tcl-102/tcl_ext/snack/snack/demos/tcl/
H A Dxs.tcl338 snack::menuCascade Options {Label File Format}
339 snack::menuRadio {Label File Format} TIMIT v(labfmt) TIMIT {Redraw quick}
340 snack::menuRadio {Label File Format} HTK v(labfmt) HTK {Redraw quick}
341 snack::menuRadio {Label File Format} WAVES v(labfmt) WAVES {Redraw quick}
342 snack::menuRadio {Label File Format} MIX v(labfmt) MIX {Redraw quick}
348 snack::menuCascade Options {Label Alignment}
349 snack::menuRadio {Label Alignment} left v(labalign) w {Redraw quick}
350 snack::menuRadio {Label Alignment} center v(labalign) c {Redraw quick}
351 snack::menuRadio {Label Alignment} right v(labalign) e {Redraw quick}
472 $c create rec
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/quicktimetcl/quicktimetcl/ExampleCode/
H A DFastMotionMovieMaker.tcl9 option add *Label.Background $bgCol
78 set imName [image create photo]
114 lappend imageList [image create photo -file $f]
/macosx-10.9.5/vim-53/runtime/syntax/
H A Ddylan.vim40 syn keyword dylanImport use import export exclude rename create
91 HiLink dylanLabel Label
H A Dicon.vim73 syn keyword iconReserved break by case create default do
185 HiLink iconUserLabel Label
203 HiLink iconReserved Label
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/tile/
H A Ddemo.rb507 lmode = Tk::Tile::Label.new(l, :text=>'Progress bar mode')
654 TkConsole.create
739 Tk::Tile::Label.new(tree,
749 msg = Tk::Tile::Label.new(others, :justify=>:left, :wraplength=>300)
834 Tk.grid(Tk::Tile::Label.new($focus, :text=>label, :anchor=>:e),
835 Tk::Tile::Label.new($focus,
894 l_inf = Tk::Tile::Label.new($states, :text=>"Press Control-Shift-Button-1 on any widget")
896 l_lw = Tk::Tile::Label.new($states, :text=>'Widget:',
898 l_w = Tk::Tile::Label.new($states, :textvariable=>$Widget,
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/style/
H A Das.tcl168 font create ASfont -size $size -family $family
169 font create ASfontBold -size $size -family $family -weight bold
170 font create ASfontFixed -size $fsize -family $ffamily
171 font create ASfontFixedBold -size $fsize -family $ffamily -weight bold
175 font create ASfont$i -size $isize -family $family
176 font create ASfontBold$i -size $isize -family $family -weight bold
177 font create ASfontFixed$i -size $ifsize -family $ffamily
178 font create ASfontFixedBold$i \
191 option add *Label.font ASfont $prio
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/diagrams/
H A Dbasic.tcl169 $core unknown attribute [myproc Label]
241 proc Label {shape words} { procedure
264 lappend items [$canvas create polygon \
269 lappend items [$canvas create rectangle \
417 lappend items [$canvas create oval {*}$rect \
476 lappend items [$canvas create oval {*}$rect \
528 lappend items [$canvas create polygon {*}$poly \
669 lappend items [$canvas create rectangle {*}$mbody \
674 lappend items [$canvas create line {*}$vlinel \
678 lappend items [$canvas create lin
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/
H A Dresolv.rb457 ptr = IPv4.create(address).to_name
459 ptr = IPv6.create(address).to_name
565 n0 = Name.create(name)
571 n0 = Name.create(name)
980 @search = @search.map {|arg| Label.split(arg) }
984 @search = [Label.split($')]
1001 !@search.all? {|ls| ls.all? {|l| Label::Str === l } }
1030 name = Name.create(name)
1130 module Label # :nodoc: module in class:Resolv.DNS
1177 def self.create(ar singleton method in class:Resolv.DNS.Name
1685 def self.create(type_value, class_value) # :nodoc: singleton method in class:Resolv.DNS.Resource.Generic
2185 def self.create(arg) singleton method in class:Resolv.IPv4
2302 def self.create(arg) singleton method in class:Resolv.IPv6
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/
H A Dtile.rb176 set images($img) [image create photo -file $file]
212 Tk.tk_call('image', 'create', 'photo', '-file', f))
398 autoload :Label, 'tkextlib/tile/tlabel'

Completed in 201 milliseconds

12