OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:scriptPtr
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/skia/src/animator/
SkScript.cpp
419
bool SkScriptEngine::evaluateScript(const char**
scriptPtr
, SkScriptValue* value) {
421
const char** original =
scriptPtr
;
425
if (strncmp(*
scriptPtr
, "#script:", sizeof("#script:") - 1) == 0) {
426
*
scriptPtr
+= sizeof("#script:") - 1;
428
success = innerScript(
scriptPtr
, value);
432
scriptPtr
= &inner;
436
success = innerScript(
scriptPtr
, value);
439
const char* script = *
scriptPtr
;
488
bool SkScriptEngine::functionParams(const char**
scriptPtr
, SkTDArray<SkScriptValue>& params) {
489
(*
scriptPtr
)++; // skip open pare
[
all
...]
SkScript.h
203
bool functionParams(const char**
scriptPtr
, SkTDArray<SkScriptValue>& params);
204
bool handleArrayIndexer(const char**
scriptPtr
, bool suppressed);
206
bool handleFunction(const char**
scriptPtr
, bool suppressed);
212
bool innerScript(const char**
scriptPtr
, SkScriptValue* value);
SkScript2.h
235
bool functionParams(const char**
scriptPtr
, SkTDArray<SkScriptValue2>* params);
238
bool handleArrayIndexer(const char**
scriptPtr
);
239
bool handleFunction(const char**
scriptPtr
);
245
bool innerScript(const char**
scriptPtr
, SkScriptValue2* value);
SkScriptTokenizer.cpp
395
bool SkScriptEngine2::evaluateScript(const char**
scriptPtr
, SkScriptValue2* value) {
399
if (strncmp(*
scriptPtr
, "#script:", sizeof("#script:") - 1) == 0) {
400
*
scriptPtr
+= sizeof("#script:") - 1;
402
success = innerScript(
scriptPtr
, value);
405
scriptPtr
= &inner;
408
success = innerScript(
scriptPtr
, value);
409
const char* script = *
scriptPtr
;
441
bool SkScriptEngine2::functionParams(const char**
scriptPtr
, SkTDArray<SkScriptValue2>* params) {
442
(*
scriptPtr
)++; // skip open paren
447
bool success = innerScript(
scriptPtr
, &value)
[
all
...]
/external/skia/src/animator/
SkScript.cpp
419
bool SkScriptEngine::evaluateScript(const char**
scriptPtr
, SkScriptValue* value) {
421
const char** original =
scriptPtr
;
425
if (strncmp(*
scriptPtr
, "#script:", sizeof("#script:") - 1) == 0) {
426
*
scriptPtr
+= sizeof("#script:") - 1;
428
success = innerScript(
scriptPtr
, value);
432
scriptPtr
= &inner;
436
success = innerScript(
scriptPtr
, value);
439
const char* script = *
scriptPtr
;
488
bool SkScriptEngine::functionParams(const char**
scriptPtr
, SkTDArray<SkScriptValue>& params) {
489
(*
scriptPtr
)++; // skip open pare
[
all
...]
SkScript.h
203
bool functionParams(const char**
scriptPtr
, SkTDArray<SkScriptValue>& params);
204
bool handleArrayIndexer(const char**
scriptPtr
, bool suppressed);
206
bool handleFunction(const char**
scriptPtr
, bool suppressed);
212
bool innerScript(const char**
scriptPtr
, SkScriptValue* value);
SkScript2.h
235
bool functionParams(const char**
scriptPtr
, SkTDArray<SkScriptValue2>* params);
238
bool handleArrayIndexer(const char**
scriptPtr
);
239
bool handleFunction(const char**
scriptPtr
);
245
bool innerScript(const char**
scriptPtr
, SkScriptValue2* value);
SkScriptTokenizer.cpp
395
bool SkScriptEngine2::evaluateScript(const char**
scriptPtr
, SkScriptValue2* value) {
399
if (strncmp(*
scriptPtr
, "#script:", sizeof("#script:") - 1) == 0) {
400
*
scriptPtr
+= sizeof("#script:") - 1;
402
success = innerScript(
scriptPtr
, value);
405
scriptPtr
= &inner;
408
success = innerScript(
scriptPtr
, value);
409
const char* script = *
scriptPtr
;
441
bool SkScriptEngine2::functionParams(const char**
scriptPtr
, SkTDArray<SkScriptValue2>* params) {
442
(*
scriptPtr
)++; // skip open paren
447
bool success = innerScript(
scriptPtr
, &value)
[
all
...]
Completed in 68 milliseconds