HomeSort by relevance Sort by last modified time
    Searched full:functionbody (Results 1 - 15 of 15) sorted by null

  /external/webkit/Source/JavaScriptCore/runtime/
FunctionPrototype.cpp 70 static inline void insertSemicolonIfNeeded(UString& functionBody)
72 ASSERT(functionBody[0] == '{');
73 ASSERT(functionBody[functionBody.length() - 1] == '}');
75 for (size_t i = functionBody.length() - 2; i > 0; --i) {
76 UChar ch = functionBody[i];
79 functionBody = makeUString(functionBody.substringSharingImpl(0, i + 1), ";", functionBody.substringSharingImpl(i + 1, functionBody.length() - (i + 1)))
    [all...]
  /external/webkit/Source/WebCore/bridge/
testM.js 8 var functionBody = 'return arg1*arg2;'
10 myInterface.setJSObject_(new Function ("arg1","arg2",functionBody));
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-118849.js 43 * Function ([arg1[, arg2[, ... argN]],] functionBody)
50 * functionBody
77 Function(cnNUMBER); // cnNUMBER is a valid functionBody
  /external/webkit/Source/WebCore/editing/
SpellingCorrectionController.h 76 #define UNLESS_ENABLED(functionBody) ;
78 #define UNLESS_ENABLED(functionBody) functionBody
  /external/webkit/Source/JavaScriptCore/API/tests/
testapi.c     [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 323 BytecodeGenerator::BytecodeGenerator(FunctionBodyNode* functionBody, ScopeChainNode* scopeChain, SymbolTable* symbolTable, CodeBlock* codeBlock)
329 , m_scopeNode(functionBody)
364 if (m_codeBlock->needsFullScopeChain() || functionBody->usesArguments()) {
391 const DeclarationStacks::FunctionStack& functionStack = functionBody->functionStack();
392 const DeclarationStacks::VarStack& varStack = functionBody->varStack();
397 if (functionBody->hasCapturedVariables()) {
401 if (functionBody->captures(ident)) {
413 if (functionBody->captures(ident))
417 bool canLazilyCreateFunctions = !functionBody->needsActivationForMoreThanVariables() && !m_shouldEmitDebugHooks;
429 if (!functionBody->captures(ident))
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JIT.cpp 487 Label functionBody = label();
501 jump(functionBody);
JITStubs.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/parser/
SyntaxChecker.h 106 typedef int FunctionBody;
ASTBuilder.h 102 typedef FunctionBodyNode* FunctionBody;
    [all...]
JSParser.cpp 65 #define TreeFunctionBody typename TreeBuilder::FunctionBody
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 348 void *FunctionBody; // Beginning of the function's allocation.
351 EmittedCode() : FunctionBody(0), Code(0), ExceptionTable(0) {}
792 EmittedFunctions[F.getFunction()].FunctionBody = BufferBegin;
    [all...]
  /external/v8/src/
preparser.cc 296 // 'function' Identifier '(' FormalParameterListopt ')' '{' FunctionBody '}'
    [all...]
parser.cc     [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]

Completed in 249 milliseconds