Searched refs:right (Results 1 - 25 of 1408) sorted by relevance

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/examples/ntext/
H A DntextExample.tcl37 pack [text .right ] -side right
38 .right configure -width 28 -height 12 -wrap word -font {{Courier} -15} -bg white
39 .right insert end " I use the Ntext bindings.\n\n$message"
41 bindtags .right {.right Ntext . all}
43 pack [text .left ] -side right
/macosx-10.10/dcerpc-61/www/content/css/blueprint/plugins/rtl/
H A Dscreen.css4 * Mirrors Blueprint for left-to-right languages
12 float: right;
13 margin-right: 0;
20 body .append-1 { padding-right: 0; padding-left: 40px; }
21 body .append-2 { padding-right: 0; padding-left: 80px; }
22 body .append-3 { padding-right: 0; padding-left: 120px; }
23 body .append-4 { padding-right: 0; padding-left: 160px; }
24 body .append-5 { padding-right: 0; padding-left: 200px; }
25 body .append-6 { padding-right: 0; padding-left: 240px; }
26 body .append-7 { padding-right
[all...]
/macosx-10.10/Security-57031.1.35/Security/authd/
H A Dccaudit.h12 void ccaudit_log_authorization(ccaudit_t, const char * right, OSStatus err);
15 void ccaudit_log_success(ccaudit_t, credential_t cred, const char * right);
18 void ccaudit_log_failure(ccaudit_t, const char * credName, const char * right);
21 void ccaudit_log_mechanism(ccaudit_t, const char * right, const char * mech, uint32_t status, const char * interrupted);
24 void ccaudit_log(ccaudit_t, const char * right, const char * msg, OSStatus err);
/macosx-10.10/WebCore-7600.1.25/html/parser/
H A DHTMLEntitySearch.cpp33 static const HTMLEntityTableEntry* halfway(const HTMLEntityTableEntry* left, const HTMLEntityTableEntry* right) argument
35 return &left[(right - left) / 2];
59 const HTMLEntityTableEntry* right = m_last; local
60 if (left == right)
66 return right;
67 while (left + 1 < right) {
68 const HTMLEntityTableEntry* probe = halfway(left, right);
74 right = probe;
77 ASSERT(left + 1 == right);
78 return right;
84 const HTMLEntityTableEntry* right = m_last; local
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DSidebar.css49 right: 0;
74 .sidebar.right > .resizer {
79 right: -3px;
82 .sidebar.collapsed.right > .resizer {
87 right: -5px;
91 border-right: 1px solid rgb(179, 179, 179);
94 .sidebar.right {
98 body.mac-platform.legacy .sidebar.right {
H A DApplicationCacheFrameContentView.css30 right: 0;
H A DClusterContentView.css30 right: 0;
H A DCookieStorageContentView.css30 right: 0;
H A DDatabaseTableContentView.css30 right: 0;
H A DScriptContentView.css30 right: 0;
H A DTextContentView.css30 right: 0;
H A DTextResourceContentView.css30 right: 0;
H A DLayoutTimelineView.css30 right: 0;
35 border-right: none;
H A DScriptTimelineView.css30 right: 0;
35 border-right: none;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DIntRectExtent.h49 IntRectExtent(int top, int right, int bottom, int left) argument
51 , m_right(right)
60 int right() const { return m_right; } function in class:WebCore::IntRectExtent
61 void setRight(int right) { m_right = right; } argument
75 rect.expand(left() + right(), top() + bottom());
79 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
90 && a.right() == b.right()
103 a.setRight(a.right()
[all...]
/macosx-10.10/bootstrap_cmds-91/migcom.tproj/
H A Dstring.c67 strconcat(string_t left, string_t right) argument
71 saved = malloc(strlen(left) + strlen(right) + 1);
73 fatal("strconcat('%s', '%s'): %s", left, right, strerror(errno));
74 return strcat(strcpy(saved, left), right);
78 strphrase(string_t left, string_t right) argument
85 saved = malloc(llen + strlen(right) + 2);
87 fatal("strphrase('%s', '%s'): %s", left, right, strerror(errno));
91 strcpy(current, right);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/des/
H A Dtcldes.tcl311 set right {}
312 append right "0x" $righttemp
316 #puts "Right start: $right";
322 set right [expr {$right ^ $cbcright}]
327 set cbcright $right;
332 #puts "Right mode: $right";
340 set temp [expr {(($left >> 4) ^ $right) & 0x0f0f0f0f}];
341 set right [expr {$right
[all...]
H A Dtcldesjr.tcl297 set right {}
298 append right "0x" $righttemp
302 #puts "Right start: $right";
308 set right [expr {$right ^ $cbcright}]
313 set cbcright $right;
318 #puts "Right mode: $right";
326 set temp [expr {(($left >> 4) ^ $right) & 0x0f0f0f0f}];
327 set right [expr {$right
[all...]
/macosx-10.10/tcl-105/tk/tk/library/demos/
H A Dradio.tcl29 labelframe $w.right -pady 2 -text "Alignment" -padx 2
37 grid $w.right -column 2 -row 1 -pady .5c -padx .5c
56 label $w.right.l -text "Label" -bitmap questhead -compound left
57 $w.right.l configure -width [winfo reqwidth $w.right.l] -compound top
58 $w.right.l configure -height [winfo reqheight $w.right.l]
61 radiobutton $w.right.$lower -text $a -variable align \
63 -command "$w.right.l configure -compound \$align"
66 grid x $w.right
[all...]
H A Dlabel.tcl21 label $w.msg -font $font -wraplength 4i -justify left -text "Five labels are displayed below: three textual ones on the left, and a bitmap label and a text label on the right. Labels are pretty boring because you can't do anything with them."
29 frame $w.right
30 pack $w.left $w.right -side left -expand yes -padx 10 -pady 10 -fill both
38 label $w.right.bitmap -borderwidth 2 -relief sunken \
40 label $w.right.caption -text "Tcl/Tk Proprietor"
41 pack $w.right.bitmap $w.right.caption -side top
/macosx-10.10/tcl-105/tk84/tk/library/demos/
H A Dradio.tcl31 labelframe $w.right -pady 2 -text "Alignment" -padx 2
32 pack $w.left $w.mid $w.right -side left -expand yes -pady .5c -padx .5c
48 label $w.right.l -text "Label" -bitmap questhead -compound left
49 $w.right.l configure -width [winfo reqwidth $w.right.l] -compound top
50 $w.right.l configure -height [winfo reqheight $w.right.l]
53 radiobutton $w.right.$lower -text $a -variable align \
55 -command "$w.right.l configure -compound \$align"
57 grid x $w.right
[all...]
/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A Dgenerator2.tcl14 set right(generator) [snack::filter generator 440 20000 0.0 sine -1]
15 set rightFilter [snack::filter compose $right(generator) $rightMap]
23 set right(freq) 2200.0
24 set right(ampl) 20000
38 pack [frame .right] -expand yes -fill both -side top
39 pack [label .right.l -text "Right channel"] -side left
40 pack [scale .right.s1 -label Frequency -from 4000 -to 50 -length 200\
41 -variable right(freq) -command [list Config right]] -side left -expand yes -fill both
42 pack [scale .right
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/coordinated/
H A DAreaAllocator.cpp80 m_root->right = 0;
94 freeNode(node->right);
127 Node* right = new Node(); local
132 parent->right = right;
134 right->parent = parent;
135 right->left = 0;
136 right->right = 0;
137 right
183 Node* right = node->right; local
246 Node* right = new Node(); local
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/
H A Duarrsort.h31 * @param right Pointer to the "right" item.
33 * <0 if left<right
34 * ==0 if left==right
35 * >0 if left>right
40 UComparator(const void *context, const void *left, const void *right);
68 uprv_uint16Comparator(const void *context, const void *left, const void *right);
75 uprv_int32Comparator(const void *context, const void *left, const void *right);
82 uprv_uint32Comparator(const void *context, const void *left, const void *right);
/macosx-10.10/dcerpc-61/www/content/css/blueprint/src/
H A Dgrid.css36 margin-right: 10px;
40 .last, div.last { margin-right: 0; }
69 .append-1 { padding-right: 40px; }
70 .append-2 { padding-right: 80px; }
71 .append-3 { padding-right: 120px; }
72 .append-4 { padding-right: 160px; }
73 .append-5 { padding-right: 200px; }
74 .append-6 { padding-right: 240px; }
75 .append-7 { padding-right: 280px; }
76 .append-8 { padding-right
[all...]

Completed in 210 milliseconds

1234567891011>>