Searched refs:component (Results 1 - 25 of 314) sorted by relevance

1234567891011>>

/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itk/library/
H A DWidget.itk69 set components [component]
70 foreach component $components {
71 set path($component) [component $component]
73 foreach component $components {
74 if {[winfo exists $path($component)]} {
75 destroy $path($component)
H A DToplevel.itk68 set components [component]
69 foreach component $components {
70 set path($component) [component $component]
72 foreach component $components {
73 if {[winfo exists $path($component)]} {
74 destroy $path($component)
/macosx-10.9.5/WebCore-7537.78.1/accessibility/atk/
H A DWebKitAccessibleInterfaceComponent.cpp44 static AccessibilityObject* core(AtkComponent* component) argument
46 if (!WEBKIT_IS_ACCESSIBLE(component))
49 return webkitAccessibleGetAccessibilityObject(WEBKIT_ACCESSIBLE(component));
69 static AtkObject* webkitAccessibleComponentRefAccessibleAtPoint(AtkComponent* component, gint x, gint y, AtkCoordType coordType) argument
71 IntPoint pos = atkToContents(core(component), coordType, x, y);
73 AccessibilityObject* target = core(component)->accessibilityHitTest(pos);
80 static void webkitAccessibleComponentGetExtents(AtkComponent* component, gint* x, gint* y, gint* width, gint* height, AtkCoordType coordType) argument
82 IntRect rect = pixelSnappedIntRect(core(component)->elementRect());
83 contentsRelativeToAtkCoordinateType(core(component), coordType, rect, x, y, width, height);
86 static gboolean webkitAccessibleComponentGrabFocus(AtkComponent* component) argument
[all...]
/macosx-10.9.5/CPANInternal-140/Perl4-CoreLibs-0.003/lib/
H A Dpwd.pl54 foreach $component (split(m#/#, $newdir)) {
55 next if $component eq '.';
56 pop(@curdir),next if $component eq '..';
57 push(@curdir,$component);
/macosx-10.9.5/WebCore-7537.78.1/platform/mediastream/
H A DMediaStreamCenter.cpp59 void MediaStreamCenter::addMediaStreamTrack(MediaStreamDescriptor* streamDescriptor, MediaStreamComponent* component) argument
63 client->addRemoteTrack(component);
66 void MediaStreamCenter::removeMediaStreamTrack(MediaStreamDescriptor* streamDescriptor, MediaStreamComponent* component) argument
70 client->removeRemoteTrack(component);
H A DMediaStreamDescriptor.h76 void addAudioComponent(PassRefPtr<MediaStreamComponent> component) { m_audioComponents.append(component); } argument
77 void removeAudioComponent(MediaStreamComponent* component) argument
79 size_t pos = m_audioComponents.find(component);
86 void addVideoComponent(PassRefPtr<MediaStreamComponent> component) { m_videoComponents.append(component); } argument
87 void removeVideoComponent(MediaStreamComponent* component) argument
89 size_t pos = m_audioComponents.find(component);
/macosx-10.9.5/ruby-104/ruby/lib/
H A Dtsort.rb148 each_strongly_connected_component {|component|
149 if component.size == 1
150 yield component.first
152 raise Cyclic.new("topological sort failed: #{component.inspect}")
160 # Each elements of the array represents a strongly connected component.
164 each_strongly_connected_component {|component| result << component}
191 # Iterates over strongly connected component in the subgraph reachable from
217 component = stack.slice!(stack_length .. -1)
218 component
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/itk/
H A Dincr_tk.rb60 def component method in class:Tk.Itk.Archetype
61 simplelist(tk_send('component'))
65 window(tk_send('component', name))
70 window(tk_send('component', name, cmd, *args))
74 names = component if names.empty?
138 [self.master, 'component', self.name, 'cget']
143 [self.master, 'component', self.name, 'configure']
149 (Itk_Component_ID = ['itk:component'.freeze, TkUtil.untrust('00000')]).instance_eval{
174 def self.new(master, component=nil)
181 if component
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/library/lib/
H A Dwafecompat.tcl30 foreach component $files {
31 if {[info exists _componentLoaded($component)]} continue
33 set f $path/$component
37 set _componentLoaded($component) $f
41 if {![info exists _componentLoaded($component)]} {
42 error "Could not find component $component in {$COMPONENT_PATH}"
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/library/
H A Dtclparser-8.0.tcl278 foreach component [split $atList =] {
281 set component [string trim $component]
282 if {[regexp $Name $component]} {
283 lappend result $component
285 return -code error "invalid attribute name \"$component\""
290 set component [string trimleft $component]
291 set delimiter [string index $component 0]
296 if {[regexp [format {%s([^%s]*)%s(.*)} $delimiter $delimiter $delimiter] $component discar
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/mediastream/
H A DMediaStream.cpp54 MediaStreamSource* source = track->component()->source();
153 RefPtr<MediaStreamComponent> component = MediaStreamComponent::create(m_descriptor.get(), track->component()->source());
154 RefPtr<MediaStreamTrack> newTrack = MediaStreamTrack::create(scriptExecutionContext(), component.get());
156 switch (component->source()->type()) {
158 m_descriptor->addAudioComponent(component.release());
162 m_descriptor->addVideoComponent(component.release());
167 MediaStreamCenter::instance().didAddMediaStreamTrack(m_descriptor.get(), newTrack->component());
184 switch (track->component()->source()->type()) {
189 m_descriptor->removeAudioComponent(track->component());
259 addRemoteTrack(MediaStreamComponent* component) argument
280 removeRemoteTrack(MediaStreamComponent* component) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/diagrams/
H A Ddiagram.tcl50 component core ; # Fundamental drawing engine and management
51 component basic ; # Fundamental shapes we can draw
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DPageRuleCollector.cpp94 for (const CSSSelector* component = selector; component; component = component->tagHistory()) {
95 if (component->m_match == CSSSelector::Tag) {
96 const AtomicString& localName = component->tagQName().localName();
101 CSSSelector::PseudoType pseudoType = component->pseudoType();
H A DRuleSet.cpp79 for (const CSSSelector* component = selector; component; component = component->tagHistory()) {
80 if (component->isAttributeSelector())
121 for (const CSSSelector* component = selector; component; component = component->tagHistory()) {
122 if (component
180 findBestRuleSetAndAdd(const CSSSelector* component, RuleData& ruleData) argument
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DQtDialogRunner.cpp318 QQmlComponent* component = m_webView->experimental()->alertDialog(); local
319 if (!component)
324 return createDialog(component, contextObject);
329 QQmlComponent* component = m_webView->experimental()->confirmDialog(); local
330 if (!component)
336 return createDialog(component, contextObject);
341 QQmlComponent* component = m_webView->experimental()->promptDialog(); local
342 if (!component)
348 return createDialog(component, contextObject);
353 QQmlComponent* component local
365 QQmlComponent* component = m_webView->experimental()->proxyAuthenticationDialog(); local
377 QQmlComponent* component = m_webView->experimental()->certificateVerificationDialog(); local
389 QQmlComponent* component = m_webView->experimental()->filePicker(); local
401 QQmlComponent* component = m_webView->experimental()->databaseQuotaDialog(); local
411 createDialog(QQmlComponent* component, QObject* contextObject) argument
[all...]
H A DWebColorChooserProxyQt.cpp76 QQmlComponent* component = m_webView->experimental()->colorChooser(); local
77 if (!component) {
82 createContext(component, contextObject);
83 QObject* object = component->beginCreate(m_context.get());
102 component->completeCreate();
105 void WebColorChooserProxyQt::createContext(QQmlComponent* component, QObject* contextObject) argument
107 QQmlContext* baseContext = component->creationContext();
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/generic/
H A Dselectiondialog.itk60 public method clear {component}
61 public method insert {component index args}
91 component hull configure -borderwidth 0
147 # METHOD: clear component
151 itcl::body iwidgets::Selectiondialog::clear {component} {
152 $itk_component(selectionbox) clear $component
158 # METHOD: insert component index args
162 itcl::body iwidgets::Selectiondialog::insert {component index args} {
163 eval $itk_component(selectionbox) insert $component $index $args
H A Dextbutton.itk74 # the private reliefframe component.
87 # change to a bitmap without manually setting the label component's -image to
88 # an empty string. This option is kept by the image component.
118 # Associate the tag with each component if it's not already done.
120 foreach component [component] {
121 bindtags [component $component] \
122 [linsert [bindtags [component $component]] en
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itk/tests/
H A Dwidget.test124 lsort [.testWidget0 component]
136 test widget-1.6 {check the window for each component} {
137 list [.testWidget0 component $name] \
143 list [.testWidget0 component hull cget -cursor] \
144 [.testWidget0 component test1 cget -cursor] \
145 [.testWidget0 component test2 cget -cursor]
149 list [.testWidget0 component hull cget -background] \
150 [.testWidget0 component test1 cget -background] \
151 [.testWidget0 component test2 cget -background]
155 list [.testWidget0 component test
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_codesigning/
H A Dfilediskrep.h49 // per component. Note that this imposes size limitations on component size
58 CFDataRef component(CodeDirectory::SpecialSlot slot);
80 void component(CodeDirectory::SpecialSlot slot, CFDataRef data);
H A Dsigblob.cpp35 CFDataRef EmbeddedSignatureBlob::component(CodeDirectory::SpecialSlot slot) const function in class:Security::CodeSigning::EmbeddedSignatureBlob
50 void EmbeddedSignatureBlob::Maker::component(CodeDirectory::SpecialSlot slot, CFDataRef data) function in class:Security::CodeSigning::EmbeddedSignatureBlob::Maker
H A Dsigblob.h39 // An EmbeddedSignatureBlob is a SuperBlob indexed by component slot number.
46 CFDataRef component(CodeDirectory::SpecialSlot slot) const;
50 void component(CodeDirectory::SpecialSlot type, CFDataRef data);
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/lib/
H A Dfilediskrep.h49 // per component. Note that this imposes size limitations on component size
58 CFDataRef component(CodeDirectory::SpecialSlot slot);
80 void component(CodeDirectory::SpecialSlot slot, CFDataRef data);
H A Dsigblob.cpp35 CFDataRef EmbeddedSignatureBlob::component(CodeDirectory::SpecialSlot slot) const function in class:Security::CodeSigning::EmbeddedSignatureBlob
50 void EmbeddedSignatureBlob::Maker::component(CodeDirectory::SpecialSlot slot, CFDataRef data) function in class:Security::CodeSigning::EmbeddedSignatureBlob::Maker
H A Dsigblob.h39 // An EmbeddedSignatureBlob is a SuperBlob indexed by component slot number.
46 CFDataRef component(CodeDirectory::SpecialSlot slot) const;
50 void component(CodeDirectory::SpecialSlot type, CFDataRef data);

Completed in 179 milliseconds

1234567891011>>