Searched refs:right (Results 76 - 100 of 1426) sorted by relevance

1234567891011>>

/macosx-10.9.5/apr-30/apr/apr/user/win32/
H A Dgroupinfo.c89 APR_DECLARE(apr_status_t) apr_gid_compare(apr_gid_t left, apr_gid_t right)
91 if (!left || !right)
94 if (!IsValidSid(left) || !IsValidSid(right))
96 if (!EqualSid(left, right))
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/example/
H A Dmkpasswd84 set rpass "" ;# password chars typed by right hand
98 # choose left or right starting hand
101 # given a size, distribute between left and right hands
104 upvar $lvar left $rvar right
108 set right [expr $max/2]
109 set left [expr $max-$right]
113 set right [expr $max-$left]
141 psplit $minnum left right
145 for {set i 0} {$i<$right} {incr i} {
149 psplit $minlower left right
[all...]
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Dpaned1.tcl32 label $w.pane.right -text "This is the\nright side" -bg cyan
34 $w.pane add $w.pane.left $w.pane.right
/macosx-10.9.5/JavaScriptCore-7537.78.1/offlineasm/
H A Dast.rb238 attr_reader :left, :right
240 def initialize(codeOrigin, left, right)
243 @right = right
247 [@left, @right]
251 AddImmediates.new(codeOrigin, (yield @left), (yield @right))
255 "(#{left.dump} + #{right.dump})"
276 attr_reader :left, :right
278 def initialize(codeOrigin, left, right)
281 @right
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A Dspectrum.css26 right: 40px;
39 right: 0;
42 -webkit-box-reflect: right -28px;
62 padding-right: 4px;
68 right: 40px;
107 right: -1px;
H A DbreadcrumbList.css40 padding-right: 12px;
47 margin-right: -12px;
49 padding-right: 2px;
52 float: right;
74 padding-right: 6px;
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DPODIntervalTree.h177 // See whether we need to traverse the right subtree.
181 searchForOverlapsFrom<AdapterType>(node->right(), adapter);
194 IntervalNode* right = node->right(); local
195 if (right) {
196 if (*curMax < right->data().maxHigh())
197 curMax = &right->data().maxHigh();
214 IntervalNode* right = node->right(); local
219 if (right) {
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DLayoutBoxExtent.h43 LayoutBoxExtent(LayoutUnit top, LayoutUnit right, LayoutUnit bottom, LayoutUnit left) argument
44 : m_top(top), m_right(right), m_bottom(bottom), m_left(left) { }
47 inline LayoutUnit right() const { return m_right; } function in class:WebCore::LayoutBoxExtent
H A DPathTraversalState.cpp54 void split(QuadraticBezier& left, QuadraticBezier& right) const
57 right.control = midPoint(control, end);
59 FloatPoint leftControlToRightControl = midPoint(left.control, right.control);
61 right.start = leftControlToRightControl;
64 right.end = end;
87 void split(CubicBezier& left, CubicBezier& right) const
95 right.control2 = midPoint(control2, end);
96 right.control1 = midPoint(right.control2, startToControl1);
97 right
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/cdt/
H A Ddtrestore.c62 list = t->right;
63 t->right = NIL(Dtlink_t*);
70 { t = list->right;
/macosx-10.9.5/cctools-845/as/
H A Dexpr.c225 for me to fix right. Thus a hack. JF: Just make generic_bignum bigger,
340 expressionS right; local
361 if(SEG_NONE == expr(op_rank[op_left], &right)){
378 /* input_line_pointer -> after right-hand quantity. */
380 /* right-hand quantity in right. */
396 if(right.X_seg == SEG_BIG){
398 c_left, right.X_add_number > 0 ? "bignum" :
400 right.X_seg = SEG_ABSOLUTE;
401 right
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGPredictionPropagationPhase.cpp126 SpeculatedType speculatedDoubleTypeForPredictions(SpeculatedType left, SpeculatedType right) argument
128 return speculatedDoubleTypeForPrediction(mergeSpeculations(left, right));
213 SpeculatedType right = node->child2()->prediction(); local
215 if (left && right) {
216 if (isNumberSpeculationExpectingDefined(left) && isNumberSpeculationExpectingDefined(right)) {
220 changed |= mergePrediction(speculatedDoubleTypeForPredictions(left, right));
221 } else if (!(left & SpecNumber) || !(right & SpecNumber)) {
222 // left or right is definitely something other than a number.
232 SpeculatedType right = node->child2()->prediction(); local
234 if (left && right) {
245 SpeculatedType right = node->child2()->prediction(); local
268 SpeculatedType right = node->child2()->prediction(); local
282 SpeculatedType right = node->child2()->prediction(); local
295 SpeculatedType right = node->child2()->prediction(); local
309 SpeculatedType right = node->child2()->prediction(); local
610 SpeculatedType right = node->child2()->prediction(); local
627 SpeculatedType right = node->child2()->prediction(); local
647 SpeculatedType right = node->child2()->prediction(); local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dtztrans.cpp55 TimeZoneTransition::operator=(const TimeZoneTransition& right) { argument
56 if (this != &right) {
57 fTime = right.fTime;
58 setFrom(*right.fFrom);
59 setTo(*right.fTo);
/macosx-10.9.5/cron-39/lib/
H A Dcompat.c88 strcasecmp(left, right)
90 char *right;
92 while (*left && (MkLower(*left) == MkLower(*right))) {
94 right++;
96 return MkLower(*left) - MkLower(*right);
/macosx-10.9.5/llvmCore-3425.0.33/docs/_static/
H A Dllvm.css11 address img { float: right; width: 88px; height: 31px; }
12 address { clear: right; }
16 margin-right: 1em; margin-bottom: 1em; }
54 .doc_text { text-align: left; padding-left: 20pt; padding-right: 10pt }
81 h2+div, h2+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
82 h3+div, h3+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
83 h4+div, h4+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
98 tr.layout, td.layout, td.left, td.right
101 td.right { text-align: right }
[all...]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/binary_heap_/
H A Derase_fn_imps.hpp229 size_type right = m_size - 1; local
231 while (right + 1 != left)
237 else if (pred(m_a_entries[right]))
238 --right;
241 _GLIBCXX_DEBUG_ASSERT(left < right);
243 std::swap(m_a_entries[left], m_a_entries[right]);
246 --right;
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/hfscommon/BTree/
H A DBTreeMiscOps.c304 right - description
318 BlockDescriptor *right,
330 // assume left, middle, right point to BlockDescriptors
339 right->buffer = nil;
340 right->blockHeader = nil;
388 // BTree nodes are always grabbed in left to right order.
411 *right = *middle;
432 *right = *middle;
449 err = GetRightSiblingNode (btreePtr, middle->buffer, right);
452 if ( ((NodeDescPtr) right
314 FindIteratorPosition(BTreeControlBlockPtr btreePtr, BTreeIteratorPtr iterator, BlockDescriptor *left, BlockDescriptor *middle, BlockDescriptor *right, u_int32_t *returnNodeNum, u_int16_t *returnIndex, Boolean *foundRecord ) argument
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/
H A Daclparse.c63 static void split(char *line, int splitchar, char **left, char **right);
85 const char *right )
108 rc = ( *tmp->da_parse )( fname, lineno, opts, sty, right, &tmp->da_private );
333 char *left, *right, *style; local
372 split( argv[i], '=', &left, &right );
375 if ( right == NULL ) {
399 ber_str2bv( right, 0, 1, &a->acl_dn_pat );
405 ber_str2bv( right, 0, 1, &a->acl_dn_pat );
410 if( *right == '\0' ) {
415 ber_str2bv( right,
[all...]
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dtok822_parse.c164 #define MOVE_COMMENT_AND_CONTINUE(tp, right) { \
166 right = tok822_prepend(right, tp); \
171 #define SKIP_MOVE_COMMENT(tp, cond, right) { \
174 MOVE_COMMENT_AND_CONTINUE(tp, right); \
294 * right-most <> instance in that expression. If an address expression
483 TOK822 *right; local
490 * First, tokenize the string, from left to right. We are not allowed to
510 * done most conveniently from right to left. If there is something that
513 * node (tp) and the one called right
621 tok822_group(int group_type, TOK822 *left, TOK822 *right, int sync_type) argument
[all...]
/macosx-10.9.5/dcerpc-58/www/content/css/blueprint/
H A Dscreen.css36 p img.right {float:right;margin:1.5em 0 1.5em 1.5em;}
72 .last {margin-right:0;padding-right:0;}
79 .column, div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, div.span-21, div.span-22, div.span-23, div.span-24 {float:left;margin-right:10px;}
80 .last, div.last {margin-right:0;}
129 .append-1 {padding-right:40px;}
130 .append-2 {padding-right:80px;}
131 .append-3 {padding-right:120px;}
132 .append-4 {padding-right
[all...]
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dcond.c56 char *left, *right, *overridename, overridebuf[13]; local
63 left = right = overridename = NULL;
184 right = ecgetstr(state, EC_DUPTOK, &htok);
186 singsub(&right);
187 untokenize(right);
201 quotedzputs((char *)right, xtrerr);
220 mn2.u.l = zstrtol(right, &eptr, 10);
221 err = right;
235 mn2 = matheval(right);
283 right
[all...]
/macosx-10.9.5/Libc-997.90.3/regex/TRE/lib/
H A Dtre-ast.c73 tre_ast_new_union(tre_mem_t mem, tre_ast_node_t *left, tre_ast_node_t *right) argument
81 ((tre_union_t *)node->obj)->right = right;
82 node->num_submatches = left->num_submatches + right->num_submatches;
89 tre_ast_node_t *right)
97 ((tre_catenation_t *)node->obj)->right = right;
98 node->num_submatches = left->num_submatches + right->num_submatches;
197 tre_do_print(stream, ((tre_union_t *)ast->obj)->right, indent + 2);
203 tre_do_print(stream, ((tre_catenation_t *)ast->obj)->right, inden
88 tre_ast_new_catenation(tre_mem_t mem, tre_ast_node_t *left, tre_ast_node_t *right) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/authd/
H A Dccaudit.c148 void ccaudit_log_authorization(ccaudit_t ccaudit, const char * right, OSStatus err) argument
157 _write(ccaudit, au_to_text(right), "right");
176 void ccaudit_log_success(ccaudit_t ccaudit, credential_t cred, const char * right) argument
185 _write(ccaudit, au_to_text(right), "right");
194 void ccaudit_log_failure(ccaudit_t ccaudit, const char * credName, const char * right) argument
201 _write(ccaudit, au_to_text(right), "right");
214 void ccaudit_log_mechanism(ccaudit_t ccaudit, const char * right, cons argument
240 ccaudit_log(ccaudit_t ccaudit, const char * right, const char * msg, OSStatus err) argument
[all...]
H A Dcredential.c15 bool right; // is least-privileged credential member in struct:_credential_s
46 if (cred->right) {
47 str = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("credential: right=%s, shared=%i, creation=%01i:%01i:%01i, valid=%i"), cred->name, cred->shared, date.hour,date.minute,(int32_t)date.second, cred->valid);
59 if (cred->right) {
154 cred->right = srcCred->right;
162 credential_create_with_right(const char * right) argument
169 cred->right = true;
170 cred->name = _copy_string(right);
217 return cred->right;
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/intl/
H A Dplural.y61 struct expression *right));
64 struct expression *right));
114 new_exp_1 (op, right)
116 struct expression *right;
120 args[0] = right;
125 new_exp_2 (op, left, right)
128 struct expression *right;
133 args[1] = right;
159 %right '?' /* ? */
166 %right '!' /* ! */
[all...]

Completed in 190 milliseconds

1234567891011>>