/libcore/luni/src/main/java/java/text/ |
DecimalFormat.java | 65 * <em>symbols</em>. The pattern may be set directly using 68 * digits. The symbols are stored in a {@link DecimalFormatSymbols} object. When 69 * using the {@link NumberFormat} factory methods, the pattern and symbols are 79 * replacement is still happening, and if the symbols are modified, the grouping 206 * The prefixes, suffixes, and various symbols used for infinity, digits, 209 * be taken that the symbols and strings do not conflict, or parsing will be 271 * symbols. These intervals are identical in most locales, but in some locales 502 private transient DecimalFormatSymbols symbols; field in class:DecimalFormat 515 this.symbols = new DecimalFormatSymbols(locale); 544 this.symbols = (DecimalFormatSymbols) value.clone() [all...] |
/external/bison/src/ |
print_graph.c | 98 obstack_printf (oout, " %s", escape (symbols[*sp]->tag)); 103 obstack_printf (oout, " %s", escape (symbols[*sp]->tag)); 123 obstack_sgrow (oout, escape (symbols[k]->tag)); 161 && strcmp (symbols[sym]->tag, "error") != 0) 164 TRANSITION_IS_ERROR (trans, i) ? NULL : symbols[sym]->tag,
|
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...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
link_functions.cpp | 103 ir_function *f = linked->symbols->get_function(name); 111 linked->symbols->add_function(f); 184 ir_variable *var = linked->symbols->get_variable(ir->var->name); 190 linked->symbols->add_variable(var); 254 ir_function *const f = shader_list[i]->symbols->get_function(name);
|
ir_print_visitor.h | 88 _mesa_symbol_table *symbols; member in class:ir_print_visitor
|
builtin_variables.cpp | 509 glsl_symbol_table *const symtab = state->symbols; 527 state->symbols->get_type("gl_DepthRangeParameters")); 535 glsl_symbol_table *const symtab = state->symbols; 650 add_builtin_variable(instructions, state->symbols, 667 add_builtin_variable(instructions, state->symbols, 675 add_builtin_variable(instructions, state->symbols, 692 add_variable(instructions, state->symbols, 716 glsl_symbol_table *const symtab = state->symbols; 733 add_builtin_variable(instructions, state->symbols, 752 add_variable(instructions, state->symbols, [all...] |
/external/mesa3d/src/glsl/ |
link_functions.cpp | 103 ir_function *f = linked->symbols->get_function(name); 111 linked->symbols->add_function(f); 184 ir_variable *var = linked->symbols->get_variable(ir->var->name); 190 linked->symbols->add_variable(var); 254 ir_function *const f = shader_list[i]->symbols->get_function(name);
|
ir_print_visitor.h | 88 _mesa_symbol_table *symbols; member in class:ir_print_visitor
|
/external/oprofile/libpp/ |
profile_container.cpp | 55 symbols(new symbol_container), 70 // the symbols/samples are sorted by increasing vma. 125 symbol_entry const * symbol = symbols->insert(symb_entry); 171 symbol_container::symbols_t::iterator it = symbols->begin(); 172 symbol_container::symbols_t::iterator const end = symbols->end(); 200 // Trying to iterate on symbols to create the set of filenames which 258 return symbols->find_by_vma(image_name, vma); 265 return symbols->find(filename, linenr); 272 return symbols->find(filename); 322 return symbols->find(symbol) [all...] |
/external/oprofile/libutil++/ |
op_bfd.h | 44 /// ctor for real symbols 47 /// ctor for artificial symbols 63 /// compare two symbols by their filepos() 83 /// whether other symbols can override it 93 * symbols and retrieving informations for symbols or vma. 101 * @param symbol_filter filter to apply to symbols 198 * Some symbols have no code associated with them; for example, 199 * artificial symbols created for anonymous memory samples or for 216 /// temporary container type for getting symbols [all...] |
op_spu_bfd.cpp | 59 symbols_found_t symbols; local 169 get_symbols(symbols); 173 symbols.push_back(op_bfd_symbol(OP_SPU_DYN_FLAG, OP_SPU_MEMSIZE, 177 add_symbols(symbols, symbol_filter);
|
/sdk/emulator/qtools/ |
trace_reader.h | 54 file_offset(0), flags(0), nsymbols(0), symbols(NULL) {} 59 if (strcmp(symbols[ii].name, name) == 0) 60 return &symbols[ii]; 74 dest->symbols = symbols; 86 symbol_type *symbols; member in struct:TraceReader::region_entry 148 // Free the regions. We must be careful not to free the symbols 149 // within each region because the symbols are sometimes shared 152 // region symbols in its destructor. We need to free only the 244 symbol_type *symbols, bool exact_match) 1513 symbol_type *symbols = new symbol_type[nsymbols + 1]; 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/chromium_org/third_party/WebKit/Source/core/platform/graphics/ |
ANGLEWebKitBridge.h | 73 bool compileShaderSource(const char* shaderSource, ANGLEShaderType, String& translatedShaderSource, String& shaderValidationLog, Vector<ANGLEShaderSymbol>& symbols, int extraCompileOptions = 0);
|
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/ |
CustomFilterValidatedProgram.h | 104 void rewriteMixVertexShader(const Vector<ANGLEShaderSymbol>& symbols);
|
CustomFilterValidatedProgram.cpp | 77 static bool validateSymbols(const Vector<ANGLEShaderSymbol>& symbols, CustomFilterMeshType meshType) 79 for (size_t i = 0; i < symbols.size(); ++i) { 80 const ANGLEShaderSymbol& symbol = symbols[i]; 177 Vector<ANGLEShaderSymbol> symbols; local 178 bool vertexShaderValid = validator->compileShaderSource(originalVertexShader.utf8().data(), SHADER_TYPE_VERTEX, m_validatedVertexShader, vertexShaderLog, symbols); 179 bool fragmentShaderValid = validator->compileShaderSource(originalFragmentShader.utf8().data(), SHADER_TYPE_FRAGMENT, m_validatedFragmentShader, fragmentShaderLog, symbols); 186 if (!validateSymbols(symbols, m_programInfo.meshType())) { 194 rewriteMixVertexShader(symbols); 219 void CustomFilterValidatedProgram::rewriteMixVertexShader(const Vector<ANGLEShaderSymbol>& symbols) 227 for (size_t i = 0; i < symbols.size(); ++i) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/platform/text/mac/ |
LocaleMac.mm | 316 Vector<String, DecimalSymbolsSize> symbols; 318 symbols.append(nineToZero.substring(9 - i, 1)); 319 ASSERT(symbols.size() == DecimalSeparatorIndex); 320 symbols.append([formatter.get() decimalSeparator]); 321 ASSERT(symbols.size() == GroupSeparatorIndex); 322 symbols.append([formatter.get() groupingSeparator]); 323 ASSERT(symbols.size() == DecimalSymbolsSize); 329 setLocaleData(symbols, positivePrefix, positiveSuffix, negativePrefix, negativeSuffix);
|
/external/llvm/test/Object/Inputs/ |
elfver.S | 6 # Also, strip off non-dynamic symbols:
|
/libcore/luni/src/test/java/libcore/java/text/ |
OldSimpleDateFormatTest.java | 97 DateFormatSymbols symbols = new DateFormatSymbols(Locale.ENGLISH); local 98 symbols.setEras(new String[] { "Before", "After" }); 99 SimpleDateFormat f2 = new SimpleDateFormat("y'y'yy", symbols); 102 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(symbols)); 107 new SimpleDateFormat(null, symbols); 114 new SimpleDateFormat("eee", symbols); 128 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals( 225 DateFormatSymbols symbols = new DateFormatSymbols(Locale.ENGLISH); local 226 symbols.setEras(new String[] { "Before", "After" }) 481 DateFormatSymbols symbols = new DateFormatSymbols(); local [all...] |
/sdk/emulator/qtools/tests/gtrace/ |
Makefile | 15 $(QTOOLS)/q2g -r $(P4ROOT)/device/out/linux-arm-release/symbols foo test.elf foo.gtrace
|
/external/chromium_org/third_party/android_platform/development/scripts/ |
symbol.py | 102 # SymbolInformation(lib, addr) receives lib as the path from symbols 103 # root to the symbols file. This needs to be translated to point to the 133 lib: library (or executable) pathname containing symbols 141 more than one element with the symbols for the most deeply 157 lib: library (or executable) pathname containing symbols 163 associated symbols and locations. The list is always non-empty. 166 more than one element with the symbols for the most deeply 227 lib: library (or executable) pathname containing symbols 232 each address has a list of associated symbols and locations 236 more than one element with the symbols for the most deepl [all...] |
/external/chromium_org/third_party/flot/ |
jquery.flot.symbol.min.js | 1 (function(b){function a(h,e,g){var d={square:function(k,j,n,i,m){var l=i*Math.sqrt(Math.PI)/2;k.rect(j-l,n-l,l+l,l+l)},diamond:function(k,j,n,i,m){var l=i*Math.sqrt(Math.PI/2);k.moveTo(j-l,n);k.lineTo(j,n-l);k.lineTo(j+l,n);k.lineTo(j,n+l);k.lineTo(j-l,n)},triangle:function(l,k,o,j,n){var m=j*Math.sqrt(2*Math.PI/Math.sin(Math.PI/3));var i=m*Math.sin(Math.PI/3);l.moveTo(k-m/2,o+i/2);l.lineTo(k+m/2,o+i/2);if(!n){l.lineTo(k,o-i/2);l.lineTo(k-m/2,o+i/2)}},cross:function(k,j,n,i,m){var l=i*Math.sqrt(Math.PI)/2;k.moveTo(j-l,n-l);k.lineTo(j+l,n+l);k.moveTo(j-l,n+l);k.lineTo(j+l,n-l)}};var f=e.points.symbol;if(d[f]){e.points.symbol=d[f]}}function c(d){d.hooks.processDatapoints.push(a)}b.plot.plugins.push({init:c,name:"symbols",version:"1.0"})})(jQuery)
|