HomeSort by relevance Sort by last modified time
    Searched refs:symbol (Results 101 - 125 of 324) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
symshift.pl 3 # "plane" and create combined symbol table
9 # This script creates a symbol table which must be used when
86 reads in a combination of symbol tables with ids in range [0..2^8-1]
87 and converts into one symbol table with ids in range [0..2^16-1] which
96 -pb_strengths <infile> read symbol tables from <file> and shift them into
132 #translation between symbol names used in decision trees
197 #we have the symbol (which potentially contains an exclamation mark)
207 print STDERR "symbol \"$sym\" was allready assigned to plane of \"$table{$otherplane}\" ($otherplane); overwriting\n";
  /sdk/emulator/qtools/
coverage.cpp 13 struct symbol { struct
17 typedef TraceReader<symbol> TraceReaderType;
87 TraceReader<symbol> *trace = new TraceReader<symbol>;
profile_trace.cpp 12 struct symbol { struct
17 typedef TraceReader<symbol> TraceReaderType;
56 TraceReader<symbol> *trace = new TraceReader<symbol>;
74 // Assign the elapsed time to the previous function symbol
  /bionic/libdl/
dltest.c 41 {"symbol", required_argument, 0, 's'},
48 "specify a library path to look up symbol",
49 "specify symbol to look up",
56 "\t%s [-l <libname>] -s <symbol name>\n"
117 fprintf(stderr, "You must specify a symbol!\n");
124 void *handle, *symbol; local
132 printf("opening symbol [%s]\n", symname);
133 symbol = dlsym(handle, symname);
141 else printf("successfully opened symbol\n");
  /cts/tests/tests/view/src/android/view/cts/
View_IdsTest.java 59 TextView symbol = (TextView) activity.findViewById(R.id.symbolball); local
65 assertNotNull(symbol);
  /development/scripts/
stack 16 import symbol namespace
201 raise SymbolDownloadException("failed to extract symbol files (%s)."
300 object_symbol_with_offset) = symbol.SymbolInformation(area, code_addr)
303 source_symbol = symbol.CallCppFilt(symbol_name)
331 object_symbol_with_offset) = symbol.SymbolInformation(area, value)
376 symbol.SYMBOLS_DIR = os.path.expanduser(value)
402 rootdir, symbol.SYMBOLS_DIR = DownloadSymbols(fingerprint, cookie)
404 rootdir, symbol.SYMBOLS_DIR = UnzipSymbols(zip_arg)
406 print "Reading symbols from", symbol.SYMBOLS_DIR
  /external/bison/src/
parse-gram.h 39 /* Put the tokens into the symbol table, so that GDB and other debuggers
153 symbol *symbol; member in union:YYSTYPE
reader.c 52 | Set the start symbol. |
56 grammar_start_symbol_set (symbol *sym, location loc)
149 | null pointer instead of a symbol to terminate the rule. The next |
150 | symbol is the lhs of the following rule. |
156 /* The (currently) last symbol of GRAMMAR. */
161 grammar_symbol_append (symbol *sym, location loc)
190 grammar_current_rule_begin (symbol *lhs, location loc)
218 | A symbol should be used if it has a destructor, or if it is a |
219 | mid-rule symbol (i.e., the generated LHS replacing a mid-rule |
247 symbol *first_rhs = r->next->sym
    [all...]
symlist.c 34 symbol_list_new (symbol *sym, location loc)
78 symbol_list_prepend (symbol_list *list, symbol *sym, location loc)
112 | Get symbol N in symbol list L. |
136 | symbol N in symbol list L. |
153 | The symbol N in symbol list L is USED. |
  /external/harfbuzz/tests/linebreaking/
harfbuzz-qt.cpp 82 void *HB_Library_Resolve(const char *library, const char *symbol)
84 return QLibrary::resolve(library, symbol);
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaExpression.java 134 public final String symbol;
142 private Type(String symbol) {
143 this.symbol = symbol;
348 * An untyped symbol (e.g. myVariable).
350 public static JavaExpression symbol(final String value) {
360 * A typed symbol (e.g. myVariable).
362 public static JavaExpression symbol(Type type, final String value) {
372 return symbol(Type.MACRO, value);
398 JavaSourceWriter.writeJavaSymbol(out, type.symbol);
    [all...]
  /external/webkit/Tools/Scripts/
check-for-exit-time-destructors 116 my ($symbol) = @_;
117 if (!open FILT, "c++filt $symbol |") {
check-for-global-initializers 157 my ($symbol) = @_;
158 if (!open FILT, "c++filt $symbol |") {
  /external/srec/srec/Semproc/src/
SymbolTable.c 71 /* delete the symbol table */
81 Symbol* symbol; local
95 CHKLOG(rc, ST_getSymbolSlot(self, &symbol));
99 LSTRCPY(symbol->key, key);
102 CHKLOG(rc, HashMapPut(self->hashmap, symbol->key, symbol->value));
105 buf = symbol->value;
196 ESR_ReturnCode ST_getSymbolSlot(SymbolTable* ptr, Symbol** slot)
291 PLogError(L("Semproc: Symbol table has too many special symbols"))
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
OutputHLSL.cpp 123 const TSymbol *symbol = (*namedSymbol).second; local
124 const TString &name = symbol->getName();
126 if (symbol->isVariable())
128 const TVariable *variable = static_cast<const TVariable*>(symbol);
273 const TSymbol *symbol = (*namedSymbol).second; local
274 const TString &name = symbol->getName();
276 if (symbol->isVariable())
278 const TVariable *variable = static_cast<const TVariable*>(symbol);
1052 TIntermSymbol *symbol = (*sit)->getAsSymbolNode(); local
1102 TIntermSymbol *symbol = arguments[i]->getAsSymbolNode(); local
1144 TIntermSymbol *symbol = arguments[i]->getAsSymbolNode(); local
1585 TIntermSymbol *symbol = assign->getLeft()->getAsSymbolNode(); local
    [all...]
ParseHelper.cpp 330 const char* symbol = 0; local
332 symbol = symNode->getSymbol().c_str();
380 error(line, " l-value required", op, "\"%s\" (%s)", symbol, message);
437 // of scope. Except, if the symbol table is at the built-in push-level,
740 // without a size, and make the right changes to the symbol table.
749 // Don't check for reserved word use until after we know it's not in the symbol table,
755 TSymbol* symbol = symbolTable.find(identifier, &builtIn, &sameScope); local
756 if (symbol == 0 || !sameScope) {
767 error(line, "INTERNAL ERROR inserting new symbol", identifier.c_str(), "");
771 if (! symbol->isVariable())
814 TSymbol* symbol = symbolTable.find(node->getSymbol(), &builtIn); local
956 const TSymbol* symbol = symbolTable.find(call->getName(), builtIn); local
1035 const TSymbol* symbol = symbolTable.find(initializer->getAsSymbolNode()->getSymbol()); local
    [all...]
ValidateLimitations.h 14 int id; // symbol id.
40 bool isLoopIndex(const TIntermSymbol* symbol) const;
  /external/webkit/Source/WebCore/plugins/gtk/
PluginPackageGtk.cpp 124 gpointer symbol; local
126 return g_module_symbol(module, "gtk_application_get_type", &symbol);
128 return g_module_symbol(module, "gtk_object_get_type", &symbol);
  /cts/tools/dasm/src/java_cup/
lalr_item.java 168 * symbol that the dot is currently in front of. Note: this routine must
178 symbol sym;
224 /** Determine if everything from the symbol one beyond the dot all the
234 symbol sym;
240 /* walk down the rhs and bail if we get a non-nullable symbol */
terminal.java 6 /** This class represents a terminal symbol in the grammar. Each terminal
15 public class terminal extends symbol {
114 /** Report this symbol as not being a non-terminal. */
  /external/llvm/tools/lto/
lto.cpp 162 // returns the name of the ith symbol in the object module
171 // returns the attributes of the ith symbol in the object module
265 void lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol)
267 cg->addMustPreserveSymbol(symbol);
  /ndk/build/tools/
gen-system-symbols.sh 41 to be imported (unless you use --no-symbol-filtering)
50 register_var_option "--no-symbol-filtering" NO_FILTERING "Disable symbol filtering"
94 # Temp file used to list shared library symbol exclusions
96 SYMBOL_EXCLUDES=/tmp/ndk-$USER/ndk-symbol-excludes.txt
98 # Temp file used to list shared library symbol inclusions, these
100 SYMBOL_INCLUDES=/tmp/ndk-$USER/ndk-symbol-includes.txt
105 # Reset the symbol exclusion list to its default
108 # By default, do not export C++ mangled symbol, which all start with _Z
130 # Clear symbol exclusion/inclusion file
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 69 SymbolTable("t", cl::desc("Display the symbol table"));
264 // Disassemble symbol by symbol.
269 // symbol.
272 // Make sure this symbol takes up space.
276 // This symbol has the same address as the next symbol. Skip it.
422 const coff_symbol *symbol = 0; local
426 if (symbol->StorageClass == COFF::IMAGE_SYM_CLASS_STATIC
427 && symbol->Value == 0) { // Section definition
    [all...]
  /external/mesa3d/src/glsl/
s_expression.h 35 #define SX_AS_SYMBOL(x) SX_AS_(symbol, x)
42 * - symbol
  /external/bluetooth/glib/gmodule/
gmodule.c 610 gpointer *symbol)
614 if (symbol)
615 *symbol = NULL;
620 g_return_val_if_fail (symbol != NULL, FALSE);
629 *symbol = _g_module_symbol (module->handle, name);
633 *symbol = _g_module_symbol (module->handle, symbol_name);
644 *symbol = NULL;

Completed in 1012 milliseconds

1 2 3 45 6 7 8 91011>>