HomeSort by relevance Sort by last modified time
    Searched refs:FUNCTION (Results 51 - 75 of 152) sorted by null

1 23 4 5 6 7

  /external/chromium_org/v8/src/
codegen.cc 114 PrintF("[generating %s code for %s function: ", kind, ftype);
120 PrintF("%s", info->function()->debug_name()->ToCString().get());
128 PrettyPrinter(info->zone()).PrintProgram(info->function()));
133 AstPrinter(info->zone()).PrintProgram(info->function()));
173 FunctionLiteral* function = info->function(); local
175 code->kind() == Code::FUNCTION;
185 function->start_position());
189 function->end_position() - function->start_position() + 1
    [all...]
token.h 121 K(FUNCTION, "function", 0) \
compiler.cc 226 !function()->flags()->Contains(kDontSelfOptimize) &&
227 !function()->dont_optimize() &&
228 function()->scope()->AllowsLazyCompilation() &&
237 int length = function()->slot_count();
288 // shared function object.
289 ASSERT(info()->shared_info()->code()->kind() == Code::FUNCTION);
292 // shared function info.
297 // generated code for this from the shared function object.
315 // or perform on-stack replacement for function with too many
354 unoptimized.SetFunction(info()->function());
488 Handle<JSFunction> function = info()->closure(); local
1073 Handle<JSFunction> function = info->closure(); local
    [all...]
preparser.cc 168 case Token::FUNCTION:
282 case Token::FUNCTION: {
308 // 'function' Identifier '(' FormalParameterListopt ')' '{' FunctionBody '}'
310 // 'function' '*' Identifier '(' FormalParameterListopt ')'
312 Expect(Token::FUNCTION, CHECK_OK);
444 // The scope of a var/const declared variable anywhere inside a function
445 // is the entire function (ECMA-262, 3rd, 10.1.3, and 12.2). The scope
487 // accept "native function" in the preparser.
559 // function. See ECMA-262, section 12.9, page 67.
806 // Function :
    [all...]
objects-inl.h     [all...]
debug.cc 165 // Set the positions to the end of the function.
332 // function twice might happen when stepping in a function with an exception
333 // handler as the handler and the function is the same.
405 // because caller of this function (Debug::PrepareStep) is expected to
406 // flood the top frame's function with one shot breakpoints.
408 // this function (Debug::PrepareStep) which should flood target function
417 // Check whether the break point is at a position which will exit the function.
444 // Find the builtin debug break function matching the calling conventio
767 Handle<JSFunction> function = local
1389 JSFunction* function = frames_it.frame()->function(); local
1468 JSFunction* function = frames_it.frame()->function(); local
1793 JSFunction* function = functions[i]; local
1798 JSFunction* function = frame->function(); local
1868 JSFunction* function = frame->function(); local
2039 JSFunction* function = JSFunction::cast(obj); local
2094 Handle<JSFunction> function = active_functions[i]; local
2106 Handle<JSFunction> &function = generator_functions[i]; local
2119 Handle<JSFunction> function = active_functions[i]; local
2165 Handle<JSFunction> function; local
    [all...]
disassembler.cc 321 if (code->kind() == Code::FUNCTION) {
full-codegen.h 73 ? info->function()->ast_node_count() : 0,
292 // Type of a member function that generates inline code for a native function.
305 // Helper function to convert a pure value into a test context. The value
314 // Helper function to split control flow and avoid a branch to the
428 // called function was inlined at the site.
468 void EmitCall(Call* expr, CallIC::CallType = CallIC::FUNCTION);
500 // Expects the arguments and the function already pushed.
504 // the given function info.
589 StrictMode strict_mode() { return function()->strict_mode();
590 FunctionLiteral* function() { return info_->function(); } function in class:v8::internal::FullCodeGenerator
    [all...]
parser.cc 259 // Check that the space allocated for function entries is sane.
264 // Check that the total size has room for header and function entries.
975 PrintF("[parsing function: %s - took %0.3f ms]\n", name_chars.get(), ms);
997 // Parse the function literal.
3765 const Runtime::Function* function = Runtime::FunctionForName(name); local
    [all...]
frames.cc 182 if (!frame()->function()->IsJSFunction()) return false;
183 Object* script = frame()->function()->shared()->script();
418 // The marker and function offsets overlap. If the marker isn't a
420 // really the function.
431 ASSERT(kind == Code::FUNCTION || kind == Code::OPTIMIZED_FUNCTION);
679 // Visit the function in JavaScript frame.
744 return function()->code();
752 return function()->shared()->formal_parameter_count();
763 functions->Add(function());
772 function(),
965 JSFunction* function = LiteralAt(literal_array, it.Next()); local
1095 JSFunction* function = LiteralAt(literal_array, it.Next()); local
1149 JSFunction* function = this->function(); local
1291 JSFunction* function = this->function(); local
    [all...]
preparser.h 33 // example, Parser keeps track of which function literals should be marked as
128 // used to hold the parser's per-function and per-block state.
187 // the function. Includes regexp literals, and boilerplate for object and
191 // Used to assign a per-function index to try and catch handlers.
197 // Whether the function is a generator.
465 // If true, the next (and immediately following) function literal is
467 // Heuristically that means that the function will be called immediately,
472 FunctionState* function_state_; // Function state stack.
    [all...]
  /external/skia/tests/
CanvasTest.cpp 18 * function of the form:
30 * The definition of the test step function should be followed by an
275 #define TEST_STEP(NAME, FUNCTION) \
279 FUNCTION (canvas, reporter, this); \
285 #define TEST_STEP_NO_PDF(NAME, FUNCTION) \
290 FUNCTION (canvas, reporter, this); \
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
model.py 92 - |functions| a map of function names to their model.Function
93 - |events| a map of event names to their model.Function
129 generated code (for example, function results), or
131 example, function parameters)
152 - |functions| a map of function names to their model.Function
242 elif json_type == 'function':
243 self.property_type = PropertyType.FUNCTION
244 # Sometimes we might have an unnamed function, e.g. if it's a propert
    [all...]
cpp_type_generator.py 121 elif type_.property_type == PropertyType.FUNCTION:
123 # record these as empty DictionaryValues so that we know if the function
208 for function in self._default_namespace.functions.values():
209 for param in function.params:
212 if function.callback:
213 for param in function.callback.params:
cc_generator.py 84 for function in self._namespace.functions.values():
85 c.Cblock(self._GenerateFunction(function))
101 """Generates the function definitions for a type.
110 for function in type_.functions.values():
111 c.Cblock(self._GenerateFunction(function))
169 t.property_type == PropertyType.FUNCTION or
187 """Generates the function for populating a type given a pointer to it.
336 """Generates a function that serializes the type into a base::Value.
347 """Generates a function that serializes an object-representing type
410 """Generates a function that serializes a choice-representing typ
    [all...]
dart_generator.py 9 from model import Function, PropertyType
36 # self._types, make a _FindType(self, type_) function that looks at
116 # Check whether this type has function members. If it does, don't allow
172 else self._GenerateFunction(prop.type_.function))
276 """Returns the Code object for the given function.
295 """Given a function (assumed to be a callback), generates the proxied
296 version of this function, which calls |callback_name| if it is defined.
351 """Given a function, returns True if this function's callback needs to be
354 Function callbacks need to be proxied if they have at least on
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTokenizer-in.cpp     [all...]
  /external/mksh/src/
syn.c 354 /* must be a function */
482 case FUNCTION:
662 /* function foo { ... } vs foo() { .. } */
678 yyerror("%s: %s\n", sname, "invalid function name");
683 * shouldn't break anything. However, for function foo, AT&T ksh
688 /* function foo () { //}*/
691 /* degrade to POSIX function */
784 { Tfunction, FUNCTION, true },
1116 * Helper function called from within lex.c:yylex() to parse
  /external/chromium_org/third_party/openssl/openssl/crypto/stack/
safestack.h     [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
safestack.h     [all...]
  /external/openssl/crypto/stack/
safestack.h     [all...]
  /external/openssl/include/openssl/
safestack.h     [all...]
  /external/chromium_org/v8/test/cctest/
test-compiler.cc 176 "function foo() { var x = 87; return x; }\n"
178 "function bar() { var x; x = 99; return x; }\n"
180 "function baz() { var x = 1, y, z = 2; y = 3; return x + y + z; }\n"
182 "function Cons0() { this.x = 42; this.y = 87; }\n"
185 "function Cons2(x, y) { this.sum = x + y; }\n"
211 // Tests calling a builtin function from C/C++ code, and the builtin function
224 const char* source = "function foo(a) { gc(), print(a); }";
271 const char function_f[] = "function f() {}";
285 v8::Local<v8::Function> f
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
rbt_pars.cpp 71 // A function is denoted &Source-Target/Variant(text)
72 #define FUNCTION ((UChar)38) /*&*/
88 // Special characters disallowed within a function argument
543 case FUNCTION:
    [all...]
  /external/icu/icu4c/source/i18n/
rbt_pars.cpp 73 // A function is denoted &Source-Target/Variant(text)
74 #define FUNCTION ((UChar)38) /*&*/
90 // Special characters disallowed within a function argument
549 case FUNCTION:
    [all...]

Completed in 1169 milliseconds

1 23 4 5 6 7