Home
last modified time | relevance | path

Searched full:symbol (Results 1 – 25 of 3442) sorted by relevance

12345678910>>...138

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
Dsymrec.h3 * \brief YASM symbol table interface.
37 /** Symbol status. YASM_SYM_DEFINED is set by yasm_symtab_define_label(),
49 /** Symbol record visibility.
54 YASM_SYM_GLOBAL = 1 << 0, /**< If symbol is declared GLOBAL */
55 YASM_SYM_COMMON = 1 << 1, /**< If symbol is declared COMMON */
56 YASM_SYM_EXTERN = 1 << 2, /**< If symbol is declared EXTERN */
57 YASM_SYM_DLOCAL = 1 << 3 /**< If symbol is explicitly declared LOCAL */
60 /** Create a new symbol table. */
64 /** Destroy a symbol table and all internal symbols.
65 * \param symtab symbol table
[all …]
/external/tagsoup/definitions/
Dhtml.stml19 <symbol id='EOF'/>
20 <symbol id='S'/>
21 <symbol id='default'/>
57 <tr symbol='default' action='A_SAVE' newstate='S_ANAME'/>
61 <tr symbol='EOF' action='A_ANAME_ADUP_STAGC' newstate='S_DONE'/>
62 <tr symbol='S' action='A_ANAME' newstate='S_EQ'/>
65 <tr symbol='default' action='A_SAVE' newstate='S_APOS'/>
67 <tr symbol='EOF' action='A_AVAL_STAGC' newstate='S_DONE'/>
68 <tr symbol='S' action='A_SP' newstate='S_APOS'/>
71 <tr symbol='default' action='A_SAVE' newstate='S_STAGC'/>
[all …]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dsymbol-table.h1 // symbol-table.h
17 // Classes to provide symbol-to-integer and integer-to-symbol mappings.
47 int64 AddSymbol(const string& symbol, int64 key);
49 int64 AddSymbol(const string& symbol) { in AddSymbol() argument
50 int64 key = Find(symbol); in AddSymbol()
51 return (key == -1) ? AddSymbol(symbol, available_key_++) : key; in AddSymbol()
81 // Return the key associated with the symbol. If the symbol
83 int64 Find(const string& symbol) const { in Find() argument
84 return Find(symbol.c_str()); in Find()
88 // Return the key associated with the symbol. If the symbol
[all …]
/external/bison/src/
Dsymtab.h23 * \brief Manipulating ::symbol.
38 /** Symbol classes. */
52 typedef struct symbol symbol; typedef
56 struct symbol struct
58 /** The key, name of the symbol. */
74 /** Any \c \%destructor declared specifically for this symbol. argument
76 Access this field only through <tt>symbol</tt>'s interface
77 functions. For example, if <tt>symbol::destructor = NULL</tt>, a
83 /** Any \c \%printer declared specifically for this symbol. argument
85 Access this field only through <tt>symbol</tt>'s interface functions.
[all …]
/external/chromium_org/v8/test/mjsunit/es6/
Dsymbols.js39 return ["Symbol(66)", "Symbol()"].indexOf(s) >= 0;
45 function indirectSymbol() { return Symbol() }
49 symbols.push(Symbol())
50 symbols.push(Symbol(undefined))
51 symbols.push(Symbol("66"))
52 symbols.push(Symbol(66))
53 symbols.push(Symbol().valueOf())
60 assertThrows(function () { Symbol(Symbol()) }, TypeError)
61 assertThrows(function () { new Symbol(66) }, TypeError)
68 assertEquals("symbol", typeof symbols[i])
[all …]
/external/chromium_org/v8/src/
Dsymbol.js11 var $Symbol = global.Symbol;
17 throw MakeTypeError('not_constructor', ["Symbol"]);
19 // NOTE: Passing in a Symbol value will throw on ToString().
27 'incompatible_method_receiver', ["Symbol.prototype.toString", this]);
30 return "Symbol(" + (IS_UNDEFINED(description) ? "" : description) + ")";
37 'incompatible_method_receiver', ["Symbol.prototype.valueOf", this]);
56 var symbol = %CreateSymbol(key);
57 registry.for[key] = symbol;
58 registry.keyFor[symbol] = key;
64 function SymbolKeyFor(symbol) { argument
[all …]
/external/llvm/tools/obj2yaml/
Dcoff2yaml.cpp82 dumpFunctionDefinition(COFFYAML::Symbol *Sym, in dumpFunctionDefinition()
94 dumpbfAndEfLineInfo(COFFYAML::Symbol *Sym, in dumpbfAndEfLineInfo()
103 static void dumpWeakExternal(COFFYAML::Symbol *Sym, in dumpWeakExternal()
113 dumpSectionDefinition(COFFYAML::Symbol *Sym, in dumpSectionDefinition()
127 dumpCLRTokenDefinition(COFFYAML::Symbol *Sym, in dumpCLRTokenDefinition()
137 std::vector<COFFYAML::Symbol> &Symbols = YAMLObj.Symbols; in dumpSymbols()
139 const object::coff_symbol *Symbol = Obj.getCOFFSymbol(S); in dumpSymbols() local
140 COFFYAML::Symbol Sym; in dumpSymbols()
141 Obj.getSymbolName(Symbol, Sym.Name); in dumpSymbols()
142 Sym.SimpleType = COFF::SymbolBaseType(Symbol->getBaseType()); in dumpSymbols()
[all …]
/external/llvm/include/llvm/MC/
DMCExpr.h80 /// @param Layout - The assembler layout object to use for evaluating symbol
102 /// use is for when relocations are not available, like the symbol value in
103 /// the symbol table.
108 /// otherwise the section associated with the first defined symbol in the
146 /// MCSymbolRefExpr - Represent a reference to a symbol from inside an
149 /// A symbol reference in an expression may be a use of a label, a use of an
151 /// of the symbol as external.
185 VK_ARM_TLSLDO, // symbol(tlsldo)
186 VK_ARM_TLSCALL, // symbol(tlscall)
187 VK_ARM_TLSDESC, // symbol(tlsdesc)
[all …]
/external/libpng/scripts/
Dchecksym.awk19 symbol[1] = "" # defined symbols from png.h
32 # symbol @ordinal
45 print master ": duplicated symbol:", official[o] ":", $0
62 # just be symbol definitions. Lines will be commented out for
67 # symbol @ordinal # two fields, exported symbol
68 # ; symbol @ordinal # three fields, removed symbol
80 NF==3 && $1 == ";" && $3 ~ /^@[1-9][0-9]*$/ { # removed symbol
86 print "png.h: duplicated removed symbol", o ": '" removed[o] "' != '" $2 "'"
91 NF==2 && $2 ~ /^@[1-9][0-9]*$/ { # exported symbol
93 if (symbol[o] == "" || symbol[o] == $1) {
[all …]
/external/chromium_org/tools/deep_memory_profiler/lib/
Dsymbol.py31 """Manages symbol data sources in a process.
33 The symbol data sources consist of maps (/proc/<pid>/maps), nm, readelf and
41 Note that loading the symbol data sources takes a long time. They are often
52 """Prepares symbol data sources by extracting mapping from a binary.
54 The prepared symbol data sources are stored in a directory. The directory
60 LOGGER.info('Preparing symbol mapping...')
69 LOGGER.info(' Prepared symbol mapping.')
71 LOGGER.warn(' Using a temporary directory for symbol mapping.')
76 LOGGER.warn(' Failed to prepare symbol mapping.')
80 """Returns the prepared symbol data sources.
[all …]
/external/llvm/lib/MC/
DMCMachOStreamer.cpp62 void EmitLabel(MCSymbol *Symbol) override;
63 void EmitEHSymAttributes(const MCSymbol *Symbol, MCSymbol *EHSymbol) override;
70 bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) override;
71 void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) override;
72 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
74 void BeginCOFFSymbolDef(const MCSymbol *Symbol) override { in BeginCOFFSymbolDef() argument
86 void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) override { in EmitELFSize() argument
89 void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
91 void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = nullptr,
93 virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
[all …]
DWinCOFFStreamer.cpp80 void MCWinCOFFStreamer::EmitLabel(MCSymbol *Symbol) { in EmitLabel() argument
81 assert(Symbol->isUndefined() && "Cannot define a symbol twice!"); in EmitLabel()
82 MCObjectStreamer::EmitLabel(Symbol); in EmitLabel()
93 bool MCWinCOFFStreamer::EmitSymbolAttribute(MCSymbol *Symbol, in EmitSymbolAttribute() argument
95 assert(Symbol && "Symbol must be non-null!"); in EmitSymbolAttribute()
96 assert((!Symbol->isInSection() || in EmitSymbolAttribute()
97 Symbol->getSection().getVariant() == MCSection::SV_COFF) && in EmitSymbolAttribute()
100 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol); in EmitSymbolAttribute()
117 void MCWinCOFFStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) { in EmitSymbolDesc() argument
121 void MCWinCOFFStreamer::BeginCOFFSymbolDef(MCSymbol const *Symbol) { in BeginCOFFSymbolDef() argument
[all …]
/external/lzma/CS/7zip/Compress/RangeCoder/
DRangeCoderBitTree.cs22 public void Encode(Encoder rangeEncoder, UInt32 symbol) in Encode()
28 UInt32 bit = (symbol >> bitIndex) & 1; in Encode()
34 public void ReverseEncode(Encoder rangeEncoder, UInt32 symbol) in ReverseEncode()
39 UInt32 bit = symbol & 1; in ReverseEncode()
42 symbol >>= 1; in ReverseEncode()
46 public UInt32 GetPrice(UInt32 symbol) in GetPrice()
53 UInt32 bit = (symbol >> bitIndex) & 1; in GetPrice()
60 public UInt32 ReverseGetPrice(UInt32 symbol) in ReverseGetPrice()
66 UInt32 bit = symbol & 1; in ReverseGetPrice()
67 symbol >>= 1; in ReverseGetPrice()
[all …]
/external/zlib/src/as400/
Dbndsrc11 EXPORT SYMBOL("adler32")
17 EXPORT SYMBOL("compress")
18 EXPORT SYMBOL("compress2")
24 EXPORT SYMBOL("crc32")
25 EXPORT SYMBOL("get_crc_table")
31 EXPORT SYMBOL("deflate")
32 EXPORT SYMBOL("deflateEnd")
33 EXPORT SYMBOL("deflateSetDictionary")
34 EXPORT SYMBOL("deflateCopy")
35 EXPORT SYMBOL("deflateReset")
[all …]
/external/llvm/lib/Object/
DRecordStreamer.cpp14 void RecordStreamer::markDefined(const MCSymbol &Symbol) { in markDefined() argument
15 State &S = Symbols[Symbol.getName()]; in markDefined()
29 void RecordStreamer::markGlobal(const MCSymbol &Symbol) { in markGlobal() argument
30 State &S = Symbols[Symbol.getName()]; in markGlobal()
45 void RecordStreamer::markUsed(const MCSymbol &Symbol) { in markUsed() argument
46 State &S = Symbols[Symbol.getName()]; in markUsed()
75 void RecordStreamer::EmitLabel(MCSymbol *Symbol) { in EmitLabel() argument
76 MCStreamer::EmitLabel(Symbol); in EmitLabel()
77 markDefined(*Symbol); in EmitLabel()
80 void RecordStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) { in EmitAssignment() argument
[all …]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/mathmaps/symbols/
Dgreek-symbols.json5 "default": "greek beta symbol",
15 "default": "greek theta symbol",
25 "default": "greek phi symbol",
35 "default": "greek pi symbol",
45 "default": "greek kai symbol",
54 "default": "greek kappa symbol",
64 "default": "greek rho symbol",
74 "default": "greek lunate epsilon symbol",
83 "default": "greek reversed lunate epsilon symbol",
92 "default": "greek capital theta symbol",
[all …]
/external/chromium_org/native_client_sdk/src/libraries/xray/
Dsymtable.c5 /* XRay symbol table */
57 const char* XRaySymbolGetName(struct XRaySymbol* symbol) { in XRaySymbolGetName() argument
58 return (NULL == symbol) ? "(null)" : symbol->name; in XRaySymbolGetName()
65 struct XRaySymbol* symbol; in XRaySymbolCreate() local
66 symbol = XRaySymbolPoolAlloc(sympool); in XRaySymbolCreate()
67 symbol->name = name; in XRaySymbolCreate()
68 return symbol; in XRaySymbolCreate()
73 struct XRaySymbol* symbol; in XRaySymbolPoolAlloc() local
81 symbol = &sympool->current->symbols[sympool->index]; in XRaySymbolPoolAlloc()
83 return symbol; in XRaySymbolPoolAlloc()
[all …]
/external/chromium_org/third_party/libwebp/utils/
Dhuffman.c113 int symbol; in VP8LHuffmanCodeLengthsToCodes() local
125 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in VP8LHuffmanCodeLengthsToCodes()
126 if (code_lengths[symbol] > max_code_length) { in VP8LHuffmanCodeLengthsToCodes()
127 max_code_length = code_lengths[symbol]; in VP8LHuffmanCodeLengthsToCodes()
133 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in VP8LHuffmanCodeLengthsToCodes()
134 ++code_length_hist[code_lengths[symbol]]; in VP8LHuffmanCodeLengthsToCodes()
139 // next_codes[code_len] denotes the code to be assigned to the next symbol in VP8LHuffmanCodeLengthsToCodes()
149 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in VP8LHuffmanCodeLengthsToCodes()
150 if (code_lengths[symbol] > 0) { in VP8LHuffmanCodeLengthsToCodes()
151 huff_codes[symbol] = next_codes[code_lengths[symbol]]++; in VP8LHuffmanCodeLengthsToCodes()
[all …]
/external/webp/src/utils/
Dhuffman.c113 int symbol; in VP8LHuffmanCodeLengthsToCodes() local
125 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in VP8LHuffmanCodeLengthsToCodes()
126 if (code_lengths[symbol] > max_code_length) { in VP8LHuffmanCodeLengthsToCodes()
127 max_code_length = code_lengths[symbol]; in VP8LHuffmanCodeLengthsToCodes()
133 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in VP8LHuffmanCodeLengthsToCodes()
134 ++code_length_hist[code_lengths[symbol]]; in VP8LHuffmanCodeLengthsToCodes()
139 // next_codes[code_len] denotes the code to be assigned to the next symbol in VP8LHuffmanCodeLengthsToCodes()
149 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in VP8LHuffmanCodeLengthsToCodes()
150 if (code_lengths[symbol] > 0) { in VP8LHuffmanCodeLengthsToCodes()
151 huff_codes[symbol] = next_codes[code_lengths[symbol]]++; in VP8LHuffmanCodeLengthsToCodes()
[all …]
/external/lldb/source/Symbol/
DSymbol.cpp1 //===-- Symbol.cpp ----------------------------------------------*- C++ -*-===//
10 #include "lldb/Symbol/Symbol.h"
15 #include "lldb/Symbol/ObjectFile.h"
16 #include "lldb/Symbol/Symtab.h"
17 #include "lldb/Symbol/Function.h"
20 #include "lldb/Symbol/SymbolVendor.h"
26 Symbol::Symbol() : in Symbol() function in Symbol
45 Symbol::Symbol in Symbol() function in Symbol
79 Symbol::Symbol in Symbol() function in Symbol
111 Symbol::Symbol(const Symbol& rhs): in Symbol() function in Symbol
[all …]
/external/chromium_org/third_party/icu/source/i18n/unicode/
Ddcfmtsym.h15 * 08/26/97 aliu Added currency/intl currency symbol support.
55 * Symbol Meaning
86 * Constants for specifying a number format symbol.
106 /** The currency symbol */
108 /** The international currency symbol */
112 /** The exponential symbol */
114 /** Per mill symbol - replaces kPermillSymbol */
118 /** Infinity symbol */
120 /** Nan symbol */
122 /** Significant digit symbol
[all …]
/external/lzma/C/
DPpmd7Dec.c53 UInt32 symbol; in Range_DecodeBit() local
56 symbol = 0; in Range_DecodeBit()
61 symbol = 1; in Range_DecodeBit()
66 return symbol; in Range_DecodeBit()
89 Byte symbol; in Ppmd7_DecodeSymbol() local
92 symbol = s->Symbol; in Ppmd7_DecodeSymbol()
94 return symbol; in Ppmd7_DecodeSymbol()
102 Byte symbol; in Ppmd7_DecodeSymbol() local
105 symbol = s->Symbol; in Ppmd7_DecodeSymbol()
107 return symbol; in Ppmd7_DecodeSymbol()
[all …]
/external/zlib/src/contrib/puff/
Dpuff.c65 * - Catch missing end-of-block symbol error
202 * symbol[] are the symbol values in canonical order, where the number of
208 short *symbol; /* canonically ordered symbols */ member
212 * Decode a code from the stream s using huffman table h. Return the symbol or
241 int index; /* index of first code of length len in symbol table */ in decode()
247 if (code - count < first) /* if length len, return symbol */ in decode()
248 return h->symbol[index + (code - first)]; in decode()
269 int index; /* index of first code of length len in symbol table */ in decode()
284 if (code - count < first) { /* if length len, return symbol */ in decode()
287 return h->symbol[index + (code - first)]; in decode()
[all …]
/external/stlport/src/
Dfacets_byname.cpp517 case 0: // Parentheses surround the quantity and currency symbol in _Init_monetary_formats()
518 case 1: // The sign string precedes the quantity and currency symbol in _Init_monetary_formats()
521 // 1 if currency symbol precedes a positive value in _Init_monetary_formats()
522 pos_format.field[1] = (char) money_base::symbol; in _Init_monetary_formats()
524 // a space separates currency symbol from a positive value. in _Init_monetary_formats()
528 // a space not separates currency symbol from a positive value. in _Init_monetary_formats()
533 // 0 if currency symbol succeeds a positive value in _Init_monetary_formats()
536 // a space separates currency symbol from a positive value. in _Init_monetary_formats()
538 pos_format.field[3] = (char) money_base::symbol; in _Init_monetary_formats()
540 // a space not separates currency symbol from a positive value. in _Init_monetary_formats()
[all …]
/external/icu/icu4c/source/i18n/unicode/
Ddcfmtsym.h15 * 08/26/97 aliu Added currency/intl currency symbol support.
56 * Symbol Meaning
87 * Constants for specifying a number format symbol.
107 /** The currency symbol */
109 /** The international currency symbol */
113 /** The exponential symbol */
115 /** Per mill symbol - replaces kPermillSymbol */
119 /** Infinity symbol */
121 /** Nan symbol */
123 /** Significant digit symbol
[all …]

12345678910>>...138