Home
last modified time | relevance | path

Searched refs:root (Results 1 - 25 of 3694) sorted by relevance

12345678910>>...148

/third_party/icu/icu4c/source/test/cintltst/
H A Dcalltest.c21 void addUtility(TestNode** root);
22 void addBreakIter(TestNode** root);
23 void addStandardNamesTest(TestNode **root);
24 void addFormatTest(TestNode** root);
25 void addConvert(TestNode** root);
26 void addCollTest(TestNode** root);
27 void addComplexTest(TestNode** root);
28 void addBidiTransformTest(TestNode** root);
29 void addUDataTest(TestNode** root);
30 void addUTF16Test(TestNode** root);
49 addAllTests(TestNode** root) addAllTests() argument
[all...]
H A Dcutiltst.c26 void addHashtableTest(TestNode** root);
27 void addCStringTest(TestNode** root);
28 void addTrieTest(TestNode** root);
29 void addTrie2Test(TestNode** root);
30 void addUCPTrieTest(TestNode** root);
31 void addEnumerationTest(TestNode** root);
32 void addPosixTest(TestNode** root);
33 void addSortTest(TestNode** root);
35 void addUtility(TestNode** root);
37 void addUtility(TestNode** root) in addUtility() argument
[all...]
H A Dcformtst.c40 void addURegionTest(TestNode** root);
41 void addUListFmtTest(TestNode** root);
42 void addUNumberFormatterTest(TestNode** root);
43 void addUFormattedValueTest(TestNode** root);
44 void addUNumberRangeFormatterTest(TestNode** root);
46 void addFormatTest(TestNode** root);
48 void addFormatTest(TestNode** root) in addFormatTest() argument
50 addCalTest(root); in addFormatTest()
51 addDateForTest(root); in addFormatTest()
52 addDateTimePatternGeneratorTest(root); in addFormatTest()
[all...]
/third_party/cJSON/tests/
H A Dcjson_add.c50 cJSON *root = cJSON_CreateObject(); in cjson_add_null_should_add_null() local
53 cJSON_AddNullToObject(root, "null"); in cjson_add_null_should_add_null()
55 TEST_ASSERT_NOT_NULL(null = cJSON_GetObjectItemCaseSensitive(root, "null")); in cjson_add_null_should_add_null()
58 cJSON_Delete(root); in cjson_add_null_should_add_null()
63 cJSON *root = cJSON_CreateObject(); in cjson_add_null_should_fail_with_null_pointers() local
66 TEST_ASSERT_NULL(cJSON_AddNullToObject(root, NULL)); in cjson_add_null_should_fail_with_null_pointers()
68 cJSON_Delete(root); in cjson_add_null_should_fail_with_null_pointers()
73 cJSON *root = cJSON_CreateObject(); in cjson_add_null_should_fail_on_allocation_failure() local
77 TEST_ASSERT_NULL(cJSON_AddNullToObject(root, "null")); in cjson_add_null_should_fail_on_allocation_failure()
81 cJSON_Delete(root); in cjson_add_null_should_fail_on_allocation_failure()
86 cJSON *root = cJSON_CreateObject(); cjson_add_true_should_add_true() local
99 cJSON *root = cJSON_CreateObject(); cjson_add_true_should_fail_with_null_pointers() local
109 cJSON *root = cJSON_CreateObject(); cjson_add_true_should_fail_on_allocation_failure() local
166 cJSON *root = cJSON_CreateObject(); cjson_add_false_should_add_false() local
179 cJSON *root = cJSON_CreateObject(); cjson_add_false_should_fail_with_null_pointers() local
189 cJSON *root = cJSON_CreateObject(); cjson_add_false_should_fail_on_allocation_failure() local
202 cJSON *root = cJSON_CreateObject(); cjson_add_bool_should_add_bool() local
221 cJSON *root = cJSON_CreateObject(); cjson_add_bool_should_fail_with_null_pointers() local
231 cJSON *root = cJSON_CreateObject(); cjson_add_bool_should_fail_on_allocation_failure() local
244 cJSON *root = cJSON_CreateObject(); cjson_add_number_should_add_number() local
260 cJSON *root = cJSON_CreateObject(); cjson_add_number_should_fail_with_null_pointers() local
270 cJSON *root = cJSON_CreateObject(); cjson_add_number_should_fail_on_allocation_failure() local
284 cJSON *root = cJSON_CreateObject(); cjson_add_int64_number_should_add_int64_number() local
300 cJSON *root = cJSON_CreateObject(); cjson_add_int64_number_should_fail_with_null_pointers() local
310 cJSON *root = cJSON_CreateObject(); cjson_add_int64_number_should_fail_on_allocation_failure() local
324 cJSON *root = cJSON_CreateObject(); cjson_add_string_should_add_string() local
338 cJSON *root = cJSON_CreateObject(); cjson_add_string_should_fail_with_null_pointers() local
348 cJSON *root = cJSON_CreateObject(); cjson_add_string_should_fail_on_allocation_failure() local
361 cJSON *root = cJSON_CreateObject(); cjson_add_raw_should_add_raw() local
375 cJSON *root = cJSON_CreateObject(); cjson_add_raw_should_fail_with_null_pointers() local
385 cJSON *root = cJSON_CreateObject(); cjson_add_raw_should_fail_on_allocation_failure() local
398 cJSON *root = cJSON_CreateObject(); cJSON_add_object_should_add_object() local
410 cJSON *root = cJSON_CreateObject(); cjson_add_object_should_fail_with_null_pointers() local
420 cJSON *root = cJSON_CreateObject(); cjson_add_object_should_fail_on_allocation_failure() local
433 cJSON *root = cJSON_CreateObject(); cJSON_add_array_should_add_array() local
445 cJSON *root = cJSON_CreateObject(); cjson_add_array_should_fail_with_null_pointers() local
455 cJSON *root = cJSON_CreateObject(); cjson_add_array_should_fail_on_allocation_failure() local
[all...]
H A Dold_utils_tests.c54 cJSON *root = NULL; in json_pointer_tests() local
69 root = cJSON_Parse(json); in json_pointer_tests()
71 TEST_ASSERT_EQUAL_PTR(cJSONUtils_GetPointer(root, ""), root); in json_pointer_tests()
72 TEST_ASSERT_EQUAL_PTR(cJSONUtils_GetPointer(root, "/foo"), cJSON_GetObjectItem(root, "foo")); in json_pointer_tests()
73 TEST_ASSERT_EQUAL_PTR(cJSONUtils_GetPointer(root, "/foo/0"), cJSON_GetObjectItem(root, "foo")->child); in json_pointer_tests()
74 TEST_ASSERT_EQUAL_PTR(cJSONUtils_GetPointer(root, "/foo/0"), cJSON_GetObjectItem(root, "fo in json_pointer_tests()
[all...]
/third_party/node/deps/v8/src/torque/
H A Dinstance-type-generator.cc59 std::unique_ptr<InstanceTypeTree> root; in BuildInstanceTypeTree() local
63 if (root != nullptr) in BuildInstanceTypeTree()
64 Error("Expected only one root class type. Found: ", root->type->name(), in BuildInstanceTypeTree()
67 root = std::move(type_tree); in BuildInstanceTypeTree()
72 return root; in BuildInstanceTypeTree()
76 void PropagateInstanceTypeConstraints(InstanceTypeTree* root) { in PropagateInstanceTypeConstraints() argument
77 for (auto& child : root->children) { in PropagateInstanceTypeConstraints()
79 if (child->start < root->start) root in PropagateInstanceTypeConstraints()
111 SelectOwnValues(InstanceTypeTree* root, int start_value) SelectOwnValues() argument
141 SolveInstanceTypeConstraints( std::unique_ptr<InstanceTypeTree> root, int start_value, std::vector<std::unique_ptr<InstanceTypeTree>>* destination) SolveInstanceTypeConstraints() argument
269 SolveInstanceTypeConstraints( std::unique_ptr<InstanceTypeTree> root) SolveInstanceTypeConstraints() argument
277 std::unique_ptr<InstanceTypeTree> root = BuildInstanceTypeTree(); AssignInstanceTypes() local
310 PrintInstanceTypes(InstanceTypeTree* root, std::ostream& definitions, std::ostream& values, std::ostream& fully_defined_single_instance_types, std::ostream& fully_defined_multiple_instance_types, std::ostream& only_declared_single_instance_types, std::ostream& only_declared_multiple_instance_types, std::ostream& fully_defined_range_instance_types, std::ostream& only_declared_range_instance_types, const std::string& indent) PrintInstanceTypes() argument
[all...]
/third_party/skia/src/ports/skia_ohos/
H A DHmSymbolConfig_ohos.cpp249 int HmSymbolConfig_OHOS::CheckConfigFile(const char* fname, Json::Value& root) in CheckConfigFile() argument
259 bool isJson = jsonReader->parse(data.get(), data.get() + size, &root, &errs); in CheckConfigFile()
289 Json::Value root; in ParseConfigOfHmSymbol() local
290 int err = CheckConfigFile(fullname.c_str(), root); in ParseConfigOfHmSymbol()
299 if (!root.isMember(key) || !root[key].isArray()) { in ParseConfigOfHmSymbol()
303 ParseSymbolAnimations(root[key], &animationInfos_); in ParseConfigOfHmSymbol()
305 ParseSymbolLayersGrouping(root[key]); in ParseConfigOfHmSymbol()
308 root.clear(); in ParseConfigOfHmSymbol()
313 void HmSymbolConfig_OHOS::ParseSymbolAnimations(const Json::Value& root, in ParseSymbolAnimations() argument
351 ParseSymbolAnimationParas(const Json::Value& root, std::map<uint32_t, AnimationPara>& animationParas) ParseSymbolAnimationParas() argument
367 ParseSymbolAnimationPara(const Json::Value& root, AnimationPara& animationPara) ParseSymbolAnimationPara() argument
437 ParseSymbolGroupParas(const Json::Value& root, std::vector<std::vector<PiecewiseParameter>>& groupParameters) ParseSymbolGroupParas() argument
461 PiecewiseParaCurveCase(const char* key, const Json::Value& root, PiecewiseParameter& piecewiseParameter) PiecewiseParaCurveCase() argument
476 PiecewiseParaDurationCase(const char* key, const Json::Value& root, PiecewiseParameter& piecewiseParameter) PiecewiseParaDurationCase() argument
486 PiecewiseParaDelayCase(const char* key, const Json::Value& root, PiecewiseParameter& piecewiseParameter) PiecewiseParaDelayCase() argument
495 ParseSymbolPiecewisePara(const Json::Value& root, PiecewiseParameter& piecewiseParameter) ParseSymbolPiecewisePara() argument
535 ParseSymbolCurveArgs(const Json::Value& root, std::map<std::string, float>& curveArgs) ParseSymbolCurveArgs() argument
552 ParseSymbolProperties(const Json::Value& root, std::map<std::string, std::vector<float>>& properties) ParseSymbolProperties() argument
576 ParseSymbolLayersGrouping(const Json::Value& root) ParseSymbolLayersGrouping() argument
589 SymbolGlyphCase(const char* key, const Json::Value& root, SymbolLayersGroups& symbolLayersGroups) SymbolGlyphCase() argument
598 ParseOneSymbolNativeCase(const char* key, const Json::Value& root, SymbolLayersGroups& symbolLayersGroups, uint16_t& nativeGlyphId) ParseOneSymbolNativeCase() argument
608 ParseOneSymbolLayerCase(const char* key, const Json::Value& root, SymbolLayersGroups& symbolLayersGroups) ParseOneSymbolLayerCase() argument
618 ParseOneSymbolRenderCase(const char* key, const Json::Value& root, SymbolLayersGroups& symbolLayersGroups) ParseOneSymbolRenderCase() argument
628 ParseOneSymbolAnimateCase(const char* key, const Json::Value& root, SymbolLayersGroups& symbolLayersGroups) ParseOneSymbolAnimateCase() argument
638 ParseOneSymbol(const Json::Value& root, std::unordered_map<uint16_t, SymbolLayersGroups>* hmSymbolConfig) ParseOneSymbol() argument
683 ParseLayers(const Json::Value& root, std::vector<std::vector<size_t>>& layers) ParseLayers() argument
705 ParseComponets(const Json::Value& root, std::vector<size_t>& components) ParseComponets() argument
716 ParseRenderModes(const Json::Value& root, std::map<SymbolRenderingStrategy, std::vector<RenderGroup>>& renderModesGroups) ParseRenderModes() argument
756 ParseRenderGroups(const Json::Value& root, std::vector<RenderGroup>& renderGroups) ParseRenderGroups() argument
778 ParseGroupIndexes(const Json::Value& root, std::vector<GroupInfo>& groupInfos) ParseGroupIndexes() argument
800 ParseLayerOrMaskIndexes(const Json::Value& root, std::vector<size_t>& indexes) ParseLayerOrMaskIndexes() argument
833 ParseAnimationSettings(const Json::Value& root, std::vector<AnimationSetting>& animationSettings) ParseAnimationSettings() argument
847 ParseAnimationSetting(const Json::Value& root, AnimationSetting& animationSetting) ParseAnimationSetting() argument
858 ParseAnimationTypes(const Json::Value& root, std::vector<AnimationType>& animationTypes) ParseAnimationTypes() argument
882 ParseGroupSettings(const Json::Value& root, std::vector<GroupSetting>& groupSettings) ParseGroupSettings() argument
895 ParseGroupSetting(const Json::Value& root, GroupSetting& groupSetting) ParseGroupSetting() argument
[all...]
/third_party/python/Lib/tkinter/test/test_tkinter/
H A Dtest_misc.py27 t = tkinter.Toplevel(self.root, name='top')
32 t = tkinter.Toplevel(self.root)
40 root = self.root
41 root.tk_setPalette('black')
42 self.assertEqual(root['background'], 'black')
43 root.tk_setPalette('white')
44 self.assertEqual(root['background'], 'white')
47 root.tk_setPalette, 'spam')
49 root
[all...]
H A Dtest_variables.py25 self.root = Tcl()
28 del self.root
34 return self.root.getboolean(self.root.call("info", "exists", *args))
37 v = Variable(self.root)
42 v = Variable(self.root, "sample string", "varname")
48 v = Variable(self.root, "sample string", "varname")
56 v1 = Variable(self.root, name="name")
57 v2 = Variable(self.root, name="name")
68 v1 = Variable(self.root, nam
[all...]
/vendor/hisilicon/hispark_pegasus/demo/iottencent_demo/
H A Diot_profile.c46 cJSON *root; in MakeKvs() local
50 // < build a root node in MakeKvs()
51 root = cJSON_CreateObject(); in MakeKvs()
52 if (root == NULL) { in MakeKvs()
53 cJSON_Delete(root); in MakeKvs()
54 root = NULL; in MakeKvs()
55 return root; in MakeKvs()
62 if (root != NULL) { in MakeKvs()
63 cJSON_Delete(root); in MakeKvs()
64 root in MakeKvs()
81 cJSON *root; MakeService() local
190 cJSON *root; MakeProfileCmdResp() local
240 cJSON *root; MakeProfilePropertyReport() local
270 cJSON *root; MakeProfileReport() local
[all...]
/vendor/hisilicon/hispark_pegasus/demo/mqtt_demo/
H A Diot_profile.c46 cJSON *root; in MakeKvs() local
50 // < build a root node in MakeKvs()
51 root = cJSON_CreateObject(); in MakeKvs()
52 if (root == NULL) { in MakeKvs()
53 cJSON_Delete(root); in MakeKvs()
54 root = NULL; in MakeKvs()
55 return root; in MakeKvs()
62 if (root != NULL) { in MakeKvs()
63 cJSON_Delete(root); in MakeKvs()
64 root in MakeKvs()
81 cJSON *root; MakeService() local
190 cJSON *root; MakeProfileCmdResp() local
240 cJSON *root; MakeProfilePropertyReport() local
270 cJSON *root; MakeProfileReport() local
[all...]
/vendor/hisilicon/hispark_pegasus/demo/coap_demo/
H A Diot_profile.c50 cJSON *root; in MakeKvs() local
54 // build a root node in MakeKvs()
55 root = cJSON_CreateObject(); in MakeKvs()
56 if (root == NULL) { in MakeKvs()
57 return root; in MakeKvs()
65 if (root != NULL) { in MakeKvs()
66 cJSON_Delete(root); in MakeKvs()
67 root = NULL; in MakeKvs()
69 return root; in MakeKvs()
72 cJSON_AddItemToObject(root, kvInf in MakeKvs()
85 cJSON *root; MakeService() local
188 cJSON *root; MakeProfileCmdResp() local
264 cJSON *root; MakeProfilePropertyReport() local
[all...]
/vendor/hisilicon/hispark_pegasus/demo/oc_demo/
H A Diot_profile.c44 cJSON *root; in MakeKvs() local
48 // build a root node in MakeKvs()
49 root = cJSON_CreateObject(); in MakeKvs()
50 if (root == NULL) { in MakeKvs()
51 return root; in MakeKvs()
59 if (root != NULL) { in MakeKvs()
60 cJSON_Delete(root); in MakeKvs()
61 root = NULL; in MakeKvs()
63 return root; in MakeKvs()
66 cJSON_AddItemToObject(root, kvInf in MakeKvs()
79 cJSON *root; MakeService() local
187 cJSON *root; MakeProfileCmdResp() local
264 cJSON *root; MakeProfilePropertyReport() local
[all...]
/kernel/linux/linux-5.10/fs/btrfs/
H A Dinode-map.c16 static void fail_caching_thread(struct btrfs_root *root) in fail_caching_thread() argument
18 struct btrfs_fs_info *fs_info = root->fs_info; in fail_caching_thread()
23 spin_lock(&root->ino_cache_lock); in fail_caching_thread()
24 root->ino_cache_state = BTRFS_CACHE_ERROR; in fail_caching_thread()
25 spin_unlock(&root->ino_cache_lock); in fail_caching_thread()
26 wake_up(&root->ino_cache_wait); in fail_caching_thread()
31 struct btrfs_root *root = data; in caching_kthread() local
32 struct btrfs_fs_info *fs_info = root->fs_info; in caching_kthread()
33 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl; in caching_kthread()
46 fail_caching_thread(root); in caching_kthread()
139 start_caching(struct btrfs_root *root) start_caching() argument
189 btrfs_find_free_ino(struct btrfs_root *root, u64 *objectid) btrfs_find_free_ino() argument
216 btrfs_return_ino(struct btrfs_root *root, u64 objectid) btrfs_return_ino() argument
252 btrfs_unpin_free_ino(struct btrfs_root *root) btrfs_unpin_free_ino() argument
369 btrfs_init_free_ino_ctl(struct btrfs_root *root) btrfs_init_free_ino_ctl() argument
397 btrfs_save_ino_cache(struct btrfs_root *root, struct btrfs_trans_handle *trans) btrfs_save_ino_cache() argument
[all...]
/kernel/linux/linux-6.6/drivers/acpi/
H A Dpci_root.c60 * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
154 static void decode_osc_bits(struct acpi_pci_root *root, char *msg, u32 word, in decode_osc_bits() argument
167 dev_info(&root->device->dev, "_OSC: %s [%s]\n", msg, buf); in decode_osc_bits()
170 static void decode_osc_support(struct acpi_pci_root *root, char *msg, u32 word) in decode_osc_support() argument
172 decode_osc_bits(root, msg, word, pci_osc_support_bit, in decode_osc_support()
176 static void decode_osc_control(struct acpi_pci_root *root, char *msg, u32 word) in decode_osc_control() argument
178 decode_osc_bits(root, msg, word, pci_osc_control_bit, in decode_osc_control()
182 static void decode_cxl_osc_support(struct acpi_pci_root *root, char *msg, u32 word) in decode_cxl_osc_support() argument
184 decode_osc_bits(root, msg, word, cxl_osc_support_bit, in decode_cxl_osc_support()
188 static void decode_cxl_osc_control(struct acpi_pci_root *root, cha argument
194 is_pcie(struct acpi_pci_root *root) is_pcie() argument
199 is_cxl(struct acpi_pci_root *root) is_cxl() argument
207 to_uuid(struct acpi_pci_root *root) to_uuid() argument
214 cap_length(struct acpi_pci_root *root) cap_length() argument
221 acpi_pci_run_osc(struct acpi_pci_root *root, const u32 *capbuf, u32 *pci_control, u32 *cxl_control) acpi_pci_run_osc() argument
243 acpi_pci_query_osc(struct acpi_pci_root *root, u32 support, u32 *control, u32 cxl_support, u32 *cxl_control) acpi_pci_query_osc() argument
285 struct acpi_pci_root *root; acpi_pci_find_root() local
360 struct acpi_pci_root *root; acpi_pci_osc_control_set() local
546 os_control_query_checks(struct acpi_pci_root *root, u32 support) os_control_query_checks() argument
564 negotiate_os_control(struct acpi_pci_root *root, int *no_aspm) negotiate_os_control() argument
650 struct acpi_pci_root *root; acpi_pci_root_add() local
780 struct acpi_pci_root *root = acpi_driver_data(device); acpi_pci_root_remove() local
810 struct resource *res1, *res2, *root = NULL; acpi_pci_root_validate_resources() local
938 struct resource *res, *conflict, *root = NULL; pci_acpi_root_add_resources() local
1001 acpi_pci_root_create(struct acpi_pci_root *root, struct acpi_pci_root_ops *ops, struct acpi_pci_root_info *info, void *sysdata) acpi_pci_root_create() argument
[all...]
/third_party/python/Lib/idlelib/
H A Dmacosx.py36 root = tkinter.Tk()
37 ws = root.tk.call('tk', 'windowingsystem')
42 elif 'AppKit' in root.tk.call('winfo', 'server', '.'):
46 root.destroy()
120 def addOpenEventSupport(root, flist):
132 root.createcommand("::tk::mac::OpenDocument", doOpenFile)
134 def hideTkConsole(root):
136 root.tk.call('console', 'hide')
141 def overrideRootMenu(root, flist):
143 Replace the Tk root men
[all...]
/third_party/cJSON/
H A Dtest.c43 static int print_preallocated(cJSON *root) in print_preallocated() argument
53 out = cJSON_Print(root); in print_preallocated()
75 if (!cJSON_PrintPreallocated(root, buf, (int)len, 1)) { in print_preallocated()
92 if (cJSON_PrintPreallocated(root, buf_fail, (int)len_fail, 1)) { in print_preallocated()
112 cJSON *root = NULL; in create_objects() local
168 root = cJSON_CreateObject(); in create_objects()
169 cJSON_AddItemToObject(root, "name", cJSON_CreateString("Jack (\"Bee\") Nimble")); in create_objects()
170 cJSON_AddItemToObject(root, "format", fmt = cJSON_CreateObject()); in create_objects()
178 if (print_preallocated(root) != 0) { in create_objects()
179 cJSON_Delete(root); in create_objects()
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DTranslatorMetalDirect.cpp196 TIntermBlock *root, in ReplaceGLDepthRangeWithDriverUniform()
208 return ReplaceVariableWithTyped(compiler, root, depthRangeVar, angleEmulatedDepthRangeRef); in ReplaceGLDepthRangeWithDriverUniform()
211 TIntermSequence *GetMainSequence(TIntermBlock *root) in GetMainSequence() argument
213 TIntermFunctionDefinition *main = FindMain(root); in GetMainSequence()
219 TIntermBlock *root, in RotateAndFlipBuiltinVariable()
240 DeclareGlobalVariable(root, replacementVar); in RotateAndFlipBuiltinVariable()
244 if (!ReplaceVariable(compiler, root, builtin, replacementVar)) in RotateAndFlipBuiltinVariable()
282 return compiler->validateAST(root); in RotateAndFlipBuiltinVariable()
287 TIntermBlock *root, in InsertFragCoordCorrection()
317 return RotateAndFlipBuiltinVariable(compiler, root, insertSequenc in InsertFragCoordCorrection()
195 ReplaceGLDepthRangeWithDriverUniform(TCompiler *compiler, TIntermBlock *root, const DriverUniformMetal *driverUniforms, TSymbolTable *symbolTable) ReplaceGLDepthRangeWithDriverUniform() argument
218 RotateAndFlipBuiltinVariable(TCompiler *compiler, TIntermBlock *root, TIntermSequence *insertSequence, TIntermTyped *flipXY, TSymbolTable *symbolTable, const TVariable *builtin, const Name &flippedVariableName, TIntermTyped *pivot, TIntermTyped *fragRotation) RotateAndFlipBuiltinVariable() argument
285 InsertFragCoordCorrection(TCompiler *compiler, ShCompileOptions compileOptions, TIntermBlock *root, TIntermSequence *insertSequence, TSymbolTable *symbolTable, SpecConst *specConst, const DriverUniformMetal *driverUniforms) InsertFragCoordCorrection() argument
321 DeclareRightBeforeMain(TIntermBlock &root, const TVariable &var) DeclareRightBeforeMain() argument
326 AddFragColorDeclaration(TIntermBlock &root, TSymbolTable &symbolTable) AddFragColorDeclaration() argument
332 AddFragDepthDeclaration(TIntermBlock &root, TSymbolTable &symbolTable) AddFragDepthDeclaration() argument
338 AddFragDepthEXTDeclaration(TCompiler &compiler, TIntermBlock &root, TSymbolTable &symbolTable) AddFragDepthEXTDeclaration() argument
350 AddSampleMaskDeclaration(TIntermBlock &root, TSymbolTable &symbolTable) AddSampleMaskDeclaration() argument
360 AddFragDataDeclaration(TCompiler &compiler, TIntermBlock &root) AddFragDataDeclaration() argument
412 EmulateInstanceID(TCompiler &compiler, TIntermBlock &root, DriverUniform &driverUniforms) EmulateInstanceID() argument
421 AppendVertexShaderTransformFeedbackOutputToMain(TCompiler &compiler, SymbolEnv &mSymbolEnv, TIntermBlock &root) AppendVertexShaderTransformFeedbackOutputToMain() argument
438 AppendVertexShaderPositionYCorrectionToMain(TCompiler *compiler, TIntermBlock *root, TSymbolTable *symbolTable, TIntermTyped *negFlipY) AppendVertexShaderPositionYCorrectionToMain() argument
479 insertSampleMaskWritingLogic( TIntermBlock &root, DriverUniformMetal &driverUniforms) insertSampleMaskWritingLogic() argument
533 insertRasterizationDiscardLogic(TIntermBlock &root) insertRasterizationDiscardLogic() argument
576 transformDepthBeforeCorrection(TIntermBlock *root, const DriverUniformMetal *driverUniforms) transformDepthBeforeCorrection() argument
608 appendVertexShaderDepthCorrectionToMain(TIntermBlock *root) appendVertexShaderDepthCorrectionToMain() argument
650 translateImpl(TInfoSinkBase &sink, TIntermBlock *root, ShCompileOptions compileOptions, PerformanceDiagnostics * , SpecConst *specConst, DriverUniformMetal *driverUniforms) translateImpl() argument
1164 translate(TIntermBlock *root, ShCompileOptions compileOptions, PerformanceDiagnostics *perfDiagnostics) translate() argument
[all...]
/third_party/selinux/libsepol/cil/test/unit/
H A Dtest_cil_resolve_ast.c80 cil_build_ast(test_db, test_tree->root, test_db->ast->root); in test_cil_resolve_name()
82 struct cil_tree_node *test_curr = test_db->ast->root->cl_head->cl_head; in test_cil_resolve_name()
104 cil_build_ast(test_db, test_tree->root, test_db->ast->root); in test_cil_resolve_name_invalid_type_neg()
106 struct cil_tree_node *test_curr = test_db->ast->root->cl_head->cl_head; in test_cil_resolve_name_invalid_type_neg()
118 test_db->ast->root = NULL; in test_cil_resolve_ast_curr_null_neg()
120 int rc = cil_resolve_ast(test_db, test_db->ast->root); in test_cil_resolve_ast_curr_null_neg()
143 cil_build_ast(test_db, test_tree->root, test_db->ast->root); in test_cil_resolve_roleallow()
[all...]
/third_party/skia/third_party/externals/freetype/src/type42/
H A Dt42parse.c114 #define T1_Skip_Spaces( p ) (p)->root.funcs.skip_spaces( &(p)->root )
115 #define T1_Skip_PS_Token( p ) (p)->root.funcs.skip_PS_token( &(p)->root )
118 (p)->root.funcs.to_int( &(p)->root )
120 (p)->root.funcs.to_bytes( &(p)->root, b, m, n, d )
123 (p)->root.funcs.to_fixed_array( &(p)->root,
[all...]
/third_party/skia/third_party/externals/freetype/src/type1/
H A Dt1objs.c58 T1_Face face = (T1_Face)size->root.face; in T1_Size_Get_Globals_Funcs()
63 module = FT_Get_Module( size->root.face->driver->root.library, in T1_Size_Get_Globals_Funcs()
102 T1_Face face = (T1_Face)size->root.face; in FT_LOCAL_DEF()
105 error = funcs->create( size->root.face->memory, in FT_LOCAL_DEF()
125 error = FT_Request_Metrics( size->root.face, req ); in FT_LOCAL_DEF()
131 size->root.metrics.x_scale, in FT_LOCAL_DEF()
132 size->root.metrics.y_scale, in FT_LOCAL_DEF()
168 module = FT_Get_Module( slot->face->driver->root.library, in FT_LOCAL_DEF()
214 memory = face->root in T1_Face_Done()
375 FT_Face root = (FT_Face)&face->root; FT_LOCAL_DEF() local
513 FT_Face root = &face->root; FT_LOCAL_DEF() local
[all...]
/third_party/skia/third_party/externals/freetype/src/cid/
H A Dcidparse.h41 * root ::
42 * The root PS_ParserRec fields.
70 PS_ParserRec root; member
103 (p)->root.funcs.skip_spaces( &(p)->root )
105 (p)->root.funcs.skip_PS_token( &(p)->root )
107 #define cid_parser_to_int( p ) (p)->root.funcs.to_int( &(p)->root )
108 #define cid_parser_to_fixed( p, t ) (p)->root
[all...]
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/
H A Dnode.js1 // inventory, path, realpath, root, and parent
3 // node.root is a reference to the root module in the tree (ie, typically the
6 // node.location is the /-delimited path from the root module to the node. In
7 // the case of link targets that may be outside of the root's package tree,
9 // root module is always '.'. node.location thus never contains drive letters
20 // Setting node.parent will set the node's root to the parent's root, as well
25 // root by that name. It's empty for non-root node
[all...]
/kernel/linux/linux-5.10/drivers/acpi/
H A Dpci_root.c60 * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
144 static void decode_osc_bits(struct acpi_pci_root *root, char *msg, u32 word, in decode_osc_bits() argument
157 dev_info(&root->device->dev, "_OSC: %s [%s]\n", msg, buf); in decode_osc_bits()
160 static void decode_osc_support(struct acpi_pci_root *root, char *msg, u32 word) in decode_osc_support() argument
162 decode_osc_bits(root, msg, word, pci_osc_support_bit, in decode_osc_support()
166 static void decode_osc_control(struct acpi_pci_root *root, char *msg, u32 word) in decode_osc_control() argument
168 decode_osc_bits(root, msg, word, pci_osc_control_bit, in decode_osc_control()
193 static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root, in acpi_pci_query_osc() argument
201 support |= root->osc_support_set; in acpi_pci_query_osc()
207 capbuf[OSC_CONTROL_DWORD] = *control | root in acpi_pci_query_osc()
222 acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags) acpi_pci_osc_support() argument
234 struct acpi_pci_root *root; acpi_pci_find_root() local
273 struct acpi_pci_root *root; acpi_get_pci_dev() local
356 struct acpi_pci_root *root; acpi_pci_osc_control_set() local
409 negotiate_os_control(struct acpi_pci_root *root, int *no_aspm, bool is_pcie) negotiate_os_control() argument
531 struct acpi_pci_root *root; acpi_pci_root_add() local
654 struct acpi_pci_root *root = acpi_driver_data(device); acpi_pci_root_remove() local
684 struct resource *res1, *res2, *root = NULL; acpi_pci_root_validate_resources() local
814 struct resource *res, *conflict, *root = NULL; pci_acpi_root_add_resources() local
877 acpi_pci_root_create(struct acpi_pci_root *root, struct acpi_pci_root_ops *ops, struct acpi_pci_root_info *info, void *sysdata) acpi_pci_root_create() argument
[all...]
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_editor.py17 cls.root = Tk()
18 cls.root.withdraw()
22 cls.root.update_idletasks()
23 for id in cls.root.tk.call('after', 'info'):
24 cls.root.after_cancel(id)
25 cls.root.destroy()
26 del cls.root
29 e = Editor(root=self.root)
30 self.assertEqual(e.root, sel
[all...]

Completed in 25 milliseconds

12345678910>>...148