Home
last modified time | relevance | path

Searched refs:current_item (Results 1 - 25 of 27) sorted by relevance

12

/third_party/jerryscript/tests/jerry/es2015/
H A Darray-prototype-values.js30 var current_item = iterator.next (); variable
34 assert (current_item.value === array[i]);
35 assert (current_item.done === false);
37 assert (current_item.value === symbol_current_item.value);
38 assert (current_item.done === symbol_current_item.done);
40 current_item = iterator.next ();
44 assert (current_item.value === undefined);
45 assert (current_item.done === true);
46 assert (current_item.value === symbol_current_item.value);
47 assert (current_item
[all...]
H A Darray-prototype-entries.js26 var current_item = iterator.next (); variable
29 assert (current_item.value[0] === i);
30 assert (current_item.value[1] === array[i]);
31 assert (current_item.done === false);
33 current_item = iterator.next ();
36 assert (current_item.value === undefined);
37 assert (current_item.done === true);
57 current_item = iterator.next ();
58 assert (current_item.value[0] === expected_indices[expected_values_idx]);
59 assert (current_item
[all...]
H A Darray-prototype-keys.js26 var current_item = iterator.next (); variable
29 assert (current_item.value === i);
30 assert (current_item.done === false);
32 current_item = iterator.next ();
35 assert (current_item.value === undefined);
36 assert (current_item.done === true);
52 current_item = iterator.next ();
53 assert (current_item.value === i);
54 assert (current_item.done === false);
61 current_item
[all...]
H A Dtypedarray-prototype-values.js40 var current_item = iterator.next ();
44 assert (current_item.value === e[i]);
45 assert (current_item.done === false);
47 assert (current_item.value === symbol_current_item.value);
48 assert (current_item.done === symbol_current_item.done);
50 current_item = iterator.next ();
54 assert (current_item.value === undefined);
55 assert (current_item.done === true);
56 assert (current_item.value === symbol_current_item.value);
57 assert (current_item
[all...]
H A Dtypedarray-prototype-entires.js38 var current_item = iterator.next ();
41 assert (current_item.value[0] === i);
42 assert (current_item.value[1] === e[i]);
43 assert (current_item.done === false);
45 current_item = iterator.next ();
48 assert (current_item.value === undefined);
49 assert (current_item.done === true);
65 current_item = iterator.next ();
67 assert (current_item.value === undefined);
68 assert (current_item
[all...]
H A Dtypedarray-prototype-keys.js38 var current_item = iterator.next ();
41 assert (current_item.value === i);
42 assert (current_item.done === false);
44 current_item = iterator.next ();
47 assert (current_item.value === undefined);
48 assert (current_item.done === true);
64 current_item = iterator.next ();
66 assert (current_item.value === undefined);
67 assert (current_item.done === true);
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dvector_dce.cpp67 WorkListItem current_item = work_list[i]; in FindLiveComponents() local
68 Instruction* current_inst = current_item.instruction; in FindLiveComponents()
72 MarkExtractUseAsLive(current_inst, current_item.components, in FindLiveComponents()
76 MarkInsertUsesAsLive(current_item, live_components, &work_list); in FindLiveComponents()
79 MarkVectorShuffleUsesAsLive(current_item, live_components, &work_list); in FindLiveComponents()
82 MarkCompositeContructUsesAsLive(current_item, live_components, in FindLiveComponents()
87 MarkUsesAsLive(current_inst, current_item.components, live_components, in FindLiveComponents()
124 const VectorDCE::WorkListItem& current_item, in MarkInsertUsesAsLive()
129 if (current_item.instruction->NumInOperands() > 2) { in MarkInsertUsesAsLive()
131 current_item in MarkInsertUsesAsLive()
123 MarkInsertUsesAsLive( const VectorDCE::WorkListItem& current_item, LiveComponentMap* live_components, std::vector<VectorDCE::WorkListItem>* work_list) MarkInsertUsesAsLive() argument
170 MarkVectorShuffleUsesAsLive( const WorkListItem& current_item, VectorDCE::LiveComponentMap* live_components, std::vector<WorkListItem>* work_list) MarkVectorShuffleUsesAsLive() argument
[all...]
H A Dvector_dce.h121 // Marks the uses in the OpVectorShuffle instruction in |current_item| as live
122 // based on the live components in |current_item|. If anything becomes live
125 void MarkVectorShuffleUsesAsLive(const WorkListItem& current_item,
129 // Marks the uses in the OpCompositeInsert instruction in |current_item| as
130 // live based on the live components in |current_item|. If anything becomes
133 void MarkInsertUsesAsLive(const WorkListItem& current_item,
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dvector_dce.cpp67 WorkListItem current_item = work_list[i]; in FindLiveComponents() local
68 Instruction* current_inst = current_item.instruction; in FindLiveComponents()
72 MarkExtractUseAsLive(current_inst, current_item.components, in FindLiveComponents()
76 MarkInsertUsesAsLive(current_item, live_components, &work_list); in FindLiveComponents()
79 MarkVectorShuffleUsesAsLive(current_item, live_components, &work_list); in FindLiveComponents()
82 MarkCompositeContructUsesAsLive(current_item, live_components, in FindLiveComponents()
87 MarkUsesAsLive(current_inst, current_item.components, live_components, in FindLiveComponents()
124 const VectorDCE::WorkListItem& current_item, in MarkInsertUsesAsLive()
129 if (current_item.instruction->NumInOperands() > 2) { in MarkInsertUsesAsLive()
131 current_item in MarkInsertUsesAsLive()
123 MarkInsertUsesAsLive( const VectorDCE::WorkListItem& current_item, LiveComponentMap* live_components, std::vector<VectorDCE::WorkListItem>* work_list) MarkInsertUsesAsLive() argument
170 MarkVectorShuffleUsesAsLive( const WorkListItem& current_item, VectorDCE::LiveComponentMap* live_components, std::vector<WorkListItem>* work_list) MarkVectorShuffleUsesAsLive() argument
[all...]
H A Dvector_dce.h121 // Marks the uses in the OpVectorShuffle instruction in |current_item| as live
122 // based on the live components in |current_item|. If anything becomes live
125 void MarkVectorShuffleUsesAsLive(const WorkListItem& current_item,
129 // Marks the uses in the OpCompositeInsert instruction in |current_item| as
130 // live based on the live components in |current_item|. If anything becomes
133 void MarkInsertUsesAsLive(const WorkListItem& current_item,
/third_party/spirv-tools/source/opt/
H A Dvector_dce.cpp65 WorkListItem current_item = work_list[i]; in FindLiveComponents() local
66 Instruction* current_inst = current_item.instruction; in FindLiveComponents()
70 MarkExtractUseAsLive(current_inst, current_item.components, in FindLiveComponents()
74 MarkInsertUsesAsLive(current_item, live_components, &work_list); in FindLiveComponents()
77 MarkVectorShuffleUsesAsLive(current_item, live_components, &work_list); in FindLiveComponents()
80 MarkCompositeContructUsesAsLive(current_item, live_components, in FindLiveComponents()
85 MarkUsesAsLive(current_inst, current_item.components, live_components, in FindLiveComponents()
122 const VectorDCE::WorkListItem& current_item, in MarkInsertUsesAsLive()
127 if (current_item.instruction->NumInOperands() > 2) { in MarkInsertUsesAsLive()
129 current_item in MarkInsertUsesAsLive()
121 MarkInsertUsesAsLive( const VectorDCE::WorkListItem& current_item, LiveComponentMap* live_components, std::vector<VectorDCE::WorkListItem>* work_list) MarkInsertUsesAsLive() argument
168 MarkVectorShuffleUsesAsLive( const WorkListItem& current_item, VectorDCE::LiveComponentMap* live_components, std::vector<WorkListItem>* work_list) MarkVectorShuffleUsesAsLive() argument
[all...]
H A Dvector_dce.h121 // Marks the uses in the OpVectorShuffle instruction in |current_item| as live
122 // based on the live components in |current_item|. If anything becomes live
125 void MarkVectorShuffleUsesAsLive(const WorkListItem& current_item,
129 // Marks the uses in the OpCompositeInsert instruction in |current_item| as
130 // live based on the live components in |current_item|. If anything becomes
133 void MarkInsertUsesAsLive(const WorkListItem& current_item,
/third_party/cJSON/
H A DcJSON_Utils.c488 cJSON *current_item = list; in sort_list() local
498 while ((current_item != NULL) && (current_item->next != NULL) && (compare_strings((unsigned char*)current_item->string, (unsigned char*)current_item->next->string, case_sensitive) < 0)) in sort_list()
501 current_item = current_item->next; in sort_list()
503 if ((current_item == NULL) || (current_item->next == NULL)) in sort_list()
510 current_item in sort_list()
[all...]
H A DcJSON.c1687 cJSON *current_item = NULL; in parse_array() local
1732 current_item = head = new_item; in parse_array()
1737 current_item->next = new_item; in parse_array()
1738 new_item->prev = current_item; in parse_array()
1739 current_item = new_item; in parse_array()
1745 if (!parse_value(current_item, input_buffer)) in parse_array()
1762 head->prev = current_item; in parse_array()
1847 cJSON *current_item = NULL; in parse_object() local
1890 current_item = head = new_item; in parse_object()
1895 current_item in parse_object()
1966 cJSON *current_item = item->child; print_object() local
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cShaderSubroutineTests.cpp8302 _item& current_item = items[n_item]; in initTest() local
8304 current_item.stage.function1_index = in initTest()
8305 gl.getSubroutineIndex(current_item.po_id, current_item.so_type, "function1"); in initTest()
8306 current_item.stage.function2_index = in initTest()
8307 gl.getSubroutineIndex(current_item.po_id, current_item.so_type, "function2"); in initTest()
8308 current_item.stage.function3_index = in initTest()
8309 gl.getSubroutineIndex(current_item.po_id, current_item in initTest()
[all...]
H A Dgl4cGPUShaderFP64Tests.cpp6824 _program_interface_query_test_item& current_item = uniforms[n_uniform]; in verifyProgramInterfaceQuerySupport() local
6826 current_item.name = std::string(stage_prefix) + current_item.name; in verifyProgramInterfaceQuerySupport()
6834 _program_interface_query_test_item& current_item = uniforms[n_uniform]; in verifyProgramInterfaceQuerySupport() local
6842 glw::GLuint resource_index = gl.getProgramResourceIndex(po_id, GL_UNIFORM, current_item.name.c_str()); in verifyProgramInterfaceQuerySupport()
6853 if (current_item.name.length() != (glw::GLuint)retrieved_name_length || in verifyProgramInterfaceQuerySupport()
6854 memcmp(m_uniform_name_buffer, current_item.name.c_str(), retrieved_name_length) != 0) in verifyProgramInterfaceQuerySupport()
6859 << current_item.name << "]" in verifyProgramInterfaceQuerySupport()
6883 if (retrieved_array_size != current_item.expected_array_size) in verifyProgramInterfaceQuerySupport()
6886 << current_item in verifyProgramInterfaceQuerySupport()
[all...]
/third_party/alsa-utils/alsamixer/
H A Dproc_files.c44 item = current_item(menu); in on_handle_key()
H A Dcard_select.c51 ITEM *item = current_item(menu); in on_key_enter()
/third_party/json/include/nlohmann/
H A Djson.hpp579 basic_json current_item(std::move(stack.back())); in destroy()
582 // if current_item is array/object, move in destroy()
584 if (current_item.is_array()) in destroy()
586 std::move(current_item.m_value.array->begin(), current_item.m_value.array->end(), std::back_inserter(stack)); in destroy()
588 current_item.m_value.array->clear(); in destroy()
590 else if (current_item.is_object()) in destroy()
592 for (auto&& it : *current_item.m_value.object) in destroy()
597 current_item.m_value.object->clear(); in destroy()
600 // it's now safe that current_item ge in destroy()
[all...]
/third_party/mesa3d/src/imgui/
H A Dimgui.h404 IMGUI_API bool Combo(const char* label, int* current_item, const char* const items[], int items_count, int popup_max_height_in_items = -1);
405 IMGUI_API bool Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int popup_max_height_in_items = -1); // Separate items with \0 within a string, end item-list with \0\0. e.g. "One\0Two\0Three\0"
406 IMGUI_API bool Combo(const char* label, int* current_item, bool(*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int popup_max_height_in_items = -1);
499 IMGUI_API bool ListBox(const char* label, int* current_item, const char* const items[], int items_count, int height_in_items = -1);
500 IMGUI_API bool ListBox(const char* label, int* current_item, bool (*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int height_in_items = -1);
H A Dimgui_widgets.cpp1418 bool ImGui::Combo(const char* label, int* current_item, bool (*items_getter)(void*, int, const char**), void* data, int items_count, int popup_max_height_in_items) in Combo() argument
1424 if (*current_item >= 0 && *current_item < items_count) in Combo()
1425 items_getter(data, *current_item, &preview_value); in Combo()
1440 const bool item_selected = (i == *current_item); in Combo()
1447 *current_item = i; in Combo()
1459 bool ImGui::Combo(const char* label, int* current_item, const char* const items[], int items_count, int height_in_items) in Combo() argument
1461 const bool value_changed = Combo(label, current_item, Items_ArrayGetter, (void*)items, items_count, height_in_items); in Combo()
1466 bool ImGui::Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int height_in_items) in Combo() argument
1475 bool value_changed = Combo(label, current_item, Items_SingleStringGette in Combo()
[all...]
/third_party/skia/third_party/externals/imgui/
H A Dimgui_widgets.cpp1781 bool ImGui::Combo(const char* label, int* current_item, bool (*items_getter)(void*, int, const char**), void* data, int items_count, int popup_max_height_in_items) in Combo() argument
1787 if (*current_item >= 0 && *current_item < items_count) in Combo()
1788 items_getter(data, *current_item, &preview_value); in Combo()
1803 const bool item_selected = (i == *current_item); in Combo()
1810 *current_item = i; in Combo()
1826 bool ImGui::Combo(const char* label, int* current_item, const char* const items[], int items_count, int height_in_items) in Combo() argument
1828 const bool value_changed = Combo(label, current_item, Items_ArrayGetter, (void*)items, items_count, height_in_items); in Combo()
1833 bool ImGui::Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int height_in_items) in Combo() argument
1842 bool value_changed = Combo(label, current_item, Items_SingleStringGette in Combo()
[all...]
H A Dimgui.h521 IMGUI_API bool Combo(const char* label, int* current_item, const char* const items[], int items_count, int popup_max_height_in_items = -1);
522 IMGUI_API bool Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int popup_max_height_in_items = -1); // Separate items with \0 within a string, end item-list with \0\0. e.g. "One\0Two\0Three\0"
523 IMGUI_API bool Combo(const char* label, int* current_item, bool(*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int popup_max_height_in_items = -1);
632 IMGUI_API bool ListBox(const char* label, int* current_item, const char* const items[], int items_count, int height_in_items = -1);
633 IMGUI_API bool ListBox(const char* label, int* current_item, bool (*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int height_in_items = -1);
/third_party/selinux/libsepol/cil/src/
H A Dcil_build_ast.c5249 struct cil_tree_node *current_item; in cil_gen_macro() local
5272 current_item = parse_current->next->next->cl_head; in cil_gen_macro()
5273 while (current_item != NULL) { in cil_gen_macro()
5284 rc =__cil_verify_syntax(current_item->cl_head, param_syntax, param_syntax_len); in cil_gen_macro()
5293 kind = current_item->cl_head->data; in cil_gen_macro()
5332 param->str = current_item->cl_head->next->data; in cil_gen_macro()
5351 current_item = current_item->next; in cil_gen_macro()
/third_party/json/tests/abi/include/nlohmann/
H A Djson_v3_10_5.hpp17747 basic_json current_item(std::move(stack.back()));
17750 // if current_item is array/object, move
17752 if (current_item.is_array())
17754 std::move(current_item.m_value.array->begin(), current_item.m_value.array->end(), std::back_inserter(stack));
17756 current_item.m_value.array->clear();
17758 else if (current_item.is_object())
17760 for (auto&& it : *current_item.m_value.object)
17765 current_item.m_value.object->clear();
17768 // it's now safe that current_item ge
[all...]

Completed in 102 milliseconds

12