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

1 2

  /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...]
  /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 25 SkPoint SkBoundaryPatch::eval(SkScalar unitU, SkScalar unitV) { function in class:SkBoundaryPatch
27 SkPoint u = SkPointInterp(b->eval(SkBoundary::kLeft, SK_Scalar1 - unitV),
28 b->eval(SkBoundary::kRight, unitV),
30 SkPoint v = SkPointInterp(b->eval(SkBoundary::kTop, unitU),
31 b->eval(SkBoundary::kBottom, SK_Scalar1 - unitU),
48 *verts++ = this->eval(x * invR, yy);
58 SkPoint SkLineBoundary::eval(Edge e, SkScalar t) { function in class:SkLineBoundary
63 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 306 namespace eval { namespace in namespace:clang::ento
356 } // 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>;
  /frameworks/base/services/java/com/android/server/usb/
UsbHostManager.java 122 int intf, endp, ival = 0, eval = 0; local
132 int address = endpointValues[eval++];
133 int attributes = endpointValues[eval++];
134 int maxPacketSize = endpointValues[eval++];
135 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/skia/src/core/
SkGeometry.cpp 1068 SkPoint eval; local
1083 SkEvalCubicAt(cubic, t, &eval, NULL, NULL);
1084 if (pt.fY > eval.fY) {
1090 && !SkScalarNearlyZero(eval.fY - pt.fY));
1091 if (pt.fX <= eval.fX) {
    [all...]
  /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
  /external/webkit/Source/WebCore/inspector/front-end/
ExtensionAPI.js 368 eval: function(expression, callback)
  /external/icu4c/i18n/
astro.cpp 724 virtual double eval(CalendarAstronomer& a) { return a.getSunLongitude(); } function in class:SunTimeAngleFunc
741 virtual void eval(CalendarAstronomer::Equatorial& result, CalendarAstronomer&a) { a.getSunPosition(result); } function in class:RiseSetCoordFunc
1220 virtual double eval(CalendarAstronomer&a) { return a.getMoonAge(); } function in class:MoonTimeAngleFunc
1263 virtual void eval(CalendarAstronomer::Equatorial& result, CalendarAstronomer&a) { result = a.getMoonPosition(); } function in class:MoonRiseSetCoordFunc
    [all...]
  /external/mksh/src/
eval.c 1 /* $OpenBSD: eval.c,v 1.35 2010/03/24 08:27:26 fgsch Exp $ */
25 __RCSID("$MirOS: src/bin/mksh/eval.c,v 1.90 2010/07/17 22:09:33 tg Exp $");
121 eval(const char **ap, int f) function
    [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp 406 EvalExecutable* eval = codeBlock->evalCodeCache().get(callFrame, codeBlock->ownerExecutable(), codeBlock->isStrictMode(), programSource, scopeChain, exceptionValue); local
408 ASSERT(!eval == exceptionValue);
409 if (UNLIKELY(!eval))
412 return callFrame->globalData().interpreter->execute(eval, callFrame, callFrame->uncheckedR(codeBlock->thisRegister()).jsValue().toThisObject(callFrame), callFrame->registers() - registerFile->start() + registerOffset, scopeChain);
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
cpp.c 396 static int eval(int token, int prec, int *res, int *err, yystypepp * yylvalpp) function
420 return eval(token, prec, res, err, yylvalpp);
429 token = eval(token, MIN_PREC, res, err, yylvalpp);
442 token = eval(token, UNARY, res, err, yylvalpp);
458 token = eval(token, binop[i].prec, res, err, yylvalpp);
467 } // eval
480 token = eval(token, MIN_PREC, &res, &err, yylvalpp);
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndldic.c 1061 NJ_UINT32 max_value, eval, current; local
1113 eval = current
1938 NJ_UINT32 max_value, eval, current; local
    [all...]

Completed in 2472 milliseconds

1 2