Vuo  2.0.0
Functions
VuoList_VuoVideoInputDevice.cc File Reference

Description

VuoList implementation.

Definition in file VuoList_VuoVideoInputDevice.cc.

Go to the source code of this file.

Macros

#define RETAIN(element)   VuoVideoInputDevice_retain(element)
 Ignore calls to VuoRetain and VuoRelease if the element type is not reference-counted. More...
 
#define RELEASE(element)   VuoVideoInputDevice_release(element)
 Ignore calls to VuoRetain and VuoRelease if the element type is not reference-counted. More...
 

Functions

void VuoListDestroy_VuoVideoInputDevice (void *list)
 Destroys the list (a VuoList_VuoVideoInputDevice). More...
 
VuoList_VuoVideoInputDevice VuoList_VuoVideoInputDevice_makeFromJson (json_object *js)
 Decodes the JSON object js to create a new value. More...
 
json_objectVuoList_VuoVideoInputDevice_getJson (const VuoList_VuoVideoInputDevice value)
 Encodes value as a JSON object. More...
 
char * VuoList_VuoVideoInputDevice_getSummary (const VuoList_VuoVideoInputDevice value)
 Produces a brief human-readable summary of value. More...
 
VuoList_VuoVideoInputDevice VuoListCreate_VuoVideoInputDevice (void)
 Creates a new list of VuoVideoInputDevice elements. More...
 
VuoList_VuoVideoInputDevice VuoListCreateWithCount_VuoVideoInputDevice (const unsigned long count, const VuoVideoInputDevice value)
 Creates a new list of count instances of value. More...
 
VuoList_VuoVideoInputDevice VuoListCopy_VuoVideoInputDevice (const VuoList_VuoVideoInputDevice list)
 Makes a shallow copy of list — its items are retained (not copied) by the new list. More...
 
VuoVideoInputDevice VuoListGetValue_VuoVideoInputDevice (const VuoList_VuoVideoInputDevice list, const unsigned long index)
 Returns the VuoVideoInputDevice at index. More...
 
VuoVideoInputDeviceVuoListGetData_VuoVideoInputDevice (const VuoList_VuoVideoInputDevice list)
 Returns a pointer to a C array containing the list items. More...
 
void VuoListForeach_VuoVideoInputDevice (const VuoList_VuoVideoInputDevice list, bool(^function)(const VuoVideoInputDevice value))
 Applies function to each of list's items, serially in order of index. More...
 
void VuoListSetValue_VuoVideoInputDevice (const VuoList_VuoVideoInputDevice list, const VuoVideoInputDevice value, const unsigned long index, bool expandListIfNeeded)
 Changes the VuoVideoInputDevice at index. More...
 
void VuoListInsertValue_VuoVideoInputDevice (const VuoList_VuoVideoInputDevice list, const VuoVideoInputDevice value, const unsigned long index)
 Inserts the VuoVideoInputDevice immediately before index. More...
 
void VuoListPrependValue_VuoVideoInputDevice (VuoList_VuoVideoInputDevice list, const VuoVideoInputDevice value)
 Prepends value to list. More...
 
void VuoListAppendValue_VuoVideoInputDevice (VuoList_VuoVideoInputDevice list, const VuoVideoInputDevice value)
 Appends value to list. More...
 
void VuoListExchangeValues_VuoVideoInputDevice (VuoList_VuoVideoInputDevice list, const unsigned long indexA, const unsigned long indexB)
 Swaps the value at indexA with the value at indexB. More...
 
void VuoListShuffle_VuoVideoInputDevice (VuoList_VuoVideoInputDevice list, const double chaos)
 Generates a random permutation of list. More...
 
void VuoListReverse_VuoVideoInputDevice (VuoList_VuoVideoInputDevice list)
 Reverses the order of the items in list. More...
 
VuoList_VuoVideoInputDevice VuoListSubset_VuoVideoInputDevice (VuoList_VuoVideoInputDevice list, const signed long startIndex, const unsigned long itemCount)
 Returns a new list containing items from the original list in the range specified by startIndex and itemCount. More...
 
void VuoListRemoveFirstValue_VuoVideoInputDevice (VuoList_VuoVideoInputDevice list)
 Removes the first value from list. More...
 
void VuoListRemoveLastValue_VuoVideoInputDevice (VuoList_VuoVideoInputDevice list)
 Removes the last value from list. More...
 
void VuoListRemoveAll_VuoVideoInputDevice (VuoList_VuoVideoInputDevice list)
 Removes all values from list. More...
 
void VuoListRemoveValue_VuoVideoInputDevice (VuoList_VuoVideoInputDevice list, const unsigned long index)
 Removes the VuoVideoInputDevice at index. More...
 
unsigned long VuoListGetCount_VuoVideoInputDevice (const VuoList_VuoVideoInputDevice list)
 Returns the number of elements in list. More...
 

Macro Definition Documentation

◆ RELEASE

#define RELEASE (   element)    VuoVideoInputDevice_release(element)

Ignore calls to VuoRetain and VuoRelease if the element type is not reference-counted.

Definition at line 37 of file VuoList_VuoVideoInputDevice.cc.

◆ RETAIN

#define RETAIN (   element)    VuoVideoInputDevice_retain(element)

Ignore calls to VuoRetain and VuoRelease if the element type is not reference-counted.

Definition at line 36 of file VuoList_VuoVideoInputDevice.cc.

Function Documentation

◆ VuoListDestroy_VuoVideoInputDevice()

void VuoListDestroy_VuoVideoInputDevice ( void *  list)

Destroys the list (a VuoList_VuoVideoInputDevice).

Definition at line 187 of file VuoList_VuoVideoInputDevice.cc.