Exemplo n.º 1
0
ObjectData* SystemLib::AllocOutOfBoundsExceptionObject(CVarRef message) {
  CREATE_AND_CONSTRUCT(OutOfBoundsException, CREATE_VECTOR1(message));
}
Exemplo n.º 2
0
ObjectData* SystemLib::AllocKeysIterableObject(CVarRef mp) {
  CREATE_AND_CONSTRUCT(KeysIterable, CREATE_VECTOR1(mp));
}
Exemplo n.º 3
0
ObjectData* SystemLib::AllocRuntimeExceptionObject(CVarRef message) {
  CREATE_AND_CONSTRUCT(RuntimeException, CREATE_VECTOR1(message));
}
Exemplo n.º 4
0
ObjectData* SystemLib::AllocRuntimeExceptionObject(const Variant& message) {
  CREATE_AND_CONSTRUCT(RuntimeException, make_packed_array(message));
}
Exemplo n.º 5
0
ObjectData* SystemLib::AllocInvalidOperationExceptionObject(const Variant& message) {
  CREATE_AND_CONSTRUCT(InvalidOperationException, make_packed_array(message));
}
Exemplo n.º 6
0
ObjectData* SystemLib::AllocDOMExceptionObject(CVarRef message, CVarRef code) {
  CREATE_AND_CONSTRUCT(DOMException, CREATE_VECTOR2(message, code));
}
Exemplo n.º 7
0
ObjectData* SystemLib::AllocLazyKeyedIterableViewObject(const Variant& iterable) {
  CREATE_AND_CONSTRUCT(LazyKeyedIterableView, make_packed_array(iterable));
}
Exemplo n.º 8
0
ObjectData* SystemLib::AllocReflectionExceptionObject(CVarRef message) {
  CREATE_AND_CONSTRUCT(ReflectionException, make_packed_array(message));
}
Exemplo n.º 9
0
ObjectData* SystemLib::AllocLazyIterableViewObject(CVarRef iterable) {
  CREATE_AND_CONSTRUCT(LazyIterableView, make_packed_array(iterable));
}
Exemplo n.º 10
0
ObjectData* AllocInvalidArgumentExceptionObject(const Variant& message) {
  CREATE_AND_CONSTRUCT(InvalidArgumentException, make_packed_array(message));
}
Exemplo n.º 11
0
ObjectData* SystemLib::AllocDOMExceptionObject(CVarRef message, CVarRef code) {
  CREATE_AND_CONSTRUCT(DOMException, make_packed_array(message, code));
}
Exemplo n.º 12
0
ObjectData* AllocLazyIterableViewObject(const Variant& iterable) {
  CREATE_AND_CONSTRUCT(LazyIterableView, make_packed_array(iterable));
}
Exemplo n.º 13
0
ObjectData* SystemLib::AllocZippedKeyedIterableObject(CVarRef iterable1,
                                                      CVarRef iterable2) {
  CREATE_AND_CONSTRUCT(ZippedKeyedIterable, CREATE_VECTOR2(iterable1,
                                                           iterable2));
}
Exemplo n.º 14
0
ObjectData* SystemLib::AllocFilteredKeyedIterableObject(CVarRef iterable,
                                                        CVarRef callback) {
  CREATE_AND_CONSTRUCT(FilteredKeyedIterable, CREATE_VECTOR2(iterable,
                                                             callback));
}
Exemplo n.º 15
0
ObjectData* SystemLib::AllocInvalidOperationExceptionObject(CVarRef message) {
  CREATE_AND_CONSTRUCT(InvalidOperationException, CREATE_VECTOR1(message));
}
Exemplo n.º 16
0
ObjectData* SystemLib::AllocInvalidArgumentExceptionObject(CVarRef message) {
  CREATE_AND_CONSTRUCT(InvalidArgumentException, make_packed_array(message));
}
Exemplo n.º 17
0
ObjectData* SystemLib::AllocDOMDocumentObject(CStrRef version,
                                              CStrRef encoding) {
  CREATE_AND_CONSTRUCT(DOMDocument, CREATE_VECTOR2(version, encoding));
}
Exemplo n.º 18
0
ObjectData* SystemLib::AllocDOMDocumentObject(const String& version,
                                              const String& encoding) {
  CREATE_AND_CONSTRUCT(DOMDocument, make_packed_array(version, encoding));
}
Exemplo n.º 19
0
ObjectData* SystemLib::AllocLazyKVZipIterableObject(const Variant& mp) {
  CREATE_AND_CONSTRUCT(LazyKVZipIterable, make_packed_array(mp));
}
Exemplo n.º 20
0
ObjectData* SystemLib::AllocLazyKVZipIterableObject(CVarRef mp) {
  CREATE_AND_CONSTRUCT(LazyKVZipIterable, CREATE_VECTOR1(mp));
}
Exemplo n.º 21
0
ObjectData* SystemLib::AllocBadMethodCallExceptionObject(const Variant& message) {
  CREATE_AND_CONSTRUCT(BadMethodCallException, make_packed_array(message));
}
Exemplo n.º 22
0
ObjectData* SystemLib::AllocLazyKeyedIterableViewObject(CVarRef iterable) {
  CREATE_AND_CONSTRUCT(LazyKeyedIterableView, CREATE_VECTOR1(iterable));
}
Exemplo n.º 23
0
ObjectData* SystemLib::AllocOutOfBoundsExceptionObject(const Variant& message) {
  CREATE_AND_CONSTRUCT(OutOfBoundsException, make_packed_array(message));
}
Exemplo n.º 24
0
ObjectData* SystemLib::AllocBadMethodCallExceptionObject(CVarRef message) {
  CREATE_AND_CONSTRUCT(BadMethodCallException, CREATE_VECTOR1(message));
}
Exemplo n.º 25
0
ObjectData* SystemLib::AllocDOMExceptionObject(const Variant& message, const Variant& code) {
  CREATE_AND_CONSTRUCT(DOMException, make_packed_array(message, code));
}
Exemplo n.º 26
0
ObjectData* SystemLib::AllocSplFileInfoObject(CVarRef filename) {
  CREATE_AND_CONSTRUCT(SplFileInfo, CREATE_VECTOR1(filename));
}