HomeSort by relevance Sort by last modified time
    Searched refs:symbols (Results 151 - 175 of 1460) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/tools/aapt2/link/
XmlReferenceLinker.cpp 40 ReferenceVisitor(IAaptContext* context, SymbolTable* symbols, xml::IPackageDeclStack* decls,
42 mContext(context), mSymbols(symbols), mDecls(decls), mCallSite(callSite),
71 XmlVisitor(IAaptContext* context, SymbolTable* symbols, const Source& source,
73 mContext(context), mSymbols(symbols), mSource(source), mSdkLevelsFound(sdkLevelsFound),
74 mCallSite(callSite), mReferenceVisitor(context, symbols, this, callSite) {
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
branchs12.s 10 ;; Branchs to defined symbols, positive offset < 128
30 ;; Branchs to defined symbols, negative offset > -128
50 ;; Branchs to defined symbols, positive offset > -128
70 ;; Branchs to undefined symbols, translated into lbcc
90 ;; Far branchs to undefined symbols
  /bionic/libdl/
Android.mk 9 # NOTE: --exclude-libs=libgcc.a makes sure that any symbols libdl.so pulls from
11 # a) pull symbols from libgcc.a and b) depend on libdl.so will not rely on libdl.so
12 # to provide those symbols, but will instead pull them from libgcc.a. Specifically,
45 # few symbols from libc. Using --no-undefined here results in having to link
47 # with missing symbols. Since this library is just a bunch of stubs, we set
  /toolchain/binutils/binutils-2.25/ld/
testplug.c 42 struct ld_plugin_symbol *symbols; member in struct:claim_file
47 /* Types of things that can be added at all symbols read time. */
155 /* Record it as active for receiving symbols to register. */
183 doing so is not meaningful when calling the add symbols hook. */
255 /* Can't add symbols except as belonging to claimed files. */
269 last_claimfile->symbols = realloc (last_claimfile->symbols,
270 new_n_syms * sizeof *last_claimfile->symbols);
271 if (!last_claimfile->symbols)
275 last_claimfile->symbols[last_claimfile->n_syms_used++] = sym
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
transport_feedback.cc 110 std::deque<TransportFeedback::StatusSymbol>* symbols) {
111 size_t input_size = symbols->size();
114 symbols_[i] = symbols->front();
115 symbols->pop_front();
183 std::deque<TransportFeedback::StatusSymbol>* symbols) {
184 size_t input_size = symbols->size();
187 symbols_[i] = symbols->front();
188 symbols->pop_front();
365 // method will add any "packet not received" symbols needed before this one.
382 // the associated symbols removed from the internal symbol vector
543 std::vector<TransportFeedback::StatusSymbol> symbols; local
715 std::vector<StatusSymbol> symbols = packet->GetStatusVector(); local
753 std::deque<StatusSymbol> symbols; local
    [all...]
  /external/bison/src/
gram.c 40 symbol **symbols = NULL; variable
107 fprintf (out, " %s", symbols[*rp]->tag);
125 xml_escape (symbols[*rp]->tag));
150 fprintf (out, " %s", symbols[ritem[i]]->tag);
258 symbols[i]->prec, symbols[i]->assoc,
259 symbols[i]->tag);
closure.c 65 fprintf (stderr, " %s", symbols[*rp]->tag);
81 fprintf (stderr, "\t%s firsts\n", symbols[i]->tag);
85 symbols[j + ntokens]->tag);
102 fprintf (stderr, "\t%s derives\n", symbols[i]->tag);
119 | symbols 8 3 20, the symbol 8 can be the beginning of the data for |
154 | For example, if symbol 5 can be derived as the sequence of symbols |
graphviz.c 95 if (s->errs->symbols[n])
96 bitset_set (*no_reduce_set, s->errs->symbols[n]->number);
195 firstd = print_token (&dout, firstd, symbols[i]->tag);
199 firste = print_token (&eout, firste, symbols[i]->tag);
symtab.c 31 | Symbols sorted by tag. Allocated by the first invocation of |
32 | symbols_do, after which no more symbols should be created. |
38 | Distinguished symbols. |
91 fatal (_("too many symbols in input grammar (limit is %d)"),
237 /* Apply default %destructor's only to user-defined symbols. */
291 /* Apply the default %printer only to user-defined symbols. */
496 | into FDEFINES. Put in SYMBOLS. |
508 symbols[this->number] = this;
558 symbols[token_translations[this->user_token_number]],
759 | Free the symbols.
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DateFormatSymbolsTest.java 87 DateFormatSymbols symbols = DateFormatSymbols.getInstance(locale); local
88 assertEquals(DateFormatSymbols.getInstance(Locale.ROOT), symbols); local
96 DateFormatSymbols symbols = new DateFormatSymbols(); local
97 DateFormatSymbols clone = (DateFormatSymbols) symbols.clone();
98 assertTrue("Not equal", symbols.equals(clone));
404 DateFormatSymbols symbols = new DateFormatSymbols(Locale.FRANCE); local
405 String[][] zoneStrings = symbols.getZoneStrings();
411 objectOStream.writeObject(symbols);
421 assertEquals(symbols, symbolsD);
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/number/
CurrencyDemo.java 49 DecimalFormatSymbols symbols = result.getDecimalFormatSymbols(); local
50 symbols.setCurrencySymbol(hack.symbol);
51 result.setDecimalFormatSymbols(symbols);
  /external/llvm/test/ExecutionEngine/RuntimeDyld/ARM/
MachO_ARM_PIC_relocations.s 20 # Check stub generation for external symbols by referencing a common symbol, 'baz'.
31 # Check stub generation for internal symbols by referencing 'bar'.
37 # Add 'aaa' to the common symbols to make sure 'baz' isn't at the start of the
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorExpressionTokenizer.java 44 final DecimalFormatSymbols symbols = new DecimalFormatSymbols(locale); local
45 final char zeroDigit = symbols.getZeroDigit();
47 mReplacementMap.put(".", String.valueOf(symbols.getDecimalSeparator()));
CalculatorNumericPadLayout.java 54 final DecimalFormatSymbols symbols = DecimalFormatSymbols.getInstance(locale); local
55 final char zeroDigit = symbols.getZeroDigit();
92 b.setText(String.valueOf(symbols.getDecimalSeparator()));
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DecimalFormat.java 120 * <em>symbols</em>. The pattern may be set directly using {@link #applyPattern}, or
122 * minimum number of integer digits. The symbols are stored in a {@link
124 * pattern and symbols are read from ICU's locale data.
133 * replaced by ','. However, the replacement is still happening, and if the symbols are
252 * <p>The prefixes, suffixes, and various symbols used for infinity, digits, thousands
254 * appear properly during formatting. However, care must be taken that the symbols and
314 * grouping symbol, and that between the first and second grouping symbols. These
612 * Creates a DecimalFormat using the default pattern and symbols for the default
629 // Always applyPattern after the symbols are set
630 this.symbols = new DecimalFormatSymbols(def)
5632 private DecimalFormatSymbols symbols = null; \/\/ LIU new DecimalFormatSymbols(); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DecimalFormat.java 119 * <em>symbols</em>. The pattern may be set directly using {@link #applyPattern}, or
121 * minimum number of integer digits. The symbols are stored in a {@link
123 * pattern and symbols are read from ICU's locale data.
132 * replaced by ','. However, the replacement is still happening, and if the symbols are
251 * <p>The prefixes, suffixes, and various symbols used for infinity, digits, thousands
253 * appear properly during formatting. However, care must be taken that the symbols and
313 * grouping symbol, and that between the first and second grouping symbols. These
612 * Creates a DecimalFormat using the default pattern and symbols for the default
630 // Always applyPattern after the symbols are set
631 this.symbols = new DecimalFormatSymbols(def)
5721 private DecimalFormatSymbols symbols = null; \/\/ LIU new DecimalFormatSymbols(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t022scopes.py 67 symbols = parser.c()
70 symbols,
115 symbols = parser.d()
118 symbols,
  /external/curl/docs/libcurl/
mksymbolsmanpage.pl 52 .TH libcurl-symbols 3 "$date" "libcurl $version" "libcurl symbols"
54 libcurl-symbols \\- libcurl symbol version information
55 .SH "libcurl symbols"
56 This man page details version information for public symbols provided in the
58 introduced and for some symbols two additional information pieces:
67 This man page is automatically generated from the symbols-in-versions file.
  /external/icu/icu4c/source/i18n/
digitformatter.h 128 * Let symbols determine the digits, decimal separator,
131 DigitFormatter(const DecimalFormatSymbols &symbols);
136 * according to symbols.
138 void setDecimalFormatSymbols(const DecimalFormatSymbols &symbols);
143 * according to symbols in the context of monetary amounts.
145 void setDecimalFormatSymbolsForMonetary(const DecimalFormatSymbols &symbols);
237 void setOtherDecimalFormatSymbols(const DecimalFormatSymbols &symbols);
  /external/llvm/test/Object/Inputs/
elfver.S 6 # Also, strip off non-dynamic symbols:
  /external/mesa3d/src/glsl/
ir_print_visitor.h 88 _mesa_symbol_table *symbols; member in class:ir_print_visitor
  /external/v8/test/mjsunit/es6/
mirror-symbols.js 6 // Test the mirror object for symbols.
34 // Test a number of different symbols.
  /toolchain/binutils/binutils-2.25/bfd/
coff-m88k.c 82 /* Get symbol value. (Common symbols are special.) */
248 #define RELOC_PROCESSING(relent,reloc,symbols,abfd,section) \
249 reloc_processing(relent, reloc, symbols, abfd, section)
254 asymbol **symbols,
263 relent->sym_ptr_ptr = symbols + obj_convert (abfd)[reloc->r_symndx];
coff-tic30.c 151 #define RELOC_PROCESSING(relent,reloc,symbols,abfd,section) \
152 reloc_processing(relent, reloc, symbols, abfd, section)
157 asymbol **symbols,
165 relent->sym_ptr_ptr = symbols + obj_convert (abfd)[reloc->r_symndx];
liboasys.h 75 asymbol *symbols; member in struct:_oasys_data

Completed in 1179 milliseconds

1 2 3 4 5 67 8 91011>>