Searched defs:Persistent (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/quota/
H A DStorageQuota.h49 Persistent, enumerator in enum:WebCore::StorageQuota::Type
/external/clang/tools/libclang/
H A DIndexing.cpp636 bool Persistent = requestedToGetTU; local
662 Persistent,
/external/clang/lib/Frontend/
H A DASTUnit.cpp1769 bool Persistent,
1878 if (Persistent && !TrackerAct) {
1765 LoadFromCompilerInvocationAction(CompilerInvocation *CI, IntrusiveRefCntPtr<DiagnosticsEngine> Diags, ASTFrontendAction *Action, ASTUnit *Unit, bool Persistent, StringRef ResourceFilesPath, bool OnlyLocalDecls, bool CaptureDiagnostics, bool PrecompilePreamble, bool CacheCodeCompletionResults, bool IncludeBriefCommentsInCodeCompletion, bool UserFilesAreVolatile, OwningPtr<ASTUnit> *ErrAST) argument
/external/v8/include/
H A Dv8.h103 template <class T> class Persistent;
133 typedef void (*WeakReferenceCallback)(Persistent<Value> object,
158 * local operations. They are managed by HandleScopes. Persistent
301 * allocated, a Persistent handle remains valid until it is explicitly
307 * cell can be created using Persistent::New and existing handles can
308 * be disposed using Persistent::Dispose. Since persistent handles
315 template <class T> class Persistent : public Handle<T> { class in namespace:v8
321 inline Persistent();
328 * persistent handles, for instance from a Persistent<String> to a
329 * Persistent<Numbe
334 template <class S> inline Persistent(Persistent<S> that) function in class:v8::Persistent
344 template <class S> inline Persistent(S* that) : Handle<T>(that) { } function in class:v8::Persistent
350 template <class S> explicit inline Persistent(Handle<S> that) function in class:v8::Persistent
3990 Persistent<T>::Persistent() : Handle<T>() { } function in class:v8::Persistent
[all...]
/external/chromium_org/v8/include/
H A Dv8.h148 template <class T> class Persistent;
215 Persistent<T>* object,
241 * local operations. They are managed by HandleScopes. Persistent
316 bool operator==(const Persistent<S>& that) const) {
353 V8_INLINE(static Handle<T> New(Isolate* isolate, const Persistent<T>& that)) {
369 template<class F> friend class Persistent;
455 V8_INLINE(static Local<T> New(Isolate* isolate, const Persistent<T>& that));
466 template<class F> friend class Persistent;
484 * allocated, a Persistent handle remains valid until it is explicitly
490 * cell can be created using Persistent
498 template <class T> class Persistent // NOLINT class in namespace:v8
506 V8_INLINE(Persistent()) : val_(0) { } function in class:v8::Persistent
521 template <class S> V8_INLINE(Persistent(Isolate* isolate, Handle<S> that)) function in class:v8::Persistent
524 template <class S> V8_INLINE(Persistent(Isolate* isolate, function in class:v8::Persistent
764 V8_INLINE(Persistent(const Persistent& that)) : val_(that.val_) {} function in class:v8::Persistent
777 template <class S> V8_INLINE(Persistent(S* that)) : val_(that) { } function in class:v8::Persistent
[all...]

Completed in 549 milliseconds