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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_reader.cpp 150 const glsl_type *type = state->symbols->get_type(type_sym->value());
195 ir_function *f = state->symbols->get_function(name->value());
198 added = state->symbols->add_function(f);
238 state->symbols->push_scope();
270 state->symbols->pop_scope();
288 state->symbols->pop_scope();
389 ir_read_error(expr, "qualifier list must contain only symbols");
425 state->symbols->add_variable(var);
645 ir_function *f = state->symbols->get_function(name->value());
859 ir_variable *var = state->symbols->get_variable(s_var->value())
    [all...]
main.cpp 190 shader->symbols = state->symbols;
linker.cpp 323 shader->symbols->get_variable("gl_ClipDistance");
754 sh->symbols = new(sh) glsl_symbol_table;
762 sh->symbols->add_function(func);
764 sh->symbols->add_variable(var);
784 * \param symbols Symbol table containing global scope symbols in the
799 this->symbols = target->symbols;
815 this->symbols->get_variable(ir->var->name);
821 this->symbols->add_variable(copy)
831 glsl_symbol_table *symbols; member in class:remap_visitor
    [all...]
  /external/chromium_org/tools/mac/
symbolicate_crash.py 87 # This returns a list of just symbols. The indices will match up with the
91 print 'Error loading symbols for ' + image_name
319 """Takes a base path for the symbols and an image name. It looks the name up
349 def _AddSymbolsToFrames(self, symbols, address_tuples):
351 a smart-zip with the data returned by atos in |symbols|. Note that the
353 if len(symbols) != len(address_tuples):
354 print 'symbols do not match'
361 for i in range(len(symbols)):
362 symbol_parts = line_regex.match(symbols[i])
467 '[symbolicate_crash.py -s ./symbols/ report.crash] will
    [all...]
  /external/chromium_org/tools/win/sizeviewer/
sizeviewer.py 68 # Sometimes there's symbols with no source file, we just ignore those.
  /external/chromium_org/v8/src/
platform-openbsd.cc 271 char** symbols = backtrace_symbols(addresses.start(), frames_count); local
272 if (symbols == NULL) {
282 symbols[i]); local
287 free(symbols);
  /external/icu4c/test/intltest/
dcfmtest.cpp 319 DecimalFormatSymbols symbols(Locale::getUS(), status);
321 DecimalFormat format(pattern, symbols, status);
386 DecimalFormatSymbols symbols(Locale::getUS(), status);
388 DecimalFormat fmtr(pattern, symbols, status);
  /external/icu4c/tools/toolutil/
pkg_genc.c 994 IMAGE_SYMBOL symbols[1]; local
1103 uprv_memset(&symbols, 0, sizeof(symbols));
    [all...]
  /external/mesa3d/src/glsl/
ir_reader.cpp 150 const glsl_type *type = state->symbols->get_type(type_sym->value());
195 ir_function *f = state->symbols->get_function(name->value());
198 added = state->symbols->add_function(f);
238 state->symbols->push_scope();
270 state->symbols->pop_scope();
288 state->symbols->pop_scope();
389 ir_read_error(expr, "qualifier list must contain only symbols");
425 state->symbols->add_variable(var);
645 ir_function *f = state->symbols->get_function(name->value());
859 ir_variable *var = state->symbols->get_variable(s_var->value())
    [all...]
main.cpp 190 shader->symbols = state->symbols;
  /ndk/build/tools/
gen-system-symbols.sh 17 # gen-system-symbols.sh
40 For some of these libraries, it will remove symbols that are not meant
102 # Temp file used to filter symbols
103 SYMBOL_TMPFILE=/tmp/ndk-$USER/ndk-symbols-list.txt
111 # __INIT_ARRAY__ and __FINI_ARRAY__ are special symbols that should
136 # Filter the list of symbols from a file
144 # $2+: List of symbols (functions or variables)
145 # Out: sorted list of filtered symbols, based on library name
150 local SYMBOLS="$@"
151 (echo "$SYMBOLS" | tr ' ' '\n' | sort -u) > $SYMBOL_TMPFIL
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
cs46xx_dsp_spos.h 81 struct dsp_symbol_entry *symbols; member in struct:dsp_symbol_desc
148 struct dsp_symbol_desc symbol_table; /* currently availble loaded symbols in SP */
171 /* cache this symbols */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
cs46xx_dsp_spos.h 81 struct dsp_symbol_entry *symbols; member in struct:dsp_symbol_desc
148 struct dsp_symbol_desc symbol_table; /* currently availble loaded symbols in SP */
171 /* cache this symbols */
  /external/elfutils/src/
unstrip.c 1 /* Combine stripped files with separate symbols and debug information.
314 /* The binutils linker leaves gratuitous section symbols in .symtab
543 /* The original file probably had section symbols for all of its
545 possible, add in section symbols for the added sections. */
571 /* Copy the existing section symbols. */
587 /* Add in the new section symbols. */
605 /* Now copy the rest of the existing symbols. */
625 /* This has the side effect of updating STT_SECTION symbols' values,
748 /* Collect input symbols into our internal form. */
810 /* Compare symbols with a consistent ordering
1594 struct symbol symbols[total_syms]; local
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DecimalFormatTest.java 112 DecimalFormatSymbols symbols = new DecimalFormatSymbols(); local
113 number = form.parse(symbols.getNaN(), new ParsePosition(0));
121 symbols = new DecimalFormatSymbols();
122 number = form.parse(symbols.getInfinity(), new ParsePosition(0));
171 symbols = new DecimalFormatSymbols();
172 number = form.parse(symbols.getNaN() + "", new ParsePosition(0));
176 number = form.parse(symbols.getNaN() + "", new ParsePosition(0));
183 symbols = new DecimalFormatSymbols();
185 number = form.parse(symbols.getInfinity(), new ParsePosition(0));
192 symbols = new DecimalFormatSymbols()
1378 DecimalFormatSymbols symbols = new DecimalFormatSymbols(); local
1578 DecimalFormatSymbols symbols = new DecimalFormatSymbols(); local
1591 DecimalFormatSymbols symbols = new DecimalFormatSymbols(); local
    [all...]
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 202 /// initStandardSymbols - define and initialize standard symbols.
210 // GNU extension: define __start and __stop symbols for the sections whose
261 // ----- section symbols ----- //
393 // ----- segment symbols ----- //
505 // ----- section symbols ----- //
573 // ----- segment symbols ----- //
745 Module::SymbolTable& symbols = pModule.getSymbolTable(); local
749 symEnd = symbols.end();
750 for (symbol = symbols.begin(); symbol != symEnd; ++symbol) {
755 symtab_local_cnt = 1 + symbols.numOfFiles() + symbols.numOfLocals()
994 const Module::SymbolTable& symbols = pModule.getSymbolTable(); local
1062 Module::SymbolTable& symbols = pModule.getSymbolTable(); local
1334 Module::SymbolTable& symbols = pModule.getSymbolTable(); local
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp 788 const String16 private_symbols16("private-symbols");
944 sp<AaptSymbols> symbols = assets->getSymbolsFor(String8("R")); local
1056 sp<AaptSymbols> symbols = assets->getSymbolsFor(String8("R")); local
1119 sp<AaptSymbols> symbols = assets->getJavaSymbolsFor(String8("R")); local
1184 sp<AaptSymbols> symbols = assets->getSymbolsFor(String8("R")); local
    [all...]
  /bionic/linker/
Android.mk 79 $(hide) $(TARGET_OBJCOPY) --prefix-symbols=__dl_ $@
  /build/core/
pdk_config.mk 171 # files under $(PRODUCT_OUT)/symbols to help debugging.
172 # Source not included to PDK due to dependency issue, so provide symbols instead.
177 # symbols should be explicitly pulled for fusion build
179 $(eval $(call add-dependency,$(PRODUCT_OUT)/$(f),$(PRODUCT_OUT)/symbols/$(f))))
  /external/chromium_org/native_client_sdk/src/libraries/xray/
report.c 39 struct XRaySymbolTable* symbols = XRayGetSymbolTable(capture); local
70 symbol = XRaySymbolTableLookup(symbols, addr);
  /external/chromium_org/third_party/codesighs/
basesummary.win.bash 142 # Get a dump of the symbols in every object file.
145 xargs -n 1 dumpbin.exe /symbols < $ALLOBJSFILE > $ALLOBJSYMSFILE 2> /dev/null
149 # Produce the symdb for the symbols in all object files.
  /external/chromium_org/third_party/mesa/src/
Android.common.mk 60 # uncomment to keep the debug symbols
  /external/icu4c/common/
uniset_props.cpp 374 const SymbolTable* symbols,
386 RuleCharacterIterator chars(pattern, symbols, pos);
387 applyPattern(chars, symbols, rebuiltPat, USET_IGNORE_SPACE, NULL, status);
436 * @param symbols symbol table to use to parse and dereference
444 const SymbolTable* symbols,
536 } else if (symbols != 0) {
537 const UnicodeFunctor *m = symbols->lookupMatcher(c);
584 nested->applyPattern(chars, symbols, patLocal, options, caseClosure, ec);
722 // symbols nosymbols
733 if (symbols == 0 && !anchor)
    [all...]
  /external/mesa3d/
Android.common.mk 60 # uncomment to keep the debug symbols
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/discovery/
NdkDiscoveredPathInfo.java 94 void setSymbols(Map<String, String> symbols) {
95 this.mSymbols = symbols;

Completed in 386 milliseconds

1 2 3 4 5 67 8 91011>>