/external/llvm/lib/Target/PowerPC/ |
PPC.h | 56 /// MO_DARWIN_STUB - On a symbol operand "FOO", this indicates that the 57 /// reference is actually to the "FOO$stub" symbol. This is used for calls 61 /// MO_PIC_FLAG - If this bit is set, the symbol reference is relative to 62 /// the function's picbase, e.g. lo16(symbol-picbase). 65 /// MO_NLP_FLAG - If this bit is set, the symbol reference is actually to 66 /// the non_lazy_ptr for the global, e.g. lo16(symbol$non_lazy_ptr-picbase). 69 /// MO_NLP_HIDDEN_FLAG - If this bit is set, the symbol reference is to a 70 /// symbol with hidden visibility. This causes a different kind of 77 /// MO_LO, MO_HA - lo16(symbol) and ha16(symbol) [all...] |
/external/llvm/test/MC/ELF/ |
alias.s | 21 // CHECK-NEXT: Symbol { 30 // CHECK-NEXT: Symbol { 39 // CHECK-NEXT: Symbol { 48 // CHECK-NEXT: Symbol { 57 // CHECK-NEXT: Symbol { 66 // CHECK-NEXT: Symbol { 75 // CHECK-NEXT: Symbol { 78 // CHECK-NEXT: Symbol { 81 // CHECK-NEXT: Symbol { 84 // CHECK-NEXT: Symbol { [all...] |
relocation-386.s | 4 // correctly point to the section or the symbol. 11 // Relocation 3 (bar3@GOTOFF) is done with symbol 7 (bss) 32 // Relocation 13 (zed@GOT) is of type R_386_GOT32 and uses the symbol 34 // Relocation 14 (zed@GOTOFF) is of type R_386_GOTOFF and uses the symbol 36 // Relocation 15 (zed@INDNTPOFF) is of type R_386_TLS_IE and uses the symbol 38 // Relocation 16 (zed@NTPOFF) is of type R_386_TLS_LE and uses the symbol 40 // Relocation 17 (zed@GOTNTPOFF) is of type R_386_TLS_GOTIE and uses the symbol 42 // Relocation 18 (zed@PLT) is of type R_386_PLT32 and uses the symbol 44 // Relocation 19 (zed@TLSGD) is of type R_386_TLS_GD and uses the symbol 46 // Relocation 20 (zed@TLSLDM) is of type R_386_TLS_LDM and uses the symbol [all...] |
undef.s | 3 // Test which symbols should be in the symbol table 24 // CHECK: Symbol { 27 // CHECK: Symbol { 30 // CHECK: Symbol {
|
/external/llvm/include/llvm/IR/ |
ValueSymbolTable.h | 10 // This file implements the name/Value symbol table for LLVM. 30 /// This class provides a symbol table of name/value pairs. It is essentially 68 /// the symbol table. 73 /// @returns true iff the symbol table is empty 74 /// @brief Determine if the symbol table is empty 81 /// content of the symbol table while debugging. 82 /// @brief Print out symbol table on stderr 89 /// @brief Get an iterator that from the beginning of the symbol table. 92 /// @brief Get a const_iterator that from the beginning of the symbol table. 95 /// @brief Get an iterator to the end of the symbol table [all...] |
/external/llvm/include/llvm/MC/ |
MCStreamer.h | 173 /// @name Symbol & Section Management 271 /// EmitLabel - Emit a label for @p Symbol into the current section. 276 /// @param Symbol - The symbol to emit. A given symbol should only be 279 virtual void EmitLabel(MCSymbol *Symbol); 281 virtual void EmitDebugLabel(MCSymbol *Symbol); 283 virtual void EmitEHSymAttributes(const MCSymbol *Symbol, 300 /// getOrCreateSymbolData - Get symbol data for given symbol [all...] |
/external/openfst/src/lib/ |
symbol-table.cc | 20 // Classes to provide symbol-to-integer and integer-to-symbol mappings. 22 #include <fst/symbol-table.h> 27 "Require symbol tables to match when appropriate"); 36 // Identifies stream data as a symbol table (and its endianity) 64 const char *symbol = col[0]; local 76 impl->AddSymbol(symbol, key); 122 int64 SymbolTableImpl::AddSymbol(const string& symbol, int64 key) { 124 symbol_map_.find(symbol.c_str()); 128 char *csymbol = new char[symbol.size() + 1] 180 string symbol; local [all...] |
/external/llvm/bindings/python/llvm/ |
object.py | 19 Section, Symbol, and Relocation, respectively. 40 To aid working around this limitation, each Section, Symbol, and Relocation 60 for symbol in symbols: 61 print symbol.name # This raises because the object has expired. 65 for symbol in obj.get_symbols(): 66 symbols.append(symbol) 67 print symbol.name 69 for symbol in symbols: 70 print symbol.name # OK 71 print symbol.address # NOT OK. We didn't look up this property before 392 def symbol(self): member in class:Relocation [all...] |
/cts/tools/dasm/src/java_cup/ |
symbol.java | 4 * both terminals and non-terminals). Each symbol has a name string, and 5 * a string giving the type of object that the symbol will be represented by 6 * on the runtime parse stack. In addition, each symbol maintains a use count 16 public abstract class symbol { class 22 * @param nm the name of the symbol. 25 public symbol(String nm, String tp) method in class:symbol 40 * @param nm the name of the symbol. 42 public symbol(String nm) method in class:symbol 51 /** String for the human readable name of the symbol. */ 54 /** String for the human readable name of the symbol. * [all...] |
/external/chromium_org/chrome/common/extensions/api/test_presubmit/ |
invalid_idl_6.idl | 8 // Unexpected ")" after symbol long.
|
/external/chromium_org/media/base/simd/ |
media_export.asm | 5 ; A set of helper macros for controlling symbol visibility. 16 ; A flag representing the specified symbol is a private symbol. This define adds 30 ; Designates a symbol as PRIVATE if EXPORT_SYMBOLS is not set.
|
/external/chromium_org/ppapi/generators/test_parser/ |
dictionary.idl | 13 /* FAIL Unexpected "}" after symbol unsetLong. */
|
/external/chromium_org/third_party/skia/src/svg/ |
SkSVGSymbol.h | 16 DECLARE_SVG_INFO(Symbol);
|
/external/chromium_org/ui/aura/client/ |
cursor_client_observer.cc | 6 // include so that the symbol CursorClientObserver is exported.
|
/external/clang/test/CodeGen/ |
2002-02-13-TypeVarNameCollision.c | 3 /* This testcase causes a symbol table collision. Type names and variable
|
/external/clang/test/SemaCXX/ |
namespace.cpp | 8 int A; // expected-error {{redefinition of 'A' as different kind of symbol}} 9 class A; // expected-error {{redefinition of 'A' as different kind of symbol}} 15 namespace C {} // expected-error {{redefinition of 'C' as different kind of symbol}} 59 namespace B {} // expected-error {{redefinition of 'B' as different kind of symbol}}
|
/external/clang/test/SemaObjC/ |
class-def-test-1.m | 9 @interface INTF @end // expected-error {{redefinition of 'INTF' as different kind of symbol}} 17 typedef int OBJECT; // expected-error {{redefinition of 'OBJECT' as different kind of symbol}} 20 @interface INTF2 : OBJECT2 @end // expected-error {{redefinition of 'OBJECT2' as different kind of symbol}} 22 @implementation INTF2 : OBJECT2 @end // expected-error {{redefinition of 'OBJECT2' as different kind of symbol}}
|
/external/llvm/test/MC/MachO/ |
variable-errors.s | 7 // CHECK: unable to evaluate offset to undefined symbol 't0_b'
|
/external/llvm/test/MC/Mips/ |
elf-relsym.ll | 6 ; CHECK: Symbol { 9 ; CHECK: Symbol { 12 ; CHECK: Symbol { 15 ; CHECK: Symbol {
|
/external/llvm/utils/ |
findsym.pl | 5 # Synopsis: Generate a list of the libraries in which a symbol is defined or 8 # Syntax: findsym.pl <directory_with_libraries_in_it> <symbol> 13 my $Symbol = $ARGV[1]; 26 "nm $Directory/$lib | grep '$Symbol' | sort --key=3 | uniq |";
|
/external/oprofile/libregex/ |
demangle_java_symbol.h | 3 * Demangle a java symbol
|
/external/skia/src/svg/ |
SkSVGSymbol.h | 16 DECLARE_SVG_INFO(Symbol);
|
/external/svox/pico/lib/ |
picokfst.h | 43 typedef picoos_int16 picokfst_symid_t; /* type of symbol identifiers */ 44 typedef picoos_int16 picokfst_class_t; /* type of symbol pair classes */ 47 #define PICOKFST_SYMID_EPS (picokfst_symid_t) 0 /* epsilon symbol id */ 48 #define PICOKFST_SYMID_ILLEG (picokfst_symid_t) -1 /* illegal symbol id */ 53 * Mapping of values to FST symbol id (relevant for compiling the FST) \n 54 * Value FST symbol id \n 117 /* starts search for all pairs with input symbol 'inSym'; '*inSymFound' returns whether 120 to get the symbol pairs */ 124 /* gets next pair for input symbol specified with preceding call to 'picokfst_kfstStartPairSearch'; 126 '*outSym' returns the output symbol of the found pair, and '*pairClass' returns th [all...] |
/external/valgrind/main/gdbserver_tests/ |
mcvabits.stderrB.exp | 4 Address 0x........ is 0 bytes inside data symbol "undefined" 6 Address 0x........ is 0 bytes inside data symbol "undefined" 9 Address 0x........ is 0 bytes inside data symbol "undefined" 12 Address 0x........ is 0 bytes inside data symbol "undefined" 15 Address 0x........ is 0 bytes inside data symbol "undefined" 18 Address 0x........ is 0 bytes inside data symbol "undefined" 21 Address 0x........ is 0 bytes inside data symbol "undefined" 24 Address 0x........ is 0 bytes inside data symbol "undefined" 27 Address 0x........ is 0 bytes inside data symbol "undefined" 30 Address 0x........ is 0 bytes inside data symbol "undefined [all...] |
/ndk/tests/device/whole-static-libs/jni/ |
foo2.c | 3 * main() will dlopen() itself to look for the function symbol.
|