Searched refs:expression (Results 151 - 175 of 274) sorted by relevance

1234567891011

/macosx-10.10/emacs-93/emacs/src/
H A Dsyntax.c75 int thislevelstart; /* Char number of most recent start-of-expression at current level */
76 int prevlevelstart; /* Char number of start of containing expression */
80 Lisp_Object levelstarts; /* Char numbers of starts-of-expression
1012 $ paired delimiter. ' expression quote or prefix operator.
1347 STRING is like the inside of a `[...]' in a regular expression
2370 build_string ("Containing expression ends prematurely"),
2521 build_string ("Containing expression ends prematurely"),
2835 /* Duplicate code to avoid a complex if-expression
/macosx-10.10/vim-55/runtime/ftplugin/
H A DAppendMatchGroup.vim16 " :h regular-expression
/macosx-10.10/vim-55/runtime/indent/
H A Dpascal.vim67 " The bracketed expression with the underline is a routine
/macosx-10.10/vim-55/runtime/syntax/
H A Daap.vim125 " A Python expression is enclosed in backticks.
H A Dmf.vim18 " Page 210: 'numeric expression'
/macosx-10.10/CPANInternal-159.1/DateTime-Format-Builder-0.80/lib/DateTime/Format/Builder/Parser/
H A DRegex.pm24 B<regex> is a regular expression that should capture
/macosx-10.10/Security-57031.1.35/SecurityTests/regressions/inc/
H A DTest.pm268 expression. If its value is true, the test passes; if false,
279 The expression is evaluated in scalar context. So the following will
286 A special case is if the expression is a subroutine reference (in either
849 returns true, then the larger expression S<< C<<
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSGrammar.y.in592 // If restrictor is specified, media query expression is invalid.
593 // Create empty media query expression and continue parsing media query.
1624 std::unique_ptr<CSSParserValueList> expression($1);
1626 if (expression && $2) {
1627 $$ = expression.release();
1660 std::unique_ptr<CSSParserValueList> expression($4);
1662 if (list && expression) {
1669 $$->extend(*expression);
/macosx-10.10/JavaScriptCore-7600.1.17/bytecompiler/
H A DBytecodeGenerator.cpp1732 auto expression = static_cast<SpreadExpressionNode*>(n->m_expr)->expression(); local
1734 if (expression->isResolveNode() && willResolveToArguments(static_cast<ResolveNode*>(expression)->identifier()) && !symbolTable().slowArguments())
1737 argumentRegister = expression->emitBytecode(*this, callArguments.argumentRegister(0));
1870 auto expression = static_cast<SpreadExpressionNode*>(n->m_expr)->expression(); local
1872 if (expression->isResolveNode() && willResolveToArguments(static_cast<ResolveNode*>(expression)->identifier()) && !symbolTable().slowArguments())
1875 argumentRegister = expression
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/parser/
H A DParser.cpp414 semanticFailIfTrue(match(CLOSEPAREN), "Must provide an expression as a do-while loop condition");
432 semanticFailIfTrue(match(CLOSEPAREN), "Must provide an expression as a while loop condition");
475 failIfFalse(initializer, "Expected expression as the intializer for the variable '", name->impl(), "'");
722 for (var IDENT in expression) statement
754 failIfFalse(expr, "Expected expression to enumerate");
798 failIfFalse(condition, "Cannot parse for loop condition expression");
800 consumeOrFail(SEMICOLON, "Expected a ';' after the for loop condition expression");
805 failIfFalse(increment, "Cannot parse for loop iteration expression");
903 // We do the auto semicolon check before attempting to parse expression
912 failIfFalse(expr, "Cannot parse the return expression");
1388 TreeExpression expression = parseExpression(context); local
1441 TreeExpression expression = parseExpression(context); local
[all...]
H A DASTBuilder.h234 ExpressionNode* createSpreadExpression(const JSTokenLocation& location, ExpressionNode* expression, const JSTextPosition& start, const JSTextPosition& divot, const JSTextPosition& end) argument
236 auto node = new (m_vm) SpreadExpressionNode(location, expression);
427 StatementNode* createReturnStatement(const JSTokenLocation& location, ExpressionNode* expression, const JSTextPosition& start, const JSTextPosition& end) argument
429 ReturnNode* result = new (m_vm) ReturnNode(location, expression);
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DSourceCodeTextEditor.js82 WebInspector.SourceCodeTextEditor.HoveredExpressionHighlightStyleClassName = "hovered-expression-highlight";
1076 console.assert(candidate.expression);
1112 DebuggerAgent.evaluateOnCallFrame.invoke({callFrameId: WebInspector.debuggerManager.activeCallFrame.id, expression: candidate.expression, objectGroup: "popover", doNotPauseOnExceptionsAndMuteConsole: true}, populate.bind(this));
/macosx-10.10/Security-57031.1.35/SecurityTests/regressions/inc/Test/
H A DSimple.pm58 ok() is given an expression (in this case C<$foo eq $bar>). If it's
H A DBuilder.pm894 Takes a quoted regular expression produced by qr//, or a string
895 representing a regular expression.
898 regular expression, or undef if it's argument is not recognised.
/macosx-10.10/emacs-93/emacs/etc/
H A Dsurvival.tex230 \key{M-C-s} regular expression search
231 \key{M-C-r} reverse regular expression search
H A Dfr-survival.tex232 \key{M-C-s} recherche par expression rationnelle
233 \key{M-C-r} recherche par expression rationnelle vers l'arri\`ere
/macosx-10.10/libunwind-35.3/src/
H A DDwarfInstructions.hpp117 static pint_t evaluateExpression(pint_t expression, A& addressSpace, const R& registers, pint_t initialStackValue);
428 typename A::pint_t DwarfInstructions<A,R>::evaluateExpression(pint_t expression, A& addressSpace, argument
432 pint_t p = expression;
433 pint_t expressionEnd = expression+20; // just need something until length is read
907 if (log) fprintf(stderr, "expression evaluates to 0x%llX\n", (uint64_t)*sp);
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/agents/
H A DInspectorDebuggerAgent.cpp519 void InspectorDebuggerAgent::evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<Inspector::TypeBuilder::Runtime::RemoteObject>& result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown) argument
534 injectedScript.evaluateOnCallFrame(errorString, m_currentCallStack, callFrameId, expression, objectGroup ? *objectGroup : "", includeCommandLineAPI ? *includeCommandLineAPI : false, returnByValue ? *returnByValue : false, generatePreview ? *generatePreview : false, &result, wasThrown);
/macosx-10.10/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h156 // expression is a null pointer literal (i.e. NULL or any 0-valued
165 // type, the only expression a user can write that has type Secret* is
756 // variable declared in a conditional expression always being NULL in
871 // MakeFrom() is an expression whose type is From. We cannot simply
876 // These two functions are overloaded. Given an expression
925 // When the compiler sees expression IsContainerTest<C>(0), if C is an
934 // The value of the expression is insignificant.
960 // overload only apply when a particular expression is true, add
961 // "typename EnableIf<expression>::type* = 0" as the last parameter.
1192 // Implements Boolean test assertions such as EXPECT_TRUE. expression ca
[all...]
/macosx-10.10/BerkeleyDB-21/db/perl/BerkeleyDB/t/Test/
H A DBuilder.pm619 Takes a quoted regular expression produced by qr//, or a string
620 representing a regular expression.
623 regular expression, or undef if it's argument is not recognised.
H A DMore.pm270 This simply evaluates any expression (C<$this eq $that> is just a
272 failed. A true expression passes, a false one fails. Very simple.
388 The second argument is a regular expression. It may be given as a
/macosx-10.10/WebCore-7600.1.25/bindings/objc/
H A DPublicDOMInterfaces.h145 - (DOMXPathExpression *)createExpression:(NSString *)expression :(id <DOMXPathNSResolver>)resolver WEBKIT_DEPRECATED_MAC(10_5, 10_5);
146 - (DOMXPathExpression *)createExpression:(NSString *)expression resolver:(id <DOMXPathNSResolver>)resolver WEBKIT_AVAILABLE_MAC(10_5);
148 - (DOMXPathResult *)evaluate:(NSString *)expression :(DOMNode *)contextNode :(id <DOMXPathNSResolver>)resolver :(unsigned short)type :(DOMXPathResult *)inResult WEBKIT_DEPRECATED_MAC(10_5, 10_5);
149 - (DOMXPathResult *)evaluate:(NSString *)expression contextNode:(DOMNode *)contextNode resolver:(id <DOMXPathNSResolver>)resolver type:(unsigned short)type inResult:(DOMXPathResult *)inResult WEBKIT_AVAILABLE_MAC(10_5);
/macosx-10.10/dcerpc-61/dcerpc/idl_compiler/
H A Dastp.h1035 AST_exp_n_t *expression
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Drx.el233 (expression-prefix . ?\')
293 regular expression strings.")
638 "Parse and produce code for regular expression FORM.
639 FORM is a regular expression in sexp form.
812 `expression-prefix' (\\s')
890 regular expression.
/macosx-10.10/emacs-93/emacs/lisp/textmodes/
H A Dtexinfo.el318 ;; To override this example, set either `imenu-generic-expression'
320 (defvar texinfo-imenu-generic-expression
323 "Imenu generic expression for Texinfo mode. See `imenu-generic-expression'.")
516 "Regular expression matching just the Texinfo chapter level headings.")
533 set up so expression commands skip Texinfo bracket groups. To see
614 (make-local-variable 'imenu-generic-expression)
615 (setq imenu-generic-expression texinfo-imenu-generic-expression)

Completed in 511 milliseconds

1234567891011