HomeSort by relevance Sort by last modified time
    Searched refs:OnceType (Results 1 - 4 of 4) sorted by null

  /external/v8/src/
once.h 36 // * A type called OnceType.
38 // OnceType.
39 // * A function CallOnce(OnceType* once, void (*init_func)()).
40 // This function, when invoked multiple times given the same OnceType object,
46 // initialize a OnceType. This is only useful when clients embed a OnceType
51 // * This implementation guarantees that OnceType is a POD (i.e. no static
83 typedef AtomicWord OnceType;
87 #define V8_DECLARE_ONCE(NAME) ::v8::internal::OnceType NAME
103 void CallOnceImpl(OnceType* once, PointerArgFunction init_func, void* arg)
    [all...]
once.cc 42 void CallOnceImpl(OnceType* once, PointerArgFunction init_func, void* arg) {
lazy-instance.h 169 static void Init(OnceType* once, Function function, Storage storage) {
178 static void Init(OnceType* once, Function function, Storage storage) {
219 mutable OnceType once_;
220 // Note that the previous field, OnceType, is an AtomicWord which guarantees
builtins.cc     [all...]

Completed in 143 milliseconds