HomeSort by relevance Sort by last modified time
    Searched refs:FunctionEntry (Results 1 - 5 of 5) sorted by null

  /external/v8/src/
parser.h 68 class FunctionEntry BASE_EMBEDDED {
79 explicit FunctionEntry(Vector<unsigned> backing)
82 FunctionEntry() : backing_() { }
121 FunctionEntry GetFunctionEntry(int start);
parser.cc 292 FunctionEntry ScriptDataImpl::GetFunctionEntry(int start) {
293 // The current pre-data entry must be a FunctionEntry with the given
295 if ((function_index_ + FunctionEntry::kSize <= store_.length())
298 function_index_ += FunctionEntry::kSize;
299 return FunctionEntry(store_.SubVector(index,
300 index + FunctionEntry::kSize));
302 return FunctionEntry();
346 if (functions_size % FunctionEntry::kSize != 0) return false;
    [all...]
  /external/v8/tools/
profile.js 159 func = new Profile.FunctionEntry(name);
391 if (entries[i][1].constructor === Profile.FunctionEntry) {
401 if (entries[i][1].constructor === Profile.FunctionEntry &&
454 * @param {Profile.FunctionEntry} func Shared function entry.
500 Profile.FunctionEntry = function(name) {
508 Profile.FunctionEntry.prototype.getName = function() {
519 Profile.FunctionEntry.prototype.toString = CodeMap.CodeEntry.prototype.toString;
  /external/v8/test/cctest/
test-parsing.cc 366 i::FunctionEntry entry1 = data->GetFunctionEntry(first_lbrace);
374 i::FunctionEntry entry2 = data->GetFunctionEntry(second_lbrace);
    [all...]
test-api.cc     [all...]

Completed in 77 milliseconds