Searched refs:right (Results 126 - 150 of 1287) sorted by relevance

1234567891011>>

/macosx-10.10.1/groff-38/groff/src/preproc/eqn/
H A Dlist.cpp64 static int compute_spacing(int is_script, int left, int right) argument
66 if (left == SUPPRESS_TYPE || right == SUPPRESS_TYPE)
70 if (left == OPENING_TYPE || right == CLOSING_TYPE)
72 if (right == BINARY_TYPE || left == BINARY_TYPE)
74 if (right == RELATION_TYPE) {
82 if (right == OPERATOR_TYPE)
84 if (left == INNER_TYPE || right == INNER_TYPE)
86 if (left == OPERATOR_TYPE && right == ORDINARY_TYPE)
/macosx-10.10.1/ncurses-44/ncurses/form/
H A Dfld_newftyp.c42 (FIELDTYPE *)0, /* pointer to right operand */
128 if (typ->right)
129 typ->right->ref--;
/macosx-10.10.1/sudo-73/src/
H A Dredblack.h32 struct rbnode *left, *right, *parent; member in struct:rbnode
44 #define rbisempty(t) ((t)->root.left == &(t)->nil && (t)->root.right == &(t)->nil)
/macosx-10.10.1/bc-21/bc/bc/
H A Dutil.c392 return find_id (tree->right, id);
412 new_id->right = NULL;
438 A->left = B->right;
439 B->right = A;
447 *root = B->right;
448 B->right = (*root)->left;
449 A->left = (*root)->right;
451 (*root)->right = A;
474 /* Insert it on the right. */
475 if (insert_id_rec (&((*root)->right), new_i
[all...]
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Dmenubu.tcl30 menubutton $w.body.right -text "Right" -underline 0 -direction right -menu $w.body.right.m -relief raised
31 menu $w.body.right.m -tearoff 0
32 $w.body.right.m add command -label "Right menu: first item" -command "puts \"You have selected the first item from the Right menu.\""
33 $w.body.right.m add command -label "Right menu: second item" -command "puts \"You have selected the second item from the Right menu.\""
39 grid $w.body.right -row 1 -column 0 -sticky w
53 label $body.label -wraplength 300 -font "Helvetica 14" -justify left -text "This is a demonstration of menubuttons. The \"Below\" menubutton pops its menu below the button; the \"Right\" button pops to the right, etc. There are two option menus directly below this text; one is just a standard menu and the other is a 16-color palette."
H A Danilabel.tcl21 label $w.msg -font $font -wraplength 4i -justify left -text "Four animated labels are displayed below; each of the labels on the left is animated by making the text message inside it appear to scroll, and the label on the right is animated by animating the image that it displays."
113 labelframe $w.right -text "GIF Image"
114 pack $w.left $w.right -side left -padx 10 -pady 10 -expand yes
122 label $w.right.l -bd 0
123 pack $w.right.l -side top -expand yes -padx 10 -pady 10
162 animateLabelImage $w.right.l $tclPoweredData 100
/macosx-10.10.1/xnu-2782.1.97/libsyscall/mach/
H A Dmach_port.c79 mach_port_right_t right,
84 rv = _kernelrpc_mach_port_allocate_name(task, right, name);
92 mach_port_right_t right,
97 rv = _kernelrpc_mach_port_allocate_trap(task, right, name);
100 rv = _kernelrpc_mach_port_allocate(task, right, name);
139 mach_port_right_t right,
144 rv = _kernelrpc_mach_port_get_refs(task, name, right, refs);
153 mach_port_right_t right,
158 rv = _kernelrpc_mach_port_mod_refs_trap(task, name, right, delta);
161 rv = _kernelrpc_mach_port_mod_refs(task, name, right, delt
77 mach_port_allocate_name( ipc_space_t task, mach_port_right_t right, mach_port_name_t name) argument
90 mach_port_allocate( ipc_space_t task, mach_port_right_t right, mach_port_name_t *name) argument
136 mach_port_get_refs( ipc_space_t task, mach_port_name_t name, mach_port_right_t right, mach_port_urefs_t *refs) argument
150 mach_port_mod_refs( ipc_space_t task, mach_port_name_t name, mach_port_right_t right, mach_port_delta_t delta) argument
328 mach_port_allocate_qos( ipc_space_t task, mach_port_right_t right, mach_port_qos_t *qos, mach_port_name_t *name) argument
342 mach_port_allocate_full( ipc_space_t task, mach_port_right_t right, mach_port_t proto, mach_port_qos_t *qos, mach_port_name_t *name) argument
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DMain.css42 right: 0;
68 body.docked.right {
76 body.docked.right.mac-platform.legacy {
94 right: 0;
100 body.docked.right #docked-resizer {
133 body.docked.right #navigation-sidebar.collapsed > .resizer {
176 right: 0;
180 padding-right: 20%;
205 margin-right: 4px;
220 float: right;
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dunorm.cpp226 const UChar *right, int32_t rightLength,
234 left==NULL || leftLength<-1 || right==NULL || rightLength<-1) {
239 /* check for overlapping right and destination */
241 ((right>=dest && right<(dest+destCapacity)) ||
242 (rightLength>0 && dest>=right && dest<(right+rightLength)))
256 return n2->append(destString, UnicodeString(rightLength<0, right, rightLength), *pErrorCode).
262 const UChar *right, int32_t rightLength,
273 return _concatenate(left, leftLength, right, rightLengt
225 _concatenate(const UChar *left, int32_t leftLength, const UChar *right, int32_t rightLength, UChar *dest, int32_t destCapacity, const Normalizer2 *n2, UErrorCode *pErrorCode) argument
261 unorm_concatenate(const UChar *left, int32_t leftLength, const UChar *right, int32_t rightLength, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UErrorCode *pErrorCode) argument
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A DMANIFEST685 tests/alias.right f
687 tests/appendop.right f
689 tests/arith-for.right f
691 tests/arith.right f
695 tests/array.right f
701 tests/array2.right f
703 tests/braces.right f
705 tests/builtins.right f
714 tests/cond.right f
716 tests/cprint.right
[all...]
/macosx-10.10.1/cups-408/cups/cups/
H A Ddest-options.c904 size->right = nsize->right;
1243 temp->right = mdb->right;
1293 DEBUG_printf(("4cups_create_cached: %p key=\"%s\", type=\"%s\", %dx%d, B%d L%d R%d T%d", mdb, mdb->key, mdb->type, mdb->width, mdb->length, mdb->bottom, mdb->left, mdb->right, mdb->top));
1297 if (!mdb->left && !mdb->right && !mdb->top && !mdb->bottom)
1311 else if (mdb->left >= first->left && mdb->right >= first->right && mdb->top >= first->top && mdb->bottom >= first->bottom &&
1312 (mdb->left != first->left || mdb->right != first->right || md
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/assembler/
H A DMacroAssembler.h317 void branch32(RelationalCondition cond, RegisterID left, Address right, Label target) argument
319 branch32(cond, left, right).linkTo(target, this);
322 Jump branch32(RelationalCondition cond, TrustedImm32 left, RegisterID right) argument
324 return branch32(commute(cond), right, left);
327 Jump branch32(RelationalCondition cond, Imm32 left, RegisterID right) argument
329 return branch32(commute(cond), right, left);
338 PatchableJump patchableBranchPtr(RelationalCondition cond, Address left, TrustedImmPtr right = TrustedImmPtr(0))
340 return PatchableJump(branchPtr(cond, left, right));
556 void comparePtr(RelationalCondition cond, RegisterID left, TrustedImm32 right, RegisterID dest) argument
558 compare32(cond, left, right, des
561 comparePtr(RelationalCondition cond, RegisterID left, RegisterID right, RegisterID dest) argument
611 branchPtr(RelationalCondition cond, RegisterID left, RegisterID right) argument
616 branchPtr(RelationalCondition cond, RegisterID left, TrustedImmPtr right) argument
621 branchPtr(RelationalCondition cond, RegisterID left, ImmPtr right) argument
626 branchPtr(RelationalCondition cond, RegisterID left, Address right) argument
631 branchPtr(RelationalCondition cond, Address left, RegisterID right) argument
636 branchPtr(RelationalCondition cond, AbsoluteAddress left, RegisterID right) argument
641 branchPtr(RelationalCondition cond, Address left, TrustedImmPtr right) argument
646 branchPtr(RelationalCondition cond, AbsoluteAddress left, TrustedImmPtr right) argument
873 comparePtr(RelationalCondition cond, RegisterID left, TrustedImm32 right, RegisterID dest) argument
878 comparePtr(RelationalCondition cond, RegisterID left, RegisterID right, RegisterID dest) argument
893 branchPtr(RelationalCondition cond, RegisterID left, RegisterID right) argument
898 branchPtr(RelationalCondition cond, RegisterID left, TrustedImmPtr right) argument
903 branchPtr(RelationalCondition cond, RegisterID left, Address right) argument
908 branchPtr(RelationalCondition cond, Address left, RegisterID right) argument
913 branchPtr(RelationalCondition cond, AbsoluteAddress left, RegisterID right) argument
918 branchPtr(RelationalCondition cond, Address left, TrustedImmPtr right) argument
1177 branchPtr(RelationalCondition cond, RegisterID left, ImmPtr right) argument
1474 branch32(RelationalCondition cond, RegisterID left, Imm32 right) argument
[all...]
H A DMacroAssemblerX86_64.h158 // On entry, rcx should contain a pointer to this stack space. The other parameters are shifted to the right,
162 // It is assumed that the parameters are already shifted to the right, when entering this method.
512 void compare64(RelationalCondition cond, RegisterID left, TrustedImm32 right, RegisterID dest) argument
514 if (((cond == Equal) || (cond == NotEqual)) && !right.m_value)
517 m_assembler.cmpq_ir(right.m_value, left);
522 void compare64(RelationalCondition cond, RegisterID left, RegisterID right, RegisterID dest) argument
524 m_assembler.cmpq_rr(right, left);
529 Jump branch64(RelationalCondition cond, RegisterID left, RegisterID right) argument
531 m_assembler.cmpq_rr(right, left);
535 Jump branch64(RelationalCondition cond, RegisterID left, TrustedImm64 right) argument
545 branch64(RelationalCondition cond, RegisterID left, Address right) argument
551 branch64(RelationalCondition cond, AbsoluteAddress left, RegisterID right) argument
557 branch64(RelationalCondition cond, Address left, RegisterID right) argument
563 branch64(RelationalCondition cond, Address left, TrustedImm64 right) argument
569 branch64(RelationalCondition cond, BaseIndex address, RegisterID right) argument
575 branchPtr(RelationalCondition cond, BaseIndex left, RegisterID right) argument
580 branchPtr(RelationalCondition cond, BaseIndex left, TrustedImmPtr right) argument
757 branch8(RelationalCondition cond, AbsoluteAddress left, TrustedImm32 right) argument
[all...]
/macosx-10.10.1/CPANInternal-159.1/Tree-Simple-VisitorFactory-0.10/lib/Tree/Simple/Visitor/
H A DLoadDirectoryTree.pm32 my ($path, $left, $right) = @_;
34 $right = File::Spec->catdir($path, $right);
35 return ((-d $left && -f $right) ? 1 : # file beats directory
36 (-d $right && -f $left) ? -1 : # file beats directory
37 (lc($left) cmp lc($right))) # otherwise just sort 'em
43 my ($path, $left, $right) = @_;
45 $right = File::Spec->catdir($path, $right);
46 return ((-d $left && -f $right)
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dcollationfastlatin.cpp47 // Shift right to make it comparable with long mini primaries in bits 15..3.
93 const UChar *right, int32_t rightLength) {
151 UChar32 c = right[rightIndex++];
171 rightPair = nextPair(table, c, rightPair, right, NULL, rightIndex, rightLength);
232 UChar32 c = right[rightIndex++];
247 rightPair = nextPair(table, c, rightPair, right, NULL, rightIndex, rightLength);
296 UChar32 c = right[rightIndex++];
299 rightPair = nextPair(table, c, rightPair, right, NULL, rightIndex, rightLength);
349 UChar32 c = right[rightIndex++];
352 rightPair = nextPair(table, c, rightPair, right, NUL
91 compareUTF16(const uint16_t *table, const uint16_t *primaries, int32_t options, const UChar *left, int32_t leftLength, const UChar *right, int32_t rightLength) argument
431 compareUTF8(const uint16_t *table, const uint16_t *primaries, int32_t options, const uint8_t *left, int32_t leftLength, const uint8_t *right, int32_t rightLength) argument
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGAbstractInterpreterInlines.h213 JSValue right = forNode(node->child2()).value(); local
214 if (left && right && left.isInt32() && right.isInt32()) {
216 int32_t b = right.asInt32();
371 JSValue right = forNode(node->child2()).value(); local
374 if (left && right && left.isInt32() && right.isInt32()) {
376 setConstant(node, jsNumber(left.asInt32() + right.asInt32()));
379 JSValue result = jsNumber(left.asNumber() + right.asNumber());
390 if (left && right
426 JSValue right = forNode(node->child2()).value(); local
534 JSValue right = forNode(node->child2()).value(); local
587 JSValue right = forNode(node->child2()).value(); local
623 JSValue right = forNode(node->child2()).value(); local
659 JSValue right = forNode(node->child2()).value(); local
689 JSValue right = forNode(node->child2()).value(); local
981 JSValue right = forNode(rightNode).value(); local
1767 JSValue right = forNode(node->child2()).value(); local
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp1320 CurSU->isPending = true; // This SU is not in AvailableQueue right now.
1512 bool operator()(SUnit* left, SUnit* right) const {
1513 // reverse left/right rather than simply !SortFunc(left, right)
1515 return SortFunc(right, left);
1532 bool operator()(SUnit* left, SUnit* right) const;
1548 bool operator()(SUnit* left, SUnit* right) const;
1566 bool operator()(SUnit* left, SUnit* right) const;
1585 bool operator()(SUnit* left, SUnit* right) const;
1796 // Return -1 to schedule right abov
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/Tools/PrettyPrinting/
H A Dcodemirror.css29 border-right: 1px solid #ddd;
37 text-align: right;
122 margin-bottom: -30px; margin-right: -30px;
132 border-right: 30px solid transparent;
146 right: 0; top: 0;
156 right: 0; bottom: 0;
212 left: 0; right: 0; top: 0; bottom: 0;
239 border-right: none;
265 .cm-force-border { padding-right: .1px; }
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dcodemirror.css29 border-right: 1px solid #ddd;
37 text-align: right;
122 margin-bottom: -30px; margin-right: -30px;
132 border-right: 30px solid transparent;
146 right: 0; top: 0;
156 right: 0; bottom: 0;
212 left: 0; right: 0; top: 0; bottom: 0;
239 border-right: none;
265 .cm-force-border { padding-right: .1px; }
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/plotchart/
H A Dplotpack.tcl47 set packing($w,right) [WidthCanvas $w]
52 set right $packing($w,right)
94 "right" {
95 set xmove [expr {$right-[WidthCanvas [GetCanvas $p]]}]
100 set right $xmove
109 set packing($w,right) $right
/macosx-10.10.1/dtrace-147/libdwarf/
H A Dpro_die.c55 parent,child,left,right: specify neighbors of the new die. Only
63 Dwarf_P_Die left, Dwarf_P_Die right, Dwarf_Error * error)
79 dwarf_die_link(new_die, parent, child, left, right, error);
85 parent,child,left,right: specify neighbors of the new die. Only
92 Dwarf_P_Die left, Dwarf_P_Die right, Dwarf_Error * error)
124 if (left->di_right) /* there's already a right sibl, lets
135 if (right != NULL) {
137 new_die->di_right = right;
138 if (right->di_left) /* left sibl exists, try inserting */
139 new_die->di_left = right
59 dwarf_new_die(Dwarf_P_Debug dbg, Dwarf_Tag tag, Dwarf_P_Die parent, Dwarf_P_Die child, Dwarf_P_Die left, Dwarf_P_Die right, Dwarf_Error * error) argument
89 dwarf_die_link(Dwarf_P_Die new_die, Dwarf_P_Die parent, Dwarf_P_Die child, Dwarf_P_Die left, Dwarf_P_Die right, Dwarf_Error * error) argument
[all...]
/macosx-10.10.1/emacs-93/emacs/src/
H A Dintervals.h41 struct interval *right; /* Intervals which succeed me. */ member in struct:interval
97 /* True if this interval has no right child. */
98 #define NULL_RIGHT_CHILD(i) ((i)->right == NULL_INTERVAL)
110 /* True if this interval is the right child of some other interval. */
112 && INTERVAL_PARENT (i)->right == (i))
116 && (i)->right == NULL_INTERVAL)
124 /* True if this interval has both left and right children. */
126 && (i)->right != NULL_INTERVAL)
134 - TOTAL_LENGTH ((i)->right) \
144 /* The total size of the right subtre
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_keychain/
H A DAccess.h103 void findAclsForRight(AclAuthorization right, Container &cont) argument
107 if (it->second->authorizes(right))
113 void addApplicationToRight(AclAuthorization right, TrustedApplication *app);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DAccess.h103 void findAclsForRight(AclAuthorization right, Container &cont) argument
107 if (it->second->authorizes(right))
113 void addApplicationToRight(AclAuthorization right, TrustedApplication *app);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DAccess.h103 void findAclsForRight(AclAuthorization right, Container &cont) argument
107 if (it->second->authorizes(right))
113 void addApplicationToRight(AclAuthorization right, TrustedApplication *app);

Completed in 246 milliseconds

1234567891011>>