/external/llvm-project/lldb/test/Shell/SymbolFile/PDB/ |
D | variables.test | 5 RUN: FileCheck --check-prefix=GLOBALS --input-file=%T/VariablesTest.out %s 11 GLOBALS: Module [[MOD:.*]] 12 GLOBALS: SymbolFile pdb ([[MOD]]) 13 GLOBALS: CompileUnit{{.*}}, language = "c++", file = '{{.*}}\VariablesTest.cpp' 14 GLOBALS-DAG: Variable{{.*}}, name = "g_IntVar" 15 GLOBALS-SAME: scope = global, location = {{.*}}, external 16 GLOBALS-DAG: Variable{{.*}}, name = "g_pConst" 17 GLOBALS-SAME: scope = global, location = {{.*}}, external 18 GLOBALS-DAG: Variable{{.*}}, name = "same_name_var" 19 GLOBALS-SAME: scope = global, location = {{.*}}, external [all …]
|
/external/llvm-project/llvm/test/DebugInfo/PDB/DIA/ |
D | pdbdump-symbol-format.test | 8 …N: llvm-pdbutil pretty -globals %p/../Inputs/symbolformat.pdb | FileCheck --check-prefix=GLOBALS %s 62 ; GLOBALS: ---GLOBALS--- 63 ; GLOBALS-DAG: func [{{.*}}] (FPO) unsigned int __cdecl fpo_func(unsigned int n) 64 ; GLOBALS-DAG: data [{{.*}}, sizeof=4] static void* g_global_pointer 65 ; GLOBALS-DAG: data [{{.*}}, sizeof=4] static int g_global_int 66 ; GLOBALS-DAG: data [{{.*}}, sizeof=12] static int g_array[3] 67 ; GLOBALS-DAG: data [{{.*}}, sizeof=4] static int (* g_pointer_to_array)[3] 68 ; GLOBALS-DAG: data [{{.*}}, sizeof=4] static const int* g_pointer_to_const_int 69 ; GLOBALS-DAG: data [sizeof=4] int* const g_const_pointer_to_int = 0 70 ; GLOBALS-DAG: data [sizeof=4] const int* const g_const_pointer_to_const_int = 0
|
D | pdbdump-flags.test | 12 ; NO_ARGS-NOT: ---GLOBALS--- 21 ; TYPES-NOT: ---GLOBALS--- 30 ; COMPILANDS-NOT: ---GLOBALS--- 39 ; MULTIPLE-NOT: ---GLOBALS---
|
/external/rust/crates/ring/crypto/perlasm/ |
D | arm-xlate.pl | 17 my %GLOBALS; 38 my $global = \$GLOBALS{$name}; 55 my $global = \$GLOBALS{$name}; 138 $line =~ s/\b(\w+)/$GLOBALS{$1} or $1/ge; 186 printf "%s:",($GLOBALS{$label} or $label);
|
/external/boringssl/src/crypto/perlasm/ |
D | arm-xlate.pl | 17 my %GLOBALS; 40 my $global = \$GLOBALS{$name}; 57 my $global = \$GLOBALS{$name}; 149 $line =~ s/\b(\w+)/$GLOBALS{$1} or $1/ge; 201 printf "%s:",($GLOBALS{$label} or $label);
|
D | ppc-xlate.pl | 13 my %GLOBALS; 34 my $global = \$GLOBALS{$name}; 99 my $real = $GLOBALS{$name} ? \$GLOBALS{$name} : \$name; 287 my $xlated = ($GLOBALS{$label} or $label);
|
/external/llvm/test/DebugInfo/PDB/DIA/ |
D | pdbdump-symbol-format.test | 7 …N: llvm-pdbdump pretty -globals %p/../Inputs/symbolformat.pdb | FileCheck --check-prefix=GLOBALS %s 57 ; GLOBALS: ---GLOBALS--- 58 ; GLOBALS-DAG: func [{{.*}}] (FPO) unsigned int __cdecl fpo_func(unsigned int n) 59 ; GLOBALS-DAG: data [{{.*}}] static void* g_global_pointer 60 ; GLOBALS-DAG: data [{{.*}}] static int g_global_int
|
D | pdbdump-flags.test | 12 ; NO_ARGS-NOT: ---GLOBALS--- 21 ; TYPES-NOT: ---GLOBALS--- 30 ; COMPILANDS-NOT: ---GLOBALS--- 39 ; MULTIPLE-NOT: ---GLOBALS---
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | fragile-arc.m | 2 … -fobjc-exceptions -fobjc-runtime=macosx-fragile-10.10 -o - %s | FileCheck %s -check-prefix=GLOBALS 17 // GLOBALS-LABEL: @OBJC_METACLASS_A 19 // GLOBALS: @OBJC_CLASS_NAME_{{.*}} = private unnamed_addr constant [2 x i8] c"\01\00" 21 // GLOBALS: @OBJC_CLASS_NAME_{{.*}} = private unnamed_addr constant [2 x i8] c"\11\00" 27 // GLOBALS: @OBJC_CLASS_A = private global {{.*}} i32 67117057 119 // GLOBALS-LABEL: @OBJC_METACLASS_C 122 // GLOBALS: @OBJC_CLASS_NAME_{{.*}} = private unnamed_addr constant [3 x i8] c"T7\00" 124 // GLOBALS: @OBJC_CLASS_NAME_{{.*}} = private unnamed_addr constant [2 x i8] c"\93\00" 129 // GLOBALS: @"__block_descriptor{{.*}} = linkonce_odr hidden {{.*}}, i32 256 } 135 // GLOBALS: @"__block_descriptor{{.*}} = linkonce_odr hidden {{.*}}, i32 1 }
|
/external/clang/test/CodeGenObjC/ |
D | fragile-arc.m | 2 … -fobjc-exceptions -fobjc-runtime=macosx-fragile-10.10 -o - %s | FileCheck %s -check-prefix=GLOBALS 17 // GLOBALS-LABEL @OBJC_METACLASS_A 19 // GLOBALS: @OBJC_CLASS_NAME_{{.*}} = private global [2 x i8] c"\01\00" 21 // GLOBALS: @OBJC_CLASS_NAME_{{.*}} = private global [2 x i8] c"\11\00" 27 // GLOBALS: @OBJC_CLASS_A = private global {{.*}} i32 67117057 119 // GLOBALS-LABEL: @OBJC_METACLASS_C 122 // GLOBALS: @OBJC_CLASS_NAME_{{.*}} = private global [3 x i8] c"T7\00" 124 // GLOBALS: @OBJC_CLASS_NAME_{{.*}} = private global [2 x i8] c"\93\00" 129 // GLOBALS: @__block_descriptor_tmp{{.*}} = internal constant {{.*}}, i32 256 } 135 // GLOBALS: @__block_descriptor_tmp{{.*}} = internal constant {{.*}}, i32 1 }
|
/external/python/cpython3/Tools/c-analyzer/cpython/ |
D | _generate.py | 228 GLOBALS = {} variable 229 GLOBALS.update(MULTILINE) 230 GLOBALS.update(INLINE) 231 GLOBALS.update(FUNC) 232 GLOBALS.update(IMPLIED) 255 decl = GLOBALS[symbol.name]
|
/external/llvm/test/tools/llvm-pdbdump/ |
D | regex-filter.test | 33 ; NO_FILTER: ---GLOBALS--- 64 ; EXCLUDE_VARS: ---GLOBALS--- 79 ; EXCLUDE_COMPILAND: ---GLOBALS--- 93 ; INCLUDE_ONLY_VARS: ---GLOBALS---
|
/external/llvm-project/llvm/test/tools/llvm-pdbutil/ |
D | regex-filter.test | 42 ; NO_FILTER: ---GLOBALS--- 67 ; EXCLUDE_VARS: ---GLOBALS--- 78 ; EXCLUDE_COMPILAND: ---GLOBALS--- 92 ; INCLUDE_ONLY_VARS: ---GLOBALS---
|
D | type-qualifiers.test | 9 ; GLOBALS_FUNC: ---GLOBALS--- 13 ; GLOBALS_DATA: ---GLOBALS---
|
D | pretty-func-dumper.test | 9 ; GLOBALS_FUNC: ---GLOBALS--- 18 ; GLOBALS_DATA: ---GLOBALS---
|
/external/toybox/toys/example/ |
D | hello.c | 27 GLOBALS( in GLOBALS() function
|
D | demo_number.c | 25 GLOBALS( in GLOBALS() function
|
/external/toybox/toys/posix/ |
D | nice.c | 26 GLOBALS( in GLOBALS() function
|
D | mkfifo.c | 30 GLOBALS( in GLOBALS() function
|
D | mkdir.c | 34 GLOBALS(
|
/external/toybox/toys/other/ |
D | swapon.c | 22 GLOBALS( in GLOBALS() function
|
D | fallocate.c | 21 GLOBALS( in GLOBALS() function
|
D | tac.c | 19 GLOBALS( in GLOBALS() function
|
D | blkdiscard.c | 37 GLOBALS( in GLOBALS() function
|
/external/toybox/toys/lsb/ |
D | pidof.c | 26 GLOBALS( in GLOBALS() function
|