Searched refs:location (Results 1 - 25 of 814) sorted by relevance

1234567891011>>

/macosx-10.10.1/man-16/man/src/
H A Dman2dvi15 location=`man -c -w $1`
17 if [ "$location" = "" ]; then
21 case `file $location` in
23 zcat $location | $groff
27 $groff $location
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Regress/
H A Dregress-96526-001.js53 if (jumpto == 0) window.location = "http://www.newyankee.com/GetYankees2.cgi?1.jpg";
54 else if (jumpto == [0]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ImageName";
55 else if (jumpto == [1]) window.location = "http://www.newyankee.com/GetYankees2.cgi?1.jpg";
56 else if (jumpto == [2]) window.location = "http://www.newyankee.com/GetYankees2.cgi?arsrferguson.jpg";
57 else if (jumpto == [3]) window.location = "http://www.newyankee.com/GetYankees2.cgi?akjamesmartin.jpg";
58 else if (jumpto == [4]) window.location = "http://www.newyankee.com/GetYankees2.cgi?aldaverackett.jpg";
59 else if (jumpto == [5]) window.location = "http://www.newyankee.com/GetYankees2.cgi?alericbrasher.jpg";
60 else if (jumpto == [6]) window.location = "http://www.newyankee.com/GetYankees2.cgi?algeorgewatkins.jpg";
61 else if (jumpto == [7]) window.location = "http://www.newyankee.com/GetYankees2.cgi?altoddcruise.jpg";
62 else if (jumpto == [8]) window.location
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DEditingRange.h36 : location(notFound)
41 EditingRange(uint64_t location, uint64_t length) argument
42 : location(location)
48 bool isValid() const { return location + length >= location; }
53 if (range.location != NSNotFound) {
54 location = range.location;
57 location
70 uint64_t location; member in struct:WebKit::EditingRange
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/assembler/
H A DCodeLocation.h73 CodeLocationCommon(MacroAssemblerCodePtr location) argument
74 : MacroAssemblerCodePtr(location)
82 explicit CodeLocationInstruction(MacroAssemblerCodePtr location) argument
83 : CodeLocationCommon(location) {}
84 explicit CodeLocationInstruction(void* location) argument
85 : CodeLocationCommon(MacroAssemblerCodePtr(location)) {}
91 explicit CodeLocationLabel(MacroAssemblerCodePtr location) argument
92 : CodeLocationCommon(location) {}
93 explicit CodeLocationLabel(void* location) argument
94 : CodeLocationCommon(MacroAssemblerCodePtr(location)) {}
100 CodeLocationJump(MacroAssemblerCodePtr location) argument
102 CodeLocationJump(void* location) argument
109 CodeLocationCall(MacroAssemblerCodePtr location) argument
111 CodeLocationCall(void* location) argument
118 CodeLocationNearCall(MacroAssemblerCodePtr location) argument
120 CodeLocationNearCall(void* location) argument
127 CodeLocationDataLabel32(MacroAssemblerCodePtr location) argument
129 CodeLocationDataLabel32(void* location) argument
136 CodeLocationDataLabelCompact(MacroAssemblerCodePtr location) argument
138 CodeLocationDataLabelCompact(void* location) argument
145 CodeLocationDataLabelPtr(MacroAssemblerCodePtr location) argument
147 CodeLocationDataLabelPtr(void* location) argument
154 CodeLocationConvertibleLoad(MacroAssemblerCodePtr location) argument
156 CodeLocationConvertibleLoad(void* location) argument
[all...]
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/eg/
H A Dyahoogroups.pl14 my $location;
18 unless ( $location = $headers->header('Location') )
19 && $location =~ m!/interrupt\?!;
24 "Ad interrupt detected: fetching $location" );
27 GET => $location,
35 $location = unescape($location);
36 $location =~ s|^(http://[^/]*).*done=([^&]*).*$|$1$2|;
37 $headers->header( Location => $location );
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/eg/
H A Dyahoogroups.pl14 my $location;
18 unless ( $location = $headers->header('Location') )
19 && $location =~ m!/interrupt\?!;
24 "Ad interrupt detected: fetching $location" );
27 GET => $location,
35 $location = unescape($location);
36 $location =~ s|^(http://[^/]*).*done=([^&]*).*$|$1$2|;
37 $headers->header( Location => $location );
/macosx-10.10.1/configd-699.1.5/SystemConfiguration.fproj/
H A DSCLocation.c49 CFStringRef location = NULL; local
59 location = CFDictionaryGetValue(dict, kSCDynamicStorePropSetupCurrentSet);
60 location = isA_CFString(location);
61 if (location == NULL) {
66 CFRetain(location);
73 return location;
/macosx-10.10.1/JavaScriptCore-7600.1.17/parser/
H A DNodeConstructors.h45 inline Node::Node(const JSTokenLocation& location) argument
46 : m_position(location.line, location.startOffset, location.lineStartOffset)
48 ASSERT(location.startOffset >= location.lineStartOffset);
51 inline ExpressionNode::ExpressionNode(const JSTokenLocation& location, ResultType resultType) argument
52 : Node(location)
57 inline StatementNode::StatementNode(const JSTokenLocation& location) argument
58 : Node(location)
63 ConstantNode(const JSTokenLocation& location, ResultType resultType) argument
68 NullNode(const JSTokenLocation& location) argument
73 BooleanNode(const JSTokenLocation& location, bool value) argument
79 NumberNode(const JSTokenLocation& location, double value) argument
85 StringNode(const JSTokenLocation& location, const Identifier& value) argument
91 RegExpNode(const JSTokenLocation& location, const Identifier& pattern, const Identifier& flags) argument
98 ThisNode(const JSTokenLocation& location) argument
103 ResolveNode(const JSTokenLocation& location, const Identifier& ident, const JSTextPosition& start) argument
126 ArrayNode(const JSTokenLocation& location, int elision) argument
134 ArrayNode(const JSTokenLocation& location, ElementNode* element) argument
142 ArrayNode(const JSTokenLocation& location, int elision, ElementNode* element) argument
172 PropertyListNode(const JSTokenLocation& location, PropertyNode* node) argument
179 PropertyListNode(const JSTokenLocation& location, PropertyNode* node, PropertyListNode* list) argument
187 ObjectLiteralNode(const JSTokenLocation& location) argument
193 ObjectLiteralNode(const JSTokenLocation& location, PropertyListNode* list) argument
199 BracketAccessorNode(const JSTokenLocation& location, ExpressionNode* base, ExpressionNode* subscript, bool subscriptHasAssignments) argument
207 DotAccessorNode(const JSTokenLocation& location, ExpressionNode* base, const Identifier& ident) argument
215 SpreadExpressionNode(const JSTokenLocation& location, ExpressionNode* expression) argument
221 ArgumentListNode(const JSTokenLocation& location, ExpressionNode* expr) argument
228 ArgumentListNode(const JSTokenLocation& location, ArgumentListNode* listNode, ExpressionNode* expr) argument
246 NewExprNode(const JSTokenLocation& location, ExpressionNode* expr) argument
253 NewExprNode(const JSTokenLocation& location, ExpressionNode* expr, ArgumentsNode* args) argument
260 EvalFunctionCallNode(const JSTokenLocation& location, ArgumentsNode* args, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
267 FunctionCallValueNode(const JSTokenLocation& location, ExpressionNode* expr, ArgumentsNode* args, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
276 FunctionCallResolveNode(const JSTokenLocation& location, const Identifier& ident, ArgumentsNode* args, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
284 FunctionCallBracketNode(const JSTokenLocation& location, ExpressionNode* base, ExpressionNode* subscript, ArgumentsNode* args, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
293 FunctionCallDotNode(const JSTokenLocation& location, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
302 CallFunctionCallDotNode(const JSTokenLocation& location, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
307 ApplyFunctionCallDotNode(const JSTokenLocation& location, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
312 PostfixNode(const JSTokenLocation& location, ExpressionNode* expr, Operator oper, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
317 DeleteResolveNode(const JSTokenLocation& location, const Identifier& ident, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
324 DeleteBracketNode(const JSTokenLocation& location, ExpressionNode* base, ExpressionNode* subscript, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
332 DeleteDotNode(const JSTokenLocation& location, ExpressionNode* base, const Identifier& ident, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
340 DeleteValueNode(const JSTokenLocation& location, ExpressionNode* expr) argument
346 VoidNode(const JSTokenLocation& location, ExpressionNode* expr) argument
352 TypeOfResolveNode(const JSTokenLocation& location, const Identifier& ident) argument
358 TypeOfValueNode(const JSTokenLocation& location, ExpressionNode* expr) argument
364 PrefixNode(const JSTokenLocation& location, ExpressionNode* expr, Operator oper, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
372 UnaryOpNode(const JSTokenLocation& location, ResultType type, ExpressionNode* expr, OpcodeID opcodeID) argument
379 UnaryPlusNode(const JSTokenLocation& location, ExpressionNode* expr) argument
384 NegateNode(const JSTokenLocation& location, ExpressionNode* expr) argument
389 BitwiseNotNode(const JSTokenLocation& location, ExpressionNode* expr) argument
395 LogicalNotNode(const JSTokenLocation& location, ExpressionNode* expr) argument
400 BinaryOpNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, OpcodeID opcodeID, bool rightHasAssignments) argument
409 BinaryOpNode(const JSTokenLocation& location, ResultType type, ExpressionNode* expr1, ExpressionNode* expr2, OpcodeID opcodeID, bool rightHasAssignments) argument
418 MultNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
423 DivNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
429 ModNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
434 AddNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
439 SubNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
444 LeftShiftNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
449 RightShiftNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
454 UnsignedRightShiftNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
459 LessNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
464 GreaterNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
469 LessEqNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
474 GreaterEqNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
479 ThrowableBinaryOpNode(const JSTokenLocation& location, ResultType type, ExpressionNode* expr1, ExpressionNode* expr2, OpcodeID opcodeID, bool rightHasAssignments) argument
484 ThrowableBinaryOpNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, OpcodeID opcodeID, bool rightHasAssignments) argument
489 InstanceOfNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
494 InNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
499 EqualNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
504 NotEqualNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
509 StrictEqualNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
514 NotStrictEqualNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
519 BitAndNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
524 BitOrNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
529 BitXOrNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
534 LogicalOpNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, LogicalOperator oper) argument
542 ConditionalNode(const JSTokenLocation& location, ExpressionNode* logical, ExpressionNode* expr1, ExpressionNode* expr2) argument
550 ReadModifyResolveNode(const JSTokenLocation& location, const Identifier& ident, Operator oper, ExpressionNode* right, bool rightHasAssignments, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
560 AssignResolveNode(const JSTokenLocation& location, const Identifier& ident, ExpressionNode* right) argument
568 ReadModifyBracketNode(const JSTokenLocation& location, ExpressionNode* base, ExpressionNode* subscript, Operator oper, ExpressionNode* right, bool subscriptHasAssignments, bool rightHasAssignments, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
580 AssignBracketNode(const JSTokenLocation& location, ExpressionNode* base, ExpressionNode* subscript, ExpressionNode* right, bool subscriptHasAssignments, bool rightHasAssignments, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
591 AssignDotNode(const JSTokenLocation& location, ExpressionNode* base, const Identifier& ident, ExpressionNode* right, bool rightHasAssignments, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
601 ReadModifyDotNode(const JSTokenLocation& location, ExpressionNode* base, const Identifier& ident, Operator oper, ExpressionNode* right, bool rightHasAssignments, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
612 AssignErrorNode(const JSTokenLocation& location, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd) argument
618 CommaNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2) argument
627 ConstStatementNode(const JSTokenLocation& location, ConstDeclNode* next) argument
637 EmptyStatementNode(const JSTokenLocation& location) argument
642 DebuggerStatementNode(const JSTokenLocation& location) argument
647 ExprStatementNode(const JSTokenLocation& location, ExpressionNode* expr) argument
653 VarStatementNode(const JSTokenLocation& location, ExpressionNode* expr) argument
659 IfElseNode(const JSTokenLocation& location, ExpressionNode* condition, StatementNode* ifBlock, StatementNode* elseBlock) argument
667 DoWhileNode(const JSTokenLocation& location, StatementNode* statement, ExpressionNode* expr) argument
674 WhileNode(const JSTokenLocation& location, ExpressionNode* expr, StatementNode* statement) argument
681 ForNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, ExpressionNode* expr3, StatementNode* statement) argument
691 ContinueNode(VM* vm, const JSTokenLocation& location) argument
697 ContinueNode(const JSTokenLocation& location, const Identifier& ident) argument
703 BreakNode(VM* vm, const JSTokenLocation& location) argument
709 BreakNode(const JSTokenLocation& location, const Identifier& ident) argument
715 ReturnNode(const JSTokenLocation& location, ExpressionNode* value) argument
721 WithNode(const JSTokenLocation& location, ExpressionNode* expr, StatementNode* statement, const JSTextPosition& divot, uint32_t expressionLength) argument
730 LabelNode(const JSTokenLocation& location, const Identifier& name, StatementNode* statement) argument
737 ThrowNode(const JSTokenLocation& location, ExpressionNode* expr) argument
743 TryNode(const JSTokenLocation& location, StatementNode* tryBlock, const Identifier& exceptionIdent, StatementNode* catchBlock, StatementNode* finallyBlock) argument
768 FuncExprNode(const JSTokenLocation& location, const Identifier& ident, FunctionBodyNode* body, const SourceCode& source, ParameterNode* parameter) argument
775 FuncDeclNode(const JSTokenLocation& location, const Identifier& ident, FunctionBodyNode* body, const SourceCode& source, ParameterNode* parameter) argument
808 SwitchNode(const JSTokenLocation& location, ExpressionNode* expr, CaseBlockNode* block) argument
815 ConstDeclNode(const JSTokenLocation& location, const Identifier& ident, ExpressionNode* init) argument
823 BlockNode(const JSTokenLocation& location, SourceElements* statements) argument
829 EnumerationNode(const JSTokenLocation& location, ExpressionNode* l, ExpressionNode* expr, StatementNode* statement) argument
838 EnumerationNode(VM* vm, const JSTokenLocation& location, DeconstructionPatternNode* pattern, ExpressionNode* expr, StatementNode* statement) argument
847 ForInNode(const JSTokenLocation& location, ExpressionNode* l, ExpressionNode* expr, StatementNode* statement) argument
852 ForInNode(VM* vm, const JSTokenLocation& location, DeconstructionPatternNode* pattern, ExpressionNode* expr, StatementNode* statement) argument
857 ForOfNode(const JSTokenLocation& location, ExpressionNode* l, ExpressionNode* expr, StatementNode* statement) argument
862 ForOfNode(VM* vm, const JSTokenLocation& location, DeconstructionPatternNode* pattern, ExpressionNode* expr, StatementNode* statement) argument
904 DeconstructingAssignmentNode(const JSTokenLocation& location, PassRefPtr<DeconstructionPatternNode> bindings, ExpressionNode* initializer) argument
[all...]
H A DASTBuilder.h134 CommaNode* createCommaExpr(const JSTokenLocation& location, ExpressionNode* lhs, ExpressionNode* rhs) { return new (m_vm) CommaNode(location, lhs, rhs); } argument
155 ExpressionNode* createLogicalNot(const JSTokenLocation& location, ExpressionNode* expr) argument
158 return createBoolean(location, isZeroOrUnordered(static_cast<NumberNode*>(expr)->value()));
160 return new (m_vm) LogicalNotNode(location, expr);
162 ExpressionNode* createUnaryPlus(const JSTokenLocation& location, ExpressionNode* expr) { return new (m_vm) UnaryPlusNode(location, expr); } argument
163 ExpressionNode* createVoid(const JSTokenLocation& location, ExpressionNode* expr) argument
166 return new (m_vm) VoidNode(location, expr);
168 ExpressionNode* thisExpr(const JSTokenLocation& location) argument
173 createResolve(const JSTokenLocation& location, const Identifier* ident, const JSTextPosition& start) argument
179 createObjectLiteral(const JSTokenLocation& location) argument
180 createObjectLiteral(const JSTokenLocation& location, PropertyListNode* properties) argument
182 createArray(const JSTokenLocation& location, int elisions) argument
189 createArray(const JSTokenLocation& location, ElementNode* elems) argument
190 createArray(const JSTokenLocation& location, int elisions, ElementNode* elems) argument
196 createNumberExpr(const JSTokenLocation& location, double d) argument
202 createString(const JSTokenLocation& location, const Identifier* string) argument
208 createBoolean(const JSTokenLocation& location, bool b) argument
214 createNull(const JSTokenLocation& location) argument
220 createBracketAccess(const JSTokenLocation& location, ExpressionNode* base, ExpressionNode* property, bool propertyHasAssignments, const JSTextPosition& start, const JSTextPosition& divot, const JSTextPosition& end) argument
227 createDotAccess(const JSTokenLocation& location, ExpressionNode* base, const Identifier* property, const JSTextPosition& start, const JSTextPosition& divot, const JSTextPosition& end) argument
234 createSpreadExpression(const JSTokenLocation& location, ExpressionNode* expression, const JSTextPosition& start, const JSTextPosition& divot, const JSTextPosition& end) argument
241 createRegExp(const JSTokenLocation& location, const Identifier& pattern, const Identifier& flags, const JSTextPosition& start) argument
252 createNewExpr(const JSTokenLocation& location, ExpressionNode* expr, ArgumentsNode* arguments, const JSTextPosition& start, const JSTextPosition& divot, const JSTextPosition& end) argument
259 createNewExpr(const JSTokenLocation& location, ExpressionNode* expr, const JSTextPosition& start, const JSTextPosition& end) argument
266 createConditionalExpr(const JSTokenLocation& location, ExpressionNode* condition, ExpressionNode* lhs, ExpressionNode* rhs) argument
271 createAssignResolve(const JSTokenLocation& location, const Identifier& ident, ExpressionNode* rhs, const JSTextPosition& start, const JSTextPosition& divot, const JSTextPosition& end) argument
280 createFunctionExpr(const JSTokenLocation& location, const Identifier* name, FunctionBodyNode* body, ParameterNode* parameters, unsigned openBraceOffset, unsigned closeBraceOffset, int bodyStartLine, int bodyEndLine, unsigned startColumn) argument
297 createGetterOrSetterProperty(const JSTokenLocation& location, PropertyNode::Type type, bool, const Identifier* name, ParameterNode* params, FunctionBodyNode* body, unsigned openBraceOffset, unsigned closeBraceOffset, int bodyStartLine, int bodyEndLine, unsigned bodyStartColumn) argument
305 createGetterOrSetterProperty(VM*, const JSTokenLocation& location, PropertyNode::Type type, bool, double name, ParameterNode* params, FunctionBodyNode* body, unsigned openBraceOffset, unsigned closeBraceOffset, int bodyStartLine, int bodyEndLine, unsigned bodyStartColumn) argument
313 createArgumentsList(const JSTokenLocation& location, ExpressionNode* arg) argument
314 createArgumentsList(const JSTokenLocation& location, ArgumentListNode* args, ExpressionNode* arg) argument
324 createPropertyList(const JSTokenLocation& location, PropertyNode* property) argument
325 createPropertyList(const JSTokenLocation& location, PropertyNode* property, PropertyListNode* tail) argument
339 createFuncDeclStatement(const JSTokenLocation& location, const Identifier* name, FunctionBodyNode* body, ParameterNode* parameters, unsigned openBraceOffset, unsigned closeBraceOffset, int bodyStartLine, int bodyEndLine, unsigned bodyStartColumn) argument
349 createBlockStatement(const JSTokenLocation& location, JSC::SourceElements* elements, int startLine, int endLine) argument
356 createExprStatement(const JSTokenLocation& location, ExpressionNode* expr, const JSTextPosition& start, int end) argument
363 createIfStatement(const JSTokenLocation& location, ExpressionNode* condition, StatementNode* trueBlock, StatementNode* falseBlock, int start, int end) argument
370 createForLoop(const JSTokenLocation& location, ExpressionNode* initializer, ExpressionNode* condition, ExpressionNode* iter, StatementNode* statements, int start, int end) argument
377 createForInLoop(const JSTokenLocation& location, ExpressionNode* lhs, ExpressionNode* iter, StatementNode* statements, const JSTextPosition& eStart, const JSTextPosition& eDivot, const JSTextPosition& eEnd, int start, int end) argument
385 createForInLoop(const JSTokenLocation& location, PassRefPtr<DeconstructionPatternNode> pattern, ExpressionNode* iter, StatementNode* statements, const JSTextPosition& eStart, const JSTextPosition& eDivot, const JSTextPosition& eEnd, int start, int end) argument
393 createForOfLoop(const JSTokenLocation& location, ExpressionNode* lhs, ExpressionNode* iter, StatementNode* statements, const JSTextPosition& eStart, const JSTextPosition& eDivot, const JSTextPosition& eEnd, int start, int end) argument
401 createForOfLoop(const JSTokenLocation& location, PassRefPtr<DeconstructionPatternNode> pattern, ExpressionNode* iter, StatementNode* statements, const JSTextPosition& eStart, const JSTextPosition& eDivot, const JSTextPosition& eEnd, int start, int end) argument
414 createEmptyStatement(const JSTokenLocation& location) argument
416 createVarStatement(const JSTokenLocation& location, ExpressionNode* expr, int start, int end) argument
427 createReturnStatement(const JSTokenLocation& location, ExpressionNode* expression, const JSTextPosition& start, const JSTextPosition& end) argument
435 createBreakStatement(const JSTokenLocation& location, const JSTextPosition& start, const JSTextPosition& end) argument
443 createBreakStatement(const JSTokenLocation& location, const Identifier* ident, const JSTextPosition& start, const JSTextPosition& end) argument
451 createContinueStatement(const JSTokenLocation& location, const JSTextPosition& start, const JSTextPosition& end) argument
459 createContinueStatement(const JSTokenLocation& location, const Identifier* ident, const JSTextPosition& start, const JSTextPosition& end) argument
467 createTryStatement(const JSTokenLocation& location, StatementNode* tryBlock, const Identifier* ident, StatementNode* catchBlock, StatementNode* finallyBlock, int startLine, int endLine) argument
476 createSwitchStatement(const JSTokenLocation& location, ExpressionNode* expr, ClauseListNode* firstClauses, CaseClauseNode* defaultClause, ClauseListNode* secondClauses, int startLine, int endLine) argument
484 createWhileStatement(const JSTokenLocation& location, ExpressionNode* expr, StatementNode* statement, int startLine, int endLine) argument
491 createDoWhileStatement(const JSTokenLocation& location, StatementNode* statement, ExpressionNode* expr, int startLine, int endLine) argument
498 createLabelStatement(const JSTokenLocation& location, const Identifier* ident, StatementNode* statement, const JSTextPosition& start, const JSTextPosition& end) argument
505 createWithStatement(const JSTokenLocation& location, ExpressionNode* expr, StatementNode* statement, unsigned start, const JSTextPosition& end, unsigned startLine, unsigned endLine) argument
513 createThrowStatement(const JSTokenLocation& location, ExpressionNode* expr, const JSTextPosition& start, const JSTextPosition& end) argument
521 createDebugger(const JSTokenLocation& location, int startLine, int endLine) argument
528 createConstStatement(const JSTokenLocation& location, ConstDeclNode* decls, int startLine, int endLine) argument
535 appendConstDecl(const JSTokenLocation& location, ConstDeclNode* tail, const Identifier* name, ExpressionNode* initializer) argument
556 combineCommaNodes(const JSTokenLocation& location, ExpressionNode* list, ExpressionNode* init) argument
592 appendBinaryOperation(const JSTokenLocation& location, int& operandStackDepth, int&, const BinaryOperand& lhs, const BinaryOperand& rhs) argument
639 createAssignment(const JSTokenLocation& location, int& assignmentStackDepth, ExpressionNode* rhs, int initialAssignmentCount, int currentAssignmentCount, const JSTextPosition& lastTokenEnd) argument
653 createDeconstructingAssignment(const JSTokenLocation& location, PassRefPtr<DeconstructionPatternNode> pattern, ExpressionNode* initializer) argument
663 appendArrayPatternSkipEntry(ArrayPattern node, const JSTokenLocation& location) argument
668 appendArrayPatternEntry(ArrayPattern node, const JSTokenLocation& location, DeconstructionPattern pattern) argument
678 appendObjectPatternEntry(ObjectPattern node, const JSTokenLocation& location, bool wasString, const Identifier& identifier, DeconstructionPattern pattern) argument
719 createNumber(const JSTokenLocation& location, double d) argument
734 makeTypeOfNode(const JSTokenLocation& location, ExpressionNode* expr) argument
743 makeDeleteNode(const JSTokenLocation& location, ExpressionNode* expr, const JSTextPosition& start, const JSTextPosition& divot, const JSTextPosition& end) argument
760 makeNegateNode(const JSTokenLocation& location, ExpressionNode* n) argument
771 makeBitwiseNotNode(const JSTokenLocation& location, ExpressionNode* expr) argument
778 makeMultNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
795 makeDivNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
805 makeModNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
815 makeAddNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
822 makeSubNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
832 makeLeftShiftNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
839 makeRightShiftNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
846 makeURightShiftNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
853 makeBitOrNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
860 makeBitAndNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
867 makeBitXOrNode(const JSTokenLocation& location, ExpressionNode* expr1, ExpressionNode* expr2, bool rightHasAssignments) argument
874 makeFunctionCallNode(const JSTokenLocation& location, ExpressionNode* func, ArgumentsNode* args, const JSTextPosition& divotStart, const JSTextPosition& divot, const JSTextPosition& divotEnd) argument
907 makeBinaryNode(const JSTokenLocation& location, int token, std::pair<ExpressionNode*, BinaryOpInfo> lhs, std::pair<ExpressionNode*, BinaryOpInfo> rhs) argument
989 makeAssignNode(const JSTokenLocation& location, ExpressionNode* loc, Operator op, ExpressionNode* expr, bool locHasAssignments, bool exprHasAssignments, const JSTextPosition& start, const JSTextPosition& divot, const JSTextPosition& end) argument
1026 makePrefixNode(const JSTokenLocation& location, ExpressionNode* expr, Operator op, const JSTextPosition& start, const JSTextPosition& divot, const JSTextPosition& end) argument
1031 makePostfixNode(const JSTokenLocation& location, ExpressionNode* expr, Operator op, const JSTextPosition& start, const JSTextPosition& divot, const JSTextPosition& end) argument
[all...]
/macosx-10.10.1/libclosure-65/objectTests/
H A Dassignweakgc.m22 id objc_assign_weak(id value, id *location) {
24 *location = value;
28 id objc_read_weak(id *location) {
30 return *location;
H A Dassignweakgcivar.m22 id objc_assign_weak(id value, id *location) {
24 *location = value;
28 id objc_read_weak(id *location) {
30 return *location;
H A Dreadweakgc.m20 id objc_assign_weak(id value, id *location) {
22 *location = value;
26 id objc_read_weak(id *location) {
28 return *location;
H A Dreadweakgcivar.m20 id objc_assign_weak(id value, id *location) {
22 *location = value;
26 id objc_read_weak(id *location) {
28 return *location;
/macosx-10.10.1/dcerpc-61/dcerpc/idl_compiler/
H A Dastp_exp.c100 parser_location_p location ATTRIBUTE_UNUSED,
114 parser_location_p location,
120 exp->exp.constant.val.other = AST_char_constant(location, value);
126 parser_location_p location ATTRIBUTE_UNUSED,
139 parser_location_p location,
145 exp->exp.constant.val.other = AST_string_constant(location, string);
151 parser_location_p location
156 exp->exp.constant.val.other = AST_null_constant(location);
162 parser_location_p location,
168 exp->exp.constant.val.other = AST_boolean_constant(location, valu
112 AST_exp_char_constant( parser_location_p location, char value ) argument
137 AST_exp_string_constant( parser_location_p location, STRTAB_str_t string ) argument
160 AST_exp_boolean_constant( parser_location_p location, boolean value ) argument
189 AST_constant_from_exp( parser_location_p location, AST_exp_n_t * exp ) argument
222 ASTP_expr_is_simple( parser_location_p location, AST_exp_n_t * exp ) argument
287 ASTP_expr_integer_value( parser_location_p location, AST_exp_n_t * exp ) argument
333 ASTP_evaluate_expr( parser_location_p location, AST_exp_n_t * exp, boolean constant_only ) argument
[all...]
H A Dastp_sim.c125 parser_location_p location,
142 attr_node_p->source_line = location->lineno ;
149 parser_location_p location,
163 attr_node_p->source_line = location->lineno ;
170 parser_location_p location,
182 attr_node_p->b.expr = AST_expression(location,
188 attr_node_p->source_line = location->lineno;
205 parser_location_p location,
211 const_node_ptr = AST_constant_node(location, AST_boolean_const_k);
228 parser_location_p location,
122 AST_array_bound_info( parser_location_p location, NAMETABLE_id_t name, ASTP_attr_k_t kind, boolean is_pointer ) argument
146 AST_array_bound_from_expr( parser_location_p location, AST_exp_n_t * exp, ASTP_attr_k_t kind ) argument
167 AST_range_from_expr( parser_location_p location, AST_exp_n_t * exp_low_val, AST_exp_n_t * exp_high_val ) argument
202 AST_boolean_constant( parser_location_p location, boolean value ) argument
225 AST_char_constant( parser_location_p location, char value ) argument
249 AST_constant_node( parser_location_p location, AST_constant_k_t kind ) argument
276 AST_create_operation_node( parser_location_p location, NAMETABLE_id_t op_name, AST_parameter_n_t *parameters ) argument
421 AST_declarator_to_param( parser_location_p location, ASTP_attributes_t *attributes, AST_type_n_t *type, ASTP_declarator_n_t *declarator ) argument
498 AST_enumerator_node( parser_location_p location, AST_constant_n_t *constant_list, AST_type_k_t size ATTRIBUTE_UNUSED ) argument
571 AST_export_node( parser_location_p location, ASTP_node_t *export_ptr, AST_export_k_t kind ) argument
629 AST_cpp_quote_node( parser_location_p location, STRTAB_str_t text ) argument
662 AST_finish_constant_node( parser_location_p location, AST_constant_n_t *constant_ptr, ASTP_declarator_n_t *declarator, AST_type_n_t *type_ptr ) argument
895 AST_function_node( parser_location_p location, AST_type_n_t *result_type, NAMETABLE_id_t op_name, AST_parameter_n_t *parameters ) argument
937 AST_include_node( parser_location_p location, STRTAB_str_t include_file, STRTAB_str_t include_file_name ) argument
964 AST_import_node( parser_location_p location, STRTAB_str_t imported_file ) argument
991 AST_exception_node( parser_location_p location, NAMETABLE_id_t excep_name ) argument
1098 AST_integer_constant( parser_location_p location, long int value ) argument
1212 AST_lookup_named_type( parser_location_p location, NAMETABLE_id_t type_name ) argument
1332 AST_named_constant( parser_location_p location, NAMETABLE_id_t const_name ) argument
1392 AST_operation_node( parser_location_p location, AST_type_n_t *base_type, ASTP_declarator_n_t *declarator, ASTP_attributes_t *attributes ) argument
1541 AST_parameter_node( parser_location_p location, NAMETABLE_id_t identifier ) argument
1565 AST_finish_interface_node( parser_location_p location, AST_interface_n_t *interface_node_p ) argument
1582 AST_represent_as_node( parser_location_p location, NAMETABLE_id_t name ) argument
1603 AST_cs_char_node( parser_location_p location, NAMETABLE_id_t name ) argument
1752 AST_string_constant( parser_location_p location, STRTAB_str_t value ) argument
1777 AST_type_node( parser_location_p location, AST_type_k_t kind ) argument
1893 AST_types_to_exports( parser_location_p location, AST_type_p_n_t *type_p_list ) argument
2054 AST_enum_constant( parser_location_p location, NAMETABLE_id_t identifier, AST_exp_n_t * exp ) argument
2101 AST_pipe_node( parser_location_p location, AST_type_n_t *pipe_type ) argument
[all...]
H A Dastp.h465 parser_location_p location,
470 parser_location_p location,
478 parser_location_p location,
484 parser_location_p location,
489 parser_location_p location,
494 parser_location_p location
498 parser_location_p location,
503 parser_location_p location,
508 parser_location_p location,
513 parser_location_p location,
[all...]
H A Dastp_cpx.c108 parser_location_p location,
114 parser_location_p location,
120 parser_location_p location,
125 parser_location_p location,
152 parser_location_p location,
174 log_error (location->lineno, NIDL_NAMEPREVDECLAT, identifier,
178 log_error (location->lineno, NIDL_NAMEALRDEC, identifier, NULL);
198 parser_location_p location,
230 AST_clone_constant(location, upper_bound);
257 parser_location_p location,
147 ASTP_add_tag_binding( parser_location_p location, NAMETABLE_id_t name, AST_type_n_t *type_node ) argument
193 ASTP_array_index_node( parser_location_p location, AST_constant_n_t *lower_bound, ASTP_bound_t lower_bound_type, AST_constant_n_t *upper_bound, ASTP_bound_t upper_bound_type ) argument
252 AST_array_index_node( parser_location_p location, unsigned short array_size ) argument
285 AST_array_node( parser_location_p location, AST_type_n_t *element_type_ptr ) argument
340 AST_field_ref_node( parser_location_p location, unsigned short dimension ) argument
375 AST_structure_node( parser_location_p location, AST_field_n_t *field_list, NAMETABLE_id_t identifier ) argument
553 AST_case_label_node( parser_location_p location, AST_constant_n_t *case_label ) argument
618 AST_disc_union_node( parser_location_p location, NAMETABLE_id_t identifier, NAMETABLE_id_t union_name, NAMETABLE_id_t disc_name, AST_type_n_t *disc_type, AST_arm_n_t *arm_list ) argument
776 AST_arm_node( parser_location_p location, NAMETABLE_id_t name, AST_case_label_n_t *label, AST_type_n_t *type ) argument
820 AST_field_node( parser_location_p location, NAMETABLE_id_t field_name ) argument
861 AST_declarators_to_fields( parser_location_p location, ASTP_declarator_n_t *declarators_ptr, AST_type_n_t *type_ptr, ASTP_attributes_t *attributes ) argument
925 AST_declarator_to_arm( parser_location_p location, AST_type_n_t *type_ptr, ASTP_declarator_n_t *declarator, ASTP_attributes_t *attributes ) argument
1038 AST_type_from_tag( parser_location_p location, AST_type_k_t kind, NAMETABLE_id_t identifier ) argument
1128 ASTP_patch_tag_references( parser_location_p location, AST_interface_n_t *interface_node_ptr ) argument
1279 ASTP_check_chain( parser_location_p location, AST_interface_n_t *interface_node_ptr, AST_type_p_n_t *active_type_chain, AST_type_n_t *current_type_node_ptr ) argument
1333 AST_find_self_reference( parser_location_p location, AST_interface_n_t *interface_node_ptr, AST_type_p_n_t *active_type_chain, AST_type_n_t *current_type_node_ptr ) argument
1449 ASTP_process_sp_type( parser_location_p location, AST_interface_n_t *interface_node_ptr, AST_type_n_t *type_node_ptr ) argument
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/
H A Dcomment.rb23 attr_accessor :location
28 alias file location # :nodoc:
43 # +location+.
45 def initialize text = nil, location = nil
46 @location = location
64 other.text == @text and other.location == @location
151 location = @location
[all...]
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DAtomics.h75 inline bool weakCompareAndSwap(volatile unsigned* location, unsigned expected, unsigned newValue) argument
78 return InterlockedCompareExchange(reinterpret_cast<LONG*>(const_cast<unsigned*>(location)), static_cast<LONG>(newValue), static_cast<LONG>(expected)) == static_cast<LONG>(expected);
80 return InterlockedCompareExchange(reinterpret_cast<LONG volatile*>(location), static_cast<LONG>(newValue), static_cast<LONG>(expected)) == static_cast<LONG>(expected);
84 inline bool weakCompareAndSwap(void*volatile* location, void* expected, void* newValue) argument
86 return InterlockedCompareExchangePointer(location, newValue, expected) == expected;
89 inline bool weakCompareAndSwap(volatile unsigned* location, unsigned expected, unsigned newValue)
97 : "+a"(expected), "=q"(result), "+m"(*location)
111 : "+Q"(*location), "=&r"(result), "=&r"(tmp)
125 : "+r"(location), "=&r"(result), "=&r"(tmp)
139 : "+m"(*location), "
210 weakCompareAndSwapUIntPtr(volatile uintptr_t* location, uintptr_t expected, uintptr_t newValue) argument
215 weakCompareAndSwapSize(volatile size_t* location, size_t expected, size_t newValue) argument
287 weakCompareAndSwap(uint8_t* location, uint8_t expected, uint8_t newValue) argument
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/
H A DWebGrammarDetail.h39 static PassRefPtr<WebGrammarDetail> create(int location, int length, API::Array* guesses, const String& userDescription);
42 int location() const { return m_grammarDetail.location; } function in class:WebKit::WebGrammarDetail
50 WebGrammarDetail(int location, int length, API::Array* guesses, const String& userDescription);
/macosx-10.10.1/dtrace-147/lockstat/
H A Dsym.c21 uintptr_t location; member in struct:__anon8235
32 add_symbol(uintptr_t location, size_t length, char const* name) argument
40 sym->location = location;
55 assert(table_range.location > NULL);
90 if (add_symbol(table_range.location + i, 0, name) < 0) {
125 if (!last_section_range.location)
126 last_section_range = CSRangeMake(last_segment_range.location, 0);
129 res->location = CSRangeMax(last_section_range);
130 res->length = CSRangeMax(last_segment_range) - res->location;
[all...]
/macosx-10.10.1/WebKit-7600.1.25/ios/Misc/
H A DWebNSStringExtrasIOS.m64 if (firstColonRange.location != NSNotFound && (firstSlashRange.location == NSNotFound || firstSlashRange.location >= firstColonRange.location)) {
82 else if ([workString length] > firstColonRange.location + 1) {
86 unichar c = [workString characterAtIndex:firstColonRange.location + 1];
125 } else if (firstAtRange.location != NSNotFound && firstAtRange.location < firstSlashRange.location) {
134 } else if (firstDotRange.location !
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A D_WKActivatedElementInfoInternal.h36 - (instancetype)_initWithType:(_WKActivatedElementType)type URL:(NSURL *)url location:(CGPoint)location title:(NSString *)title rect:(CGRect)rect image:(WebKit::ShareableBitmap*)image;
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/CloudKeychainProxy/scripts/
H A Dsoscopysshkeys7 locations=(`mobdev list | awk '/UDID/ { gsub(/^(.*location ID = )+|(,.*)+$/, ""); print}'`)
14 for location in $locations
16 echo 'Copying to location '"$location"
18 tcprelay --portoffset $port_offset --locationid $location ssh --quiet &
/macosx-10.10.1/JavaScriptCore-7600.1.17/jit/
H A DJITWriteBarrier.h60 void setLocation(CodeLocationDataLabelPtr location) argument
63 m_location = location;
66 CodeLocationDataLabelPtr location() const function in class:JSC::JITWriteBarrierBase
80 void set(VM& vm, CodeLocationDataLabelPtr location, JSCell* owner, JSCell* value) argument
83 m_location = location;
84 ASSERT(((!!m_location) && m_location.executableAddress() != JITWriteBarrierFlag) || (location.executableAddress() == m_location.executableAddress()));
119 void set(VM& vm, CodeLocationDataLabelPtr location, JSCell* owner, T* value) argument
123 JITWriteBarrierBase::set(vm, location, owner, value);
127 set(vm, location(), owner, value);

Completed in 160 milliseconds

1234567891011>>