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

  /external/v8/src/parsing/
preparse-data.cc 28 FunctionEntry::EncodeFlags(language_mode, uses_super_property, calls_eval,
parser.h 32 class FunctionEntry BASE_EMBEDDED {
45 explicit FunctionEntry(Vector<unsigned> backing)
48 FunctionEntry() : backing_() { }
105 FunctionEntry GetFunctionEntry(int start);
    [all...]
parser.cc 42 FunctionEntry ParseData::GetFunctionEntry(int start) {
43 // The current pre-data entry must be a FunctionEntry with the given
45 if ((function_index_ + FunctionEntry::kSize <= Length()) &&
48 function_index_ += FunctionEntry::kSize;
49 Vector<unsigned> subvector(&(Data()[index]), FunctionEntry::kSize);
50 return FunctionEntry(subvector);
52 return FunctionEntry();
59 if (functions_size % FunctionEntry::kSize != 0) return 0;
60 return functions_size / FunctionEntry::kSize;
75 if (functions_size % FunctionEntry::kSize != 0) return false
    [all...]
  /external/v8/tools/
profile.js 160 func = new Profile.FunctionEntry(name);
432 if (entries[i][1].constructor === Profile.FunctionEntry) {
442 if (entries[i][1].constructor === Profile.FunctionEntry &&
494 * @param {Profile.FunctionEntry} func Shared function entry.
539 Profile.FunctionEntry = function(name) {
547 Profile.FunctionEntry.prototype.getName = function() {
558 Profile.FunctionEntry.prototype.toString = CodeMap.CodeEntry.prototype.toString;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winternl.h 582 PRUNTIME_FUNCTION FunctionEntry;
    [all...]
winnt.h     [all...]
  /external/v8/src/
utils.h 933 static BailoutId FunctionEntry() { return BailoutId(kFunctionEntryId); }
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.cc 435 PrepareFrameState(node, BailoutId::FunctionEntry());
    [all...]
  /external/v8/src/full-codegen/arm/
full-codegen-arm.cc 294 PrepareForBailoutForId(BailoutId::FunctionEntry(),
    [all...]
  /external/v8/src/full-codegen/arm64/
full-codegen-arm64.cc 296 PrepareForBailoutForId(BailoutId::FunctionEntry(),
    [all...]
  /external/v8/src/full-codegen/ia32/
full-codegen-ia32.cc 286 PrepareForBailoutForId(BailoutId::FunctionEntry(),
    [all...]
  /external/v8/src/full-codegen/mips/
full-codegen-mips.cc 305 PrepareForBailoutForId(BailoutId::FunctionEntry(),
    [all...]
  /external/v8/src/full-codegen/mips64/
full-codegen-mips64.cc 303 PrepareForBailoutForId(BailoutId::FunctionEntry(),
    [all...]
  /external/v8/src/full-codegen/ppc/
full-codegen-ppc.cc 301 PrepareForBailoutForId(BailoutId::FunctionEntry(),
    [all...]
  /external/v8/src/full-codegen/s390/
full-codegen-s390.cc 305 PrepareForBailoutForId(BailoutId::FunctionEntry(),
    [all...]
  /external/v8/src/full-codegen/x64/
full-codegen-x64.cc 287 PrepareForBailoutForId(BailoutId::FunctionEntry(),
    [all...]
  /external/v8/src/full-codegen/x87/
full-codegen-x87.cc 281 PrepareForBailoutForId(BailoutId::FunctionEntry(),
    [all...]
  /external/v8/src/crankshaft/
hydrogen.cc     [all...]

Completed in 601 milliseconds