| /llvm-project-15.0.7/lldb/examples/scripting/ |
| H A D | dictionary.c | 91 if (*dictionary == NULL) { in populate_dictionary() 96 *dictionary = new_node; in populate_dictionary() 107 if (!word || !dictionary) in find_word() 123 if (!dictionary) in print_tree() 126 if (dictionary->left) in print_tree() 127 print_tree(dictionary->left); in print_tree() 129 printf("%s\n", dictionary->word); in print_tree() 131 if (dictionary->right) in print_tree() 132 print_tree(dictionary->right); in print_tree() 136 tree_node *dictionary = NULL; in main() local [all …]
|
| /llvm-project-15.0.7/lldb/test/API/types/ |
| H A D | HideTestFailures.py | 46 self.build(dictionary=d) 47 self.setTearDownCleanup(dictionary=d) 53 self.build(dictionary=d) 54 self.setTearDownCleanup(dictionary=d) 60 self.build(dictionary=d) 61 self.setTearDownCleanup(dictionary=d) 67 self.build(dictionary=d) 68 self.setTearDownCleanup(dictionary=d) 74 self.build(dictionary=d) 75 self.setTearDownCleanup(dictionary=d)
|
| H A D | TestRecursiveTypes.py | 29 self.build(dictionary=self.d1) 30 self.setTearDownCleanup(dictionary=self.d1) 35 self.build(dictionary=self.d2) 36 self.setTearDownCleanup(dictionary=self.d2)
|
| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | dictionary-literal-duplicates.m | 29 @"foo" : @0, // expected-warning{{duplicate key in dictionary literal}} 30 @("foo") : @0, // expected-warning{{duplicate key in dictionary literal}} 34 @YES : @0, // expected-warning{{duplicate key in dictionary literal}} 35 @'\1' : @0, // expected-warning{{duplicate key in dictionary literal}} 36 @1 : @0, // expected-warning{{duplicate key in dictionary literal}} 37 @1ul : @0, // expected-warning{{duplicate key in dictionary literal}} 38 @1ll : @0, // expected-warning{{duplicate key in dictionary literal}} 40 @true : @0, // expected-warning{{duplicate key in dictionary literal}} 46 @-1ll : @0, // expected-warning{{duplicate key in dictionary literal}} 47 @(NO-YES) : @0, // expected-warning{{duplicate key in dictionary literal}} [all …]
|
| /llvm-project-15.0.7/lldb/test/API/python_api/target/ |
| H A D | TestTargetAPI.py | 39 self.build(dictionary=d) 46 self.build(dictionary=d) 54 self.build(dictionary=d) 71 self.build(dictionary=d) 79 self.build(dictionary=d) 86 self.build(dictionary=d) 93 self.build(dictionary=d) 115 self.build(dictionary=d) 138 self.build(dictionary=d) 170 self.build(dictionary=d) [all …]
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/char/ |
| H A D | TestExprsChar.py | 8 def do_test(self, dictionary=None): argument 10 self.build(dictionary=dictionary) 28 self.do_test(dictionary={'CFLAGS_EXTRAS': '-fsigned-char'}) 43 self.do_test(dictionary={'CFLAGS_EXTRAS': '-funsigned-char'})
|
| /llvm-project-15.0.7/lldb/docs/use/ |
| H A D | python.rst | 39 $ ./dictionary Romeo-and-Juliet.txt 200 frame #0: 0x0000000100001830 dictionary`find_word + 16 at dictionary.c:105 438 frame #0: 0x000000010000189f dictionary`find_word + 127 at dictionary.c:115 458 (lldb) expr dictionary->word 619 dictionary.c - Sample dictionary program, with bug 718 *dictionary = new_node; 729 if (!word || !dictionary) 745 if (!dictionary) 748 if (dictionary->left) 753 if (dictionary->right) [all …]
|
| /llvm-project-15.0.7/lldb/test/API/commands/watchpoints/watchpoint_commands/ |
| H A D | TestWatchpointCommands.py | 39 self.build(dictionary=self.d) 40 self.setTearDownCleanup(dictionary=self.d) 166 self.build(dictionary=self.d) 167 self.setTearDownCleanup(dictionary=self.d) 223 self.build(dictionary=self.d) 224 self.setTearDownCleanup(dictionary=self.d) 290 self.build(dictionary=self.d) 291 self.setTearDownCleanup(dictionary=self.d)
|
| /llvm-project-15.0.7/clang/test/Index/ |
| H A D | annotate-subscripting.m | 30 NSMutableDictionary *dictionary; 33 oldObject = dictionary[key]; 34 dictionary[key] = newObject; 66 // CHECK: Identifier: "dictionary" [33:15 - 33:25] DeclRefExpr=dictionary:30:24 71 // CHECK: Identifier: "dictionary" [34:3 - 34:13] DeclRefExpr=dictionary:30:24
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbplatformutil.py | 95 def finalize_build_dictionary(dictionary): argument 97 if dictionary is None: 98 dictionary = {} 99 dictionary["OS"] = "Android" 100 dictionary["PIE"] = 1 101 return dictionary
|
| /llvm-project-15.0.7/lldb/test/API/python_api/hello_world/ |
| H A D | TestHelloWorld.py | 34 self.build(dictionary=d) 35 self.setTearDownCleanup(dictionary=d) 78 self.build(dictionary=d) 79 self.setTearDownCleanup(dictionary=d) 109 self.build(dictionary=d) 110 self.setTearDownCleanup(dictionary=d)
|
| /llvm-project-15.0.7/clang/test/PCH/ |
| H A D | objc_container.h | 19 NSMutableDictionary *dictionary; in all() local 22 oldObject = dictionary[key]; in all() 24 dictionary[key] = newObject; in all()
|
| /llvm-project-15.0.7/lldb/test/API/commands/watchpoints/watchpoint_commands/command/ |
| H A D | TestWatchpointCommandLLDB.py | 34 self.build(dictionary=self.d) 35 self.setTearDownCleanup(dictionary=self.d) 98 self.build(dictionary=self.d) 99 self.setTearDownCleanup(dictionary=self.d)
|
| H A D | TestWatchpointCommandPython.py | 35 self.build(dictionary=self.d) 36 self.setTearDownCleanup(dictionary=self.d) 97 self.build(dictionary=self.d) 98 self.setTearDownCleanup(dictionary=self.d)
|
| /llvm-project-15.0.7/lldb/test/API/commands/target/basic/ |
| H A D | TestTargetCommand.py | 26 self.build(dictionary=db) 27 self.addTearDownCleanup(dictionary=db) 31 self.build(dictionary=da) 32 self.addTearDownCleanup(dictionary=da) 37 self.build(dictionary=dc) 38 self.addTearDownCleanup(dictionary=dc) 49 self.build(dictionary=d) 50 self.addTearDownCleanup(dictionary=d) 58 self.build(dictionary=d) 59 self.addTearDownCleanup(dictionary=d)
|
| /llvm-project-15.0.7/lldb/test/API/lang/c/forward/ |
| H A D | TestForwardDeclaration.py | 13 def do_test(self, dictionary=None): argument 15 self.build(dictionary=dictionary)
|
| /llvm-project-15.0.7/mlir/test/IR/ |
| H A D | invalid-func-op.mlir | 84 …bility' is an inferred attribute and should not be specified in the explicit attribute dictionary}} 89 …m_name' is an inferred attribute and should not be specified in the explicit attribute dictionary}} 94 …n_type' is an inferred attribute and should not be specified in the explicit attribute dictionary}} 104 // expected-error@+1 {{expects argument attribute dictionary to be a DictionaryAttr, but got `10 : … 114 // expected-error@+1 {{expects result attribute dictionary to be a DictionaryAttr, but got `10 : i6…
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/forward-decl/ |
| H A D | TestForwardDecl.py | 21 def do_test(self, dictionary=None): argument 22 self.build(dictionary=dictionary)
|
| /llvm-project-15.0.7/clang/test/CodeGenObjC/ |
| H A D | objc-container-subscripting.m | 38 NSMutableDictionary *dictionary; 41 oldObject = dictionary[key]; 42 dictionary[key] = newObject; // replace oldObject with newObject
|
| /llvm-project-15.0.7/lldb/test/API/python_api/thread/ |
| H A D | TestThreadAPI.py | 31 self.build(dictionary=d) 32 self.setTearDownCleanup(dictionary=d) 42 self.build(dictionary=d) 43 self.setTearDownCleanup(dictionary=d) 50 self.build(dictionary=d) 51 self.setTearDownCleanup(dictionary=d)
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/dynamic-value/ |
| H A D | TestCppValueCast.py | 21 self.build(dictionary=self.d_virtual) 22 self.setTearDownCleanup(dictionary=self.d_virtual) 28 self.build(dictionary=self.d_regular) 29 self.setTearDownCleanup(dictionary=self.d_regular)
|
| /llvm-project-15.0.7/clang/test/Rewriter/ |
| H A D | objc-modern-container-subscript.mm | 43 NSMutableDictionary *dictionary; 46 oldObject = dictionary[key]; 47 dictionary[key] = newObject; // replace oldObject with newObject
|
| /llvm-project-15.0.7/clang/tools/clang-fuzzer/dictionary/ |
| H A D | CMakeLists.txt | 1 add_clang_executable(clang-fuzzer-dictionary 2 dictionary.c
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/clang/tools/clang-fuzzer/dictionary/ |
| H A D | BUILD.gn | 1 executable("clang-fuzzer-dictionary") { 3 sources = [ "dictionary.c" ]
|
| /llvm-project-15.0.7/compiler-rt/test/fuzzer/ |
| H A D | recommended-dictionary.test | 4 RECOMMENDED_DICT:###### Recommended dictionary. ###### 7 RECOMMENDED_DICT:###### End of recommended dictionary. ######
|