Home
last modified time | relevance | path

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

12345678910>>...120

/external/libxml2/doc/
Dsymbols.xml9 <symbol file="debugXML">xmlBoolToText</symbol>
10 <symbol file="debugXML">xmlDebugDumpAttr</symbol>
11 <symbol file="debugXML">xmlDebugDumpAttrList</symbol>
12 <symbol file="debugXML">xmlDebugDumpDTD</symbol>
13 <symbol file="debugXML">xmlDebugDumpDocument</symbol>
14 <symbol file="debugXML">xmlDebugDumpDocumentHead</symbol>
15 <symbol file="debugXML">xmlDebugDumpEntities</symbol>
16 <symbol file="debugXML">xmlDebugDumpNode</symbol>
17 <symbol file="debugXML">xmlDebugDumpNodeList</symbol>
18 <symbol file="debugXML">xmlDebugDumpOneNode</symbol>
[all …]
Dlibxml2-api.xml9 <exports symbol='docbParserInputPtr' type='typedef'/>
10 <exports symbol='docbParserCtxt' type='typedef'/>
11 <exports symbol='docbParserCtxtPtr' type='typedef'/>
12 <exports symbol='docbParserInput' type='typedef'/>
13 <exports symbol='docbDocPtr' type='typedef'/>
14 <exports symbol='docbSAXHandler' type='typedef'/>
15 <exports symbol='docbSAXHandlerPtr' type='typedef'/>
16 <exports symbol='docbFreeParserCtxt' type='function'/>
17 <exports symbol='docbParseDoc' type='function'/>
18 <exports symbol='docbCreateFileParserCtxt' type='function'/>
[all …]
/external/llvm/lib/DebugInfo/PDB/DIA/
DDIARawSymbol.cpp76 ArgType PrivateGetDIAValue(IDiaSymbol *Symbol, in PrivateGetDIAValue() argument
79 if (S_OK == (Symbol->*Method)(&Value)) in PrivateGetDIAValue()
86 RetType PrivateGetDIAValue(IDiaSymbol *Symbol, in PrivateGetDIAValue() argument
89 if (S_OK == (Symbol->*Method)(&Value)) in PrivateGetDIAValue()
96 PrivateGetDIAValue(IDiaSymbol *Symbol, in PrivateGetDIAValue() argument
99 if (S_OK != (Symbol->*Method)(&Result16)) in PrivateGetDIAValue()
111 PrivateGetDIAValue(IDiaSymbol *Symbol, in PrivateGetDIAValue() argument
114 if (S_OK != (Symbol->*Method)(&Result)) in PrivateGetDIAValue()
126 IDiaSymbol *Symbol, in DumpDIAValue() argument
129 if (S_OK == (Symbol->*Method)(&Value)) { in DumpDIAValue()
[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/libxml2/doc/examples/
Dexamples.xml388 <symbol name='LIBXML_TEST_VERSION'>
395 </symbol>
396 <symbol name='XML_DEFAULT_VERSION'>
398 </symbol>
399 <symbol name='XML_ELEMENT_NODE'>
402 </symbol>
403 <symbol name='XML_NAMESPACE_DECL'>
406 </symbol>
407 <symbol name='XML_PARSE_DTDATTR'>
409 </symbol>
[all …]
/external/v8/test/mjsunit/es6/
Dsymbols.js38 return ["Symbol(66)", "Symbol()"].indexOf(s) >= 0;
44 function indirectSymbol() { return Symbol() }
48 symbols.push(Symbol())
49 symbols.push(Symbol(undefined))
50 symbols.push(Symbol("66"))
51 symbols.push(Symbol(66))
52 symbols.push(Symbol().valueOf())
59 assertThrows(function () { Symbol(Symbol()) }, TypeError)
60 assertThrows(function () { new Symbol(66) }, TypeError)
67 assertEquals("symbol", typeof symbols[i])
[all …]
Darguments-iterator.js13 assertTrue(arguments.hasOwnProperty(Symbol.iterator));
14 assertFalse(arguments.propertyIsEnumerable(Symbol.iterator));
15 var descriptor = Object.getOwnPropertyDescriptor(arguments, Symbol.iterator);
19 assertEquals(descriptor.value, [][Symbol.iterator]);
20 assertEquals(arguments[Symbol.iterator], [][Symbol.iterator]);
27 assertTrue(o.hasOwnProperty(Symbol.iterator));
28 assertFalse(o.propertyIsEnumerable(Symbol.iterator));
29 assertEquals(o[Symbol.iterator], [][Symbol.iterator]);
40 var iterator = arguments[Symbol.iterator]();
51 var iterator = args[Symbol.iterator]();
[all …]
/external/llvm/lib/MC/
DMCMachOStreamer.cpp72 void EmitLabel(MCSymbol *Symbol) override;
73 void EmitEHSymAttributes(const MCSymbol *Symbol, MCSymbol *EHSymbol) override;
80 bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) override;
81 void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) override;
82 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
84 void BeginCOFFSymbolDef(const MCSymbol *Symbol) override { in BeginCOFFSymbolDef() argument
96 void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
98 void EmitZerofill(MCSection *Section, MCSymbol *Symbol = nullptr,
100 void EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, uint64_t Size,
160 // Output a linker-local symbol so we don't need section-relative local in ChangeSection()
[all …]
DWinCOFFStreamer.cpp78 void MCWinCOFFStreamer::EmitLabel(MCSymbol *Symbol) { in EmitLabel() argument
79 assert(Symbol->isUndefined() && "Cannot define a symbol twice!"); in EmitLabel()
80 MCObjectStreamer::EmitLabel(Symbol); in EmitLabel()
91 bool MCWinCOFFStreamer::EmitSymbolAttribute(MCSymbol *Symbol, in EmitSymbolAttribute() argument
93 assert(Symbol && "Symbol must be non-null!"); in EmitSymbolAttribute()
94 assert((!Symbol->isInSection() || in EmitSymbolAttribute()
95 Symbol->getSection().getVariant() == MCSection::SV_COFF) && in EmitSymbolAttribute()
98 getAssembler().registerSymbol(*Symbol); in EmitSymbolAttribute()
104 cast<MCSymbolCOFF>(Symbol)->setIsWeakExternal(); in EmitSymbolAttribute()
105 Symbol->setExternal(true); in EmitSymbolAttribute()
[all …]
DMCELFStreamer.cpp98 auto *Symbol = cast<MCSymbolELF>(S); in EmitLabel() local
99 assert(Symbol->isUndefined() && "Cannot define a symbol twice!"); in EmitLabel()
101 MCObjectStreamer::EmitLabel(Symbol); in EmitLabel()
106 Symbol->setType(ELF::STT_TLS); in EmitLabel()
162 void MCELFStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) { in EmitWeakReference() argument
163 getAssembler().registerSymbol(*Symbol); in EmitWeakReference()
165 Symbol, MCSymbolRefExpr::VK_WEAKREF, getContext()); in EmitWeakReference()
189 auto *Symbol = cast<MCSymbolELF>(S); in EmitSymbolAttribute() local
193 // Note that we intentionally cannot use the symbol data here; this is in EmitSymbolAttribute()
196 ISD.Symbol = Symbol; in EmitSymbolAttribute()
[all …]
/external/llvm/include/llvm/DebugInfo/PDB/
DPDBSymDumper.h1 //===- PDBSymDumper.h - base interface for PDB symbol dumper *- C++ -----*-===//
24 virtual void dump(const PDBSymbolAnnotation &Symbol);
25 virtual void dump(const PDBSymbolBlock &Symbol);
26 virtual void dump(const PDBSymbolCompiland &Symbol);
27 virtual void dump(const PDBSymbolCompilandDetails &Symbol);
28 virtual void dump(const PDBSymbolCompilandEnv &Symbol);
29 virtual void dump(const PDBSymbolCustom &Symbol);
30 virtual void dump(const PDBSymbolData &Symbol);
31 virtual void dump(const PDBSymbolExe &Symbol);
32 virtual void dump(const PDBSymbolFunc &Symbol);
[all …]
/external/autotest/client/common_lib/test_utils/
Dmock.py135 def __init__(self, symbol, return_obj, *args, **dargs): argument
137 self.symbol = symbol
168 return _dump_function_call(self.symbol, self.args, self.dargs)
172 def __init__(self, symbol, return_val, *args, **dargs): argument
173 super(function_mapping, self).__init__(symbol, return_val, *args,
192 def __init__(self, symbol, default_return_val=None, argument
198 self.symbol = symbol
201 self.__name__ = symbol
209 return self.playback(self.symbol, *args, **dargs)
215 mapping = function_mapping(self.symbol, None, *args, **dargs)
[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/v8/test/mjsunit/harmony/
Dprivate-symbols.js8 var symbol = %CreatePrivateSymbol("private"); variable
14 object[symbol] = 42;
37 assertEquals(42, proxy[symbol] = 42);
38 assertThrows(function() { "use strict"; proxy[symbol] = 42 }, TypeError);
39 assertEquals(false, Reflect.set(proxy, symbol, 42));
40 assertEquals(42, object[symbol] = 42);
41 assertEquals(43, (function() {"use strict"; return object[symbol] = 43})());
42 assertEquals(true, Reflect.set(object, symbol, 44));
45 assertEquals(false, Reflect.defineProperty(proxy, symbol, {}));
46 assertThrows(() => Object.defineProperty(proxy, symbol, {}), TypeError);
[all …]
/external/llvm/tools/llvm-pdbdump/
DFunctionDumper.cpp33 void dumpClassParentWithScopeOperator(const T &Symbol, LinePrinter &Printer, in dumpClassParentWithScopeOperator() argument
35 uint32_t ClassParentId = Symbol.getClassParentId(); in dumpClassParentWithScopeOperator()
37 Symbol.getSession().template getConcreteSymbolById<PDBSymbolTypeUDT>( in dumpClassParentWithScopeOperator()
50 void FunctionDumper::start(const PDBSymbolTypeFunctionSig &Symbol, in start() argument
52 auto ReturnType = Symbol.getReturnType(); in start()
55 uint32_t ClassParentId = Symbol.getClassParentId(); in start()
57 Symbol.getSession().getConcreteSymbolById<PDBSymbolTypeUDT>( in start()
60 PDB_CallingConv CC = Symbol.getCallingConvention(); in start()
95 if (auto ChildEnum = Symbol.getArguments()) { in start()
105 if (Symbol.isConstType()) in start()
[all …]
DCompilandDumper.cpp1 //===- CompilandDumper.cpp - llvm-pdbdump compiland symbol dumper *- C++ *-===//
41 void CompilandDumper::dump(const PDBSymbolCompilandDetails &Symbol) {} in dump() argument
43 void CompilandDumper::dump(const PDBSymbolCompilandEnv &Symbol) {} in dump() argument
45 void CompilandDumper::start(const PDBSymbolCompiland &Symbol, bool Children) { in start() argument
46 std::string FullName = Symbol.getName(); in start()
55 auto ChildrenEnum = Symbol.findAllChildren(); in start()
62 void CompilandDumper::dump(const PDBSymbolData &Symbol) { in dump() argument
63 if (Printer.IsSymbolExcluded(Symbol.getName())) in dump()
68 switch (auto LocType = Symbol.getLocationType()) { in dump()
72 << "[" << format_hex(Symbol.getVirtualAddress(), 10) << "]"; in dump()
[all …]
/external/llvm/include/llvm/MC/
DMCExpr.h86 /// \param Layout - The assembler layout object to use for evaluating symbol
117 /// otherwise the section associated with the first defined symbol in the
155 /// \brief Represent a reference to a symbol from inside an expression.
157 /// A symbol reference in an expression may be a use of a label, a use of an
159 /// of the symbol as external.
187 VK_SIZE, // symbol@SIZE
195 VK_ARM_SBREL, // symbol(sbrel)
196 VK_ARM_TLSLDO, // symbol(tlsldo)
197 VK_ARM_TLSCALL, // symbol(tlscall)
198 VK_ARM_TLSDESC, // symbol(tlsdesc)
[all …]
DMCStreamer.h58 /// virtual emitBar(const MCSymbol &Symbol) = 0;
84 virtual void emitLabel(MCSymbol *Symbol);
86 virtual void emitAssignment(MCSymbol *Symbol, const MCExpr *Value);
130 virtual void emitThumbSet(MCSymbol *Symbol, const MCExpr *Value);
174 /// \brief Tracks an index to represent the order a symbol was emitted in.
175 /// Zero means we did not emit that symbol.
270 /// \name Symbol & Section Management
288 /// \brief Returns an index to represent the order a symbol was emitted in.
289 /// (zero if we did not emit that symbol)
357 /// \brief Sets the symbol's section.
[all …]
/external/llvm/lib/DebugInfo/PDB/
DPDBSymDumper.cpp24 void PDBSymDumper::dump(const PDBSymbolAnnotation &Symbol) { in dump() argument
28 void PDBSymDumper::dump(const PDBSymbolBlock &Symbol) { in dump() argument
32 void PDBSymDumper::dump(const PDBSymbolCompiland &Symbol) { in dump() argument
36 void PDBSymDumper::dump(const PDBSymbolCompilandDetails &Symbol) { in dump() argument
40 void PDBSymDumper::dump(const PDBSymbolCompilandEnv &Symbol) { in dump() argument
44 void PDBSymDumper::dump(const PDBSymbolCustom &Symbol) { in dump() argument
48 void PDBSymDumper::dump(const PDBSymbolData &Symbol) { in dump() argument
52 void PDBSymDumper::dump(const PDBSymbolExe &Symbol) { in dump() argument
56 void PDBSymDumper::dump(const PDBSymbolFunc &Symbol) { in dump() argument
60 void PDBSymDumper::dump(const PDBSymbolFuncDebugEnd &Symbol) { in dump() argument
[all …]
/external/toybox/kconfig/
Dsymbol.c15 struct symbol symbol_yes = {
34 struct symbol *sym_defconfig_list;
35 struct symbol *modules_sym;
38 void sym_add_default(struct symbol *sym, const char *def) in sym_add_default()
47 struct symbol *sym; in sym_init()
78 enum symbol_type sym_get_type(struct symbol *sym) in sym_get_type()
112 struct property *sym_get_choice_prop(struct symbol *sym) in sym_get_choice_prop()
121 struct property *sym_get_default_prop(struct symbol *sym) in sym_get_default_prop()
133 struct property *sym_get_range_prop(struct symbol *sym) in sym_get_range_prop()
145 static int sym_get_range_val(struct symbol *sym, int base) in sym_get_range_val()
[all …]
/external/llvm/tools/obj2yaml/
Dcoff2yaml.cpp137 dumpFunctionDefinition(COFFYAML::Symbol *Sym, in dumpFunctionDefinition()
149 dumpbfAndEfLineInfo(COFFYAML::Symbol *Sym, in dumpbfAndEfLineInfo()
158 static void dumpWeakExternal(COFFYAML::Symbol *Sym, in dumpWeakExternal()
168 dumpSectionDefinition(COFFYAML::Symbol *Sym, in dumpSectionDefinition()
184 dumpCLRTokenDefinition(COFFYAML::Symbol *Sym, in dumpCLRTokenDefinition()
194 std::vector<COFFYAML::Symbol> &Symbols = YAMLObj.Symbols; in dumpSymbols()
196 object::COFFSymbolRef Symbol = Obj.getCOFFSymbol(S); in dumpSymbols() local
197 COFFYAML::Symbol Sym; in dumpSymbols()
198 Obj.getSymbolName(Symbol, Sym.Name); in dumpSymbols()
199 Sym.SimpleType = COFF::SymbolBaseType(Symbol.getBaseType()); in dumpSymbols()
[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/opencv3/3rdparty/libwebp/utils/
Dhuffman.c74 int symbol; in HuffmanCodeLengthsToCodes() local
86 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in HuffmanCodeLengthsToCodes()
87 if (code_lengths[symbol] > max_code_length) { in HuffmanCodeLengthsToCodes()
88 max_code_length = code_lengths[symbol]; in HuffmanCodeLengthsToCodes()
94 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in HuffmanCodeLengthsToCodes()
95 ++code_length_hist[code_lengths[symbol]]; in HuffmanCodeLengthsToCodes()
100 // next_codes[code_len] denotes the code to be assigned to the next symbol in HuffmanCodeLengthsToCodes()
110 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in HuffmanCodeLengthsToCodes()
111 if (code_lengths[symbol] > 0) { in HuffmanCodeLengthsToCodes()
112 huff_codes[symbol] = next_codes[code_lengths[symbol]]++; in HuffmanCodeLengthsToCodes()
[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/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 …]

12345678910>>...120