Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:m_frames
(Results
1 - 4
of
4
) sorted by relevance
/third_party/skia/third_party/externals/libgifcodec/
H
A
D
SkGifImageReader.cpp
388
if (index < 0 || index >=
m_frames
.count()) {
in getColorTable()
392
const SkGIFFrameContext* frameContext =
m_frames
[index].get();
in getColorTable()
454
SkGIFFrameContext* currentFrame =
m_frames
[frameIndex].get();
in decode()
473
if (lastFrameToParse >= 0 &&
m_frames
.count() > lastFrameToParse
in parse()
474
&&
m_frames
[lastFrameToParse]->isComplete()) {
in parse()
487
SkASSERT(!
m_frames
.empty());
in parse()
488
auto* frame =
m_frames
.back().get();
in parse()
494
SkASSERT(!
m_frames
.empty());
in parse()
495
auto* currentFrame =
m_frames
.back().get();
in parse()
636
SkGIFFrameContext* currentFrame =
m_frames
in parse()
[all...]
H
A
D
SkGifImageReader.h
316
const int frames =
m_frames
.count();
in imagesCount()
326
return
m_frames
.back()->reachedStartOfData() ? frames : frames - 1;
in imagesCount()
342
return index >= 0 && index <
m_frames
.count()
in frameContext()
343
?
m_frames
[index].get() : nullptr;
in frameContext()
347
for (int index = 0; index <
m_frames
.count(); index++) {
in clearDecodeState()
348
m_frames
[index]->clearDecodeState();
in clearDecodeState()
371
return
m_frames
.empty() || (
m_frames
.count() == 1 && !
m_frames
[0]->isComplete());
in currentFrameIsFirstFrame()
388
SkTArray<std::unique_ptr<SkGIFFrameContext>>
m_frames
;
member in final
[all...]
/third_party/node/deps/v8/src/inspector/
H
A
D
v8-stack-trace-impl.cc
273
:
m_frames
(std::move(frames)),
in V8StackTraceImpl()
282
m_frames
, 0, std::shared_ptr<AsyncStackTrace>(), V8StackTraceId()));
in clone()
296
bool V8StackTraceImpl::isEmpty() const { return
m_frames
.empty(); }
in isEmpty()
299
return toStringView(
m_frames
[0]->sourceURL());
in topSourceURL()
303
return
m_frames
[0]->lineNumber() + 1;
in topLineNumber()
307
return
m_frames
[0]->columnNumber() + 1;
in topColumnNumber()
310
int V8StackTraceImpl::topScriptId() const { return
m_frames
[0]->scriptId(); }
in topScriptId()
313
return toStringView(
m_frames
[0]->functionName());
in topFunctionName()
324
return buildInspectorObjectCommon(debugger,
m_frames
, String16(),
in buildInspectorObjectImpl()
337
for (size_t i = 0; i <
m_frames
in toString()
[all...]
H
A
D
v8-stack-trace-impl.h
107
std::vector<std::shared_ptr<StackFrame>>
m_frames
;
member in v8_inspector::V8StackTraceImpl
132
return
m_frames
;
in frames()
144
std::vector<std::shared_ptr<StackFrame>>
m_frames
;
member in v8_inspector::AsyncStackTrace
Completed in 4 milliseconds