HomeSort by relevance Sort by last modified time
    Searched defs:CJS_Return (Results 1 - 2 of 2) sorted by null

  /external/pdfium/fxjs/
cjs_return.cpp 7 #include "fxjs/cjs_return.h"
9 CJS_Return::CJS_Return(bool result) : is_error_(!result) {}
11 CJS_Return::CJS_Return(const WideString& err) : is_error_(true), error_(err) {}
13 CJS_Return::CJS_Return(v8::Local<v8::Value> ret)
16 CJS_Return::CJS_Return(const CJS_Return&) = default
    [all...]
cjs_return.h 12 class CJS_Return {
14 explicit CJS_Return(bool);
15 explicit CJS_Return(const WideString&);
16 explicit CJS_Return(v8::Local<v8::Value>);
17 CJS_Return(const CJS_Return&);
18 ~CJS_Return();
27 CJS_Return() = delete;

Completed in 391 milliseconds