HomeSort by relevance Sort by last modified time
    Searched defs:eval (Results 1 - 25 of 50) sorted by null

1 2

  /external/v8/test/preparser/
nonstrict-eval.js 28 // Eval restrictions should not trigger outside of strict-mode code.
30 var eval = 42; variable
31 eval = eval++;
32 eval += --eval;
33 eval -= ++eval;
34 eval *= eval--
35 function eval(eval) {}; function
44 var eval = 42; variable
    [all...]
  /external/v8/test/mjsunit/
eval.js 28 assertEquals(void 0, eval());
29 assertEquals(4, eval(4));
32 assertTrue(f === eval(f));
37 assertEquals(4, eval('2 + 2', count++));
41 eval('hest 7 &*^*&^');
48 // eval has special evaluation order for consistency with other browsers.
49 global_eval = eval;
50 assertEquals(void 0, eval(eval("var eval = function f(x) { return 'hest';}"))
54 eval = function(x, y) { return x + y; }; function
    [all...]
strict-mode-implicit-receiver.js 97 // Check calls to eval within a function with 'undefined' as receiver.
100 return eval("this");
141 // Test calls of aliased eval.
143 var eval = function() { return this; }
146 assertEquals('object', typeof eval());
152 function outer_eval_conversion3(eval, expected) {
155 var x = eval("this");
163 function strict_eval(s) { "use strict"; return eval(s); }
164 function non_strict_eval(s) { return eval(s); }
171 outer_eval_conversion3(eval, 'undefined')
    [all...]
  /external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/
Condition.java 33 boolean eval() throws BuildException; method in interface:Condition
Os.java 183 public boolean eval() throws BuildException { method in class:Os
  /external/srec/srec/Semproc/include/
SR_SemanticProcessorImpl.h 50 ExpressionEvaluator* eval; member in struct:SR_SemanticProcessorImpl_t
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerCallFrame.cpp 92 EvalExecutable* eval = EvalExecutable::create(m_callFrame, makeSource(script), m_callFrame->codeBlock()->isStrictMode()); local
98 JSValue result = globalData.interpreter->execute(eval, m_callFrame, thisObject(), m_callFrame->scopeChain());
Debugger.cpp 129 EvalExecutable* eval = EvalExecutable::create(globalCallFrame, makeSource(script), false); local
130 if (!eval) {
136 JSValue result = globalData.interpreter->execute(eval, globalCallFrame, globalObject, globalCallFrame->scopeChain());
  /external/apache-xml/src/main/java/org/apache/xpath/
CachedXPathAPI.java 183 XObject list = eval(contextNode, str, namespaceNode);
222 XObject list = eval(contextNode, str, namespaceNode);
243 public XObject eval(Node contextNode, String str) method in class:CachedXPathAPI
246 return eval(contextNode, str, contextNode);
269 public XObject eval(Node contextNode, String str, Node namespaceNode) method in class:CachedXPathAPI
318 public XObject eval( method in class:CachedXPathAPI
XPathAPI.java 128 XObject list = eval(contextNode, str, namespaceNode);
167 XObject list = eval(contextNode, str, namespaceNode);
188 public static XObject eval(Node contextNode, String str) method in class:XPathAPI
191 return eval(contextNode, str, contextNode);
214 public static XObject eval(Node contextNode, String str, Node namespaceNode) method in class:XPathAPI
266 public static XObject eval( method in class:XPathAPI
  /external/clang/test/CXX/temp/temp.arg/temp.arg.template/
p3-0x.cpp 3 template <class T> struct eval; // expected-note 3{{template is declared here}}
6 struct eval<TT<T1, Rest...>> { }; struct
14 eval<A<int>> eA;
15 eval<B<int, float>> eB;
16 eval<C<17>> eC; // expected-error{{implicit instantiation of undefined template 'eval<C<17> >'}}
17 eval<D<int, 17>> eD; // expected-error{{implicit instantiation of undefined template 'eval<D<int, 17> >'}}
18 eval<E<int, float>> eE; // expected-error{{implicit instantiation of undefined template 'eval<E<int, float, 17> >}
    [all...]
  /external/skia/src/utils/
SkBoundaryPatch.cpp 32 SkPoint SkBoundaryPatch::eval(SkScalar unitU, SkScalar unitV) { function in class:SkBoundaryPatch
34 SkPoint u = SkPointInterp(b->eval(SkBoundary::kLeft, SK_Scalar1 - unitV),
35 b->eval(SkBoundary::kRight, unitV),
37 SkPoint v = SkPointInterp(b->eval(SkBoundary::kTop, unitU),
38 b->eval(SkBoundary::kBottom, SK_Scalar1 - unitU),
55 *verts++ = this->eval(x * invR, yy);
65 SkPoint SkLineBoundary::eval(Edge e, SkScalar t) { function in class:SkLineBoundary
70 SkPoint SkCubicBoundary::eval(Edge e, SkScalar t) { function in class:SkCubicBoundary
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathExpressionImpl.java 97 public Object eval(Object item, QName returnType) method in class:XPathExpressionImpl
99 XObject resultObject = eval ( item );
103 private XObject eval ( Object contextItem ) method in class:XPathExpressionImpl
184 return eval( item, returnType);
296 return eval( document, returnType );
XPathImpl.java 193 private XObject eval(String expression, Object contextItem) method in class:XPathImpl
281 XObject resultObject = eval( expression, item );
476 XObject resultObject = eval( expression, document );
  /external/llvm/test/Scripts/
coff-dump.py 328 def eval(): function in function:read_value
340 return eval() + eval()
342 return eval() - eval()
344 return eval() * eval()
346 return eval() / eval()
348 return eval() & eval(
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
Dominators.java 31 * could be changed to O(n * ack(n)) with a small change to the link and eval,
153 private SsaBasicBlock eval(SsaBasicBlock v) { method in class:Dominators
207 int predSemidom = info[eval(predBlock).getIndex()].semidom;
229 SsaBasicBlock U = eval(last);
  /external/clang/include/clang/StaticAnalyzer/Core/
Checker.h 336 namespace eval { namespace in namespace:clang::ento
386 } // end eval namespace
  /external/clang/test/SemaCXX/
constant-expression.cpp 12 enum Enum { eval = 1 }; enumerator in enum:Enum
14 const Enum ceval = eval;
17 static const Enum seval = eval;
23 v2 = eval,
36 b2 : eval,
49 i2 = eval,
63 case 100 + eval:
80 template struct C<1, eval>;
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
Dominators.java 31 * could be changed to O(n * ack(n)) with a small change to the link and eval,
153 private SsaBasicBlock eval(SsaBasicBlock v) { method in class:Dominators
207 int predSemidom = info[eval(predBlock).getIndex()].semidom;
229 SsaBasicBlock U = eval(last);
  /frameworks/base/services/java/com/android/server/usb/
UsbHostManager.java 119 int intf, endp, ival = 0, eval = 0; local
129 int address = endpointValues[eval++];
130 int attributes = endpointValues[eval++];
131 int maxPacketSize = endpointValues[eval++];
132 int interval = endpointValues[eval++];
  /external/webkit/Source/WebCore/css/
MediaQueryEvaluator.cpp 133 bool MediaQueryEvaluator::eval(const MediaList* mediaList, CSSStyleSelector* styleSelector) const function in class:WebCore::MediaQueryEvaluator
142 // iterate over queries, stop if any of them eval to true (OR semantics)
152 // iterate through expressions, stop if any of them eval to false
156 bool exprResult = eval(exps->at(j).get());
519 bool MediaQueryEvaluator::eval(const MediaQueryExp* expr) const function in class:WebCore::MediaQueryEvaluator
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 
  /ndk/sources/host-tools/sed-4.2.1/sed/
sed.h 128 unsigned print : 2; /* 'p' option given (before/after eval) */
129 unsigned eval : 1; /* 'e' option given */ member in struct:subst
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkGdbLaunchDelegate.java 407 String eval = manager.performStringSubstitution(expr); local
409 AdtPlugin.printToConsole("Substitute: ", expr, " --> ", eval);
412 return eval;

Completed in 918 milliseconds

1 2