Searched refs:replacement (Results 1 – 10 of 10) sorted by relevance
/civetweb-2.7.6/examples/rest/cJSON/ |
D | cJSON.c | 2171 …ON_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSON * replacement) in cJSON_ReplaceItemViaPointer() argument 2173 if ((parent == NULL) || (replacement == NULL) || (item == NULL)) in cJSON_ReplaceItemViaPointer() 2178 if (replacement == item) in cJSON_ReplaceItemViaPointer() 2183 replacement->next = item->next; in cJSON_ReplaceItemViaPointer() 2184 replacement->prev = item->prev; in cJSON_ReplaceItemViaPointer() 2186 if (replacement->next != NULL) in cJSON_ReplaceItemViaPointer() 2188 replacement->next->prev = replacement; in cJSON_ReplaceItemViaPointer() 2190 if (replacement->prev != NULL) in cJSON_ReplaceItemViaPointer() 2192 replacement->prev->next = replacement; in cJSON_ReplaceItemViaPointer() 2196 parent->child = replacement; in cJSON_ReplaceItemViaPointer() [all …]
|
D | cJSON_Utils.c | 759 static void overwrite_item(cJSON * const root, const cJSON replacement) in overwrite_item() argument 779 memcpy(root, &replacement, sizeof(cJSON)); in overwrite_item() 1329 cJSON *replacement = NULL; in merge_patch() local 1340 replacement = merge_patch(replace_me, patch_child, case_sensitive); in merge_patch() 1341 if (replacement == NULL) in merge_patch() 1346 cJSON_AddItemToObject(target, patch_child->string, replacement); in merge_patch()
|
D | cJSON.h | 231 …N_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSON * replacement);
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/ |
D | README.rst | 83 * ``polyfills/``: a few replacement suggestions for non-standard Javascript
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/ |
D | README.rst | 83 * ``polyfills/``: a few replacement suggestions for non-standard Javascript
|
/civetweb-2.7.6/docs/ |
D | Interface_Changes_1.10.md | 59 A possible replacement by mg\_set\_request\_handler is sketched in
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/config/ |
D | duk_config.h-modular-dll | 1940 * (which is unfortunately named). May sometimes need replacement, e.g. 2109 * if necessary. The replacement constants (FP_NAN etc) can be anything but 2202 /* These functions don't currently need replacement but are wrapped for 2453 * replacement is needed for pre-C99 / pre-C++11 environments. This 2464 /* Pre-C99: va_list type is implementation dependent. This replacement
|
D | duk_config.h-modular-static | 1940 * (which is unfortunately named). May sometimes need replacement, e.g. 2109 * if necessary. The replacement constants (FP_NAN etc) can be anything but 2202 /* These functions don't currently need replacement but are wrapped for 2453 * replacement is needed for pre-C99 / pre-C++11 environments. This 2464 /* Pre-C99: va_list type is implementation dependent. This replacement
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/config/ |
D | duk_config.h-modular-dll | 1940 * (which is unfortunately named). May sometimes need replacement, e.g. 2109 * if necessary. The replacement constants (FP_NAN etc) can be anything but 2202 /* These functions don't currently need replacement but are wrapped for 2453 * replacement is needed for pre-C99 / pre-C++11 environments. This 2464 /* Pre-C99: va_list type is implementation dependent. This replacement
|
D | duk_config.h-modular-static | 1940 * (which is unfortunately named). May sometimes need replacement, e.g. 2109 * if necessary. The replacement constants (FP_NAN etc) can be anything but 2202 /* These functions don't currently need replacement but are wrapped for 2453 * replacement is needed for pre-C99 / pre-C++11 environments. This 2464 /* Pre-C99: va_list type is implementation dependent. This replacement
|