Renaming rest camelCase-named identifiers according to underscore_named_value-naming.
This commit is contained in:
@@ -35,7 +35,7 @@ extern ecma_object_t *ecma_alloc_object(void);
|
||||
/**
|
||||
* Dealloc memory from an ecma-object
|
||||
*/
|
||||
extern void ecma_dealloc_object( ecma_object_t *pObject);
|
||||
extern void ecma_dealloc_object( ecma_object_t *object_p);
|
||||
|
||||
/**
|
||||
* Allocate memory for ecma-property
|
||||
@@ -47,7 +47,7 @@ extern ecma_property_t *ecma_alloc_property(void);
|
||||
/**
|
||||
* Dealloc memory from an ecma-property
|
||||
*/
|
||||
extern void ecma_dealloc_property( ecma_property_t *pProperty);
|
||||
extern void ecma_dealloc_property( ecma_property_t *property_p);
|
||||
|
||||
/**
|
||||
* Allocate memory for ecma-number
|
||||
@@ -59,7 +59,7 @@ extern ecma_number_t *ecma_alloc_number(void);
|
||||
/**
|
||||
* Dealloc memory from an ecma-number
|
||||
*/
|
||||
extern void ecma_dealloc_number( ecma_number_t *pNumber);
|
||||
extern void ecma_dealloc_number( ecma_number_t *number_p);
|
||||
|
||||
/**
|
||||
* Allocate memory for first chunk of an ecma-array
|
||||
@@ -71,7 +71,7 @@ extern ecma_array_first_chunk_t *ecma_alloc_array_first_chunk(void);
|
||||
/**
|
||||
* Dealloc memory from first chunk of an ecma-array
|
||||
*/
|
||||
extern void ecma_dealloc_array_first_chunk( ecma_array_first_chunk_t *pFirstChunk);
|
||||
extern void ecma_dealloc_array_first_chunk( ecma_array_first_chunk_t *first_chunk_p);
|
||||
|
||||
/**
|
||||
* Allocate memory for non-first chunk of an ecma-array
|
||||
@@ -83,7 +83,7 @@ extern ecma_array_non_first_chunk_t *ecma_alloc_array_non_first_chunk(void);
|
||||
/**
|
||||
* Dealloc memory from non-first chunk of an ecma-array
|
||||
*/
|
||||
extern void ecma_dealloc_array_non_first_chunk( ecma_array_non_first_chunk_t *pNumber);
|
||||
extern void ecma_dealloc_array_non_first_chunk( ecma_array_non_first_chunk_t *number_p);
|
||||
|
||||
#endif /* JERRY_ECMA_ALLOC_H */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user