OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FunctionEntry
(Results
1 - 16
of
16
) sorted by null
/external/chromium_org/v8/src/
parser.h
50
class
FunctionEntry
BASE_EMBEDDED {
61
explicit
FunctionEntry
(Vector<unsigned> backing)
64
FunctionEntry
() : backing_() { }
102
FunctionEntry
GetFunctionEntry(int start);
parser.cc
295
FunctionEntry
ScriptDataImpl::GetFunctionEntry(int start) {
296
// The current pre-data entry must be a
FunctionEntry
with the given
298
if ((function_index_ +
FunctionEntry
::kSize <= store_.length())
301
function_index_ +=
FunctionEntry
::kSize;
302
return
FunctionEntry
(store_.SubVector(index,
303
index +
FunctionEntry
::kSize));
305
return
FunctionEntry
();
349
if (functions_size %
FunctionEntry
::kSize != 0) return false;
[
all
...]
utils.h
1114
static BailoutId
FunctionEntry
() { return BailoutId(kFunctionEntryId);
[
all
...]
hydrogen.cc
[
all
...]
/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/chromium_org/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/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
...]
/external/chromium_org/v8/test/cctest/
test-parsing.cc
369
i::
FunctionEntry
entry1 = data->GetFunctionEntry(first_lbrace);
377
i::
FunctionEntry
entry2 = data->GetFunctionEntry(second_lbrace);
[
all
...]
test-api.cc
[
all
...]
/external/chromium_org/v8/src/arm/
full-codegen-arm.cc
277
PrepareForBailoutForId(BailoutId::
FunctionEntry
(), NO_REGISTERS);
[
all
...]
/external/chromium_org/v8/src/ia32/
full-codegen-ia32.cc
267
PrepareForBailoutForId(BailoutId::
FunctionEntry
(), NO_REGISTERS);
[
all
...]
/external/chromium_org/v8/src/mips/
full-codegen-mips.cc
289
PrepareForBailoutForId(BailoutId::
FunctionEntry
(), NO_REGISTERS);
[
all
...]
/external/chromium_org/v8/src/x64/
full-codegen-x64.cc
260
PrepareForBailoutForId(BailoutId::
FunctionEntry
(), NO_REGISTERS);
[
all
...]
Completed in 1234 milliseconds