/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/ |
Fonts.py | 58 symbol = kFontIDSymbol variable
|
/external/chromium_org/third_party/angle/src/compiler/translator/ |
VariableInfo.cpp | 152 void CollectVariables::visitSymbol(TIntermSymbol *symbol) 154 ASSERT(symbol != NULL); 156 const TString &symbolName = symbol->getSymbol(); 158 if (IsVarying(symbol->getQualifier())) 162 else if (symbol->getType().getBasicType() == EbtInterfaceBlock) 168 switch (symbol->getQualifier()) 179 const TInterfaceBlock *interfaceBlock = symbol->getType().getInterfaceBlock();
|
ParseContext.cpp | 312 const char* symbol = 0; local 314 symbol = symNode->getSymbol().c_str(); 359 extraInfoStream << "\"" << symbol << "\" (" << message << ")"; 423 // of scope. Except, if the symbol table is at the built-in push-level, 782 // without a size, and make the right changes to the symbol table. 791 // Don't check for reserved word use until after we know it's not in the symbol table, 797 TSymbol* symbol = symbolTable.find(identifier, 0, &builtIn, &sameScope); local 798 if (symbol == 0 || !sameScope) { 809 error(line, "INTERNAL ERROR inserting new symbol", identifier.c_str()); 813 if (! symbol->isVariable()) 1070 const TSymbol* symbol = symbolTable.find(call->getName(), shaderVersion, builtIn); local 1148 const TSymbol* symbol = symbolTable.find(initializer->getAsSymbolNode()->getSymbol(), 0); local 1265 TIntermSymbol* symbol = intermediate.addSymbol(0, identifier, TType(publicType), identifierLocation); local 1317 TIntermSymbol* symbol = intermediate.addSymbol(0, identifier, TType(arrayType), identifierLocation); local 1386 TIntermSymbol* symbol = intermediate.addSymbol(0, identifier, TType(publicType), identifierLocation); local [all...] |
OutputHLSL.cpp | 1872 TIntermSymbol *symbol = (*sit)->getAsSymbolNode(); local 1901 TIntermSymbol *symbol = (*sit)->getAsSymbolNode(); local 1934 TIntermSymbol *symbol = (*arguments)[i]->getAsSymbolNode(); local 1982 TIntermSymbol *symbol = (*arguments)[i]->getAsSymbolNode(); local 2554 TIntermSymbol *symbol = assign->getLeft()->getAsSymbolNode(); local [all...] |
/external/chromium_org/tools/mac/ |
symbolicate_crash.py | 94 # Attaches a list of symbol names to stack frames. This assumes that the 165 # |<frame-number> <binary-image> 0x<address> <symbol> <offset>|. 231 # A: |<space><steps> <symbol> + <offset> (in <image-name>) [<address>]| 328 Returns a list of symbol information in the same order as |addresses|.""" 357 # |<symbol> (in <image>) (<file>:<line>)|. 366 frame.symbol = symbol_parts.group(1) 403 self.symbol = None 419 # Same with the symbol information. 420 symbol = self.original_symbol 421 if self.symbol [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
Huffman.java | 42 * @param codes Index designates the symbol this code represents. 43 * @param lengths Index designates the symbol this code represents. 107 baos.write(node.symbol); 123 baos.write(node.symbol); 167 // Terminal nodes have a symbol. 168 private final int symbol; field in class:Huffman.Node 176 this.symbol = 0; // Not read. 183 * @param symbol symbol the node represents 186 Node(int symbol, int bits) [all...] |
/bionic/libc/bionic/ |
malloc_debug_common.cpp | 300 char symbol[128]; local 301 snprintf(symbol, sizeof(symbol), "%s_%s", prefix, suffix); 302 *func = reinterpret_cast<FunctionType>(dlsym(malloc_impl_handler, symbol)); 304 error_log("%s: dlsym(\"%s\") failed", getprogname(), symbol);
|
/external/chromium_org/third_party/libwebp/utils/ |
huffman_encode.c | 22 // Util function to optimize the symbol map for RLE coding 50 uint32_t symbol = counts[0]; local 53 if (i == length || counts[i] != symbol) { 54 if ((symbol == 0 && stride >= 5) || 55 (symbol != 0 && stride >= 7)) { 63 symbol = counts[i]; 150 // bit_depths[]: how many bits are used for the symbol. 375 // 0 bit-depth means that the symbol does not exist. 388 depth_count[0] = 0; // ignore unused symbol
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
EscapingEvaluator.java | 102 .symbol("EscapeMode.ESCAPE_NONE")); 182 string(name)), JavaExpression.symbol("EscapeMode.ESCAPE_IS_CONSTANT"), JavaExpression 183 .symbol("EscapeMode.ESCAPE_NONE")); 203 return JavaExpression.callOn(JavaExpression.symbol("EscapeMode"), "combineModes", first, 245 setEscaping(JavaExpression.symbol("EscapeMode.ESCAPE_IS_CONSTANT"));
|
/external/lldb/source/Target/ |
ThreadPlanStepInRange.cpp | 20 #include "lldb/Symbol/Symbol.h" 21 #include "lldb/Symbol/Function.h" 162 // However, if the frame is the same, and we are still in the symbol we started 220 else if (sc.symbol) 222 func_start_address = sc.symbol->GetAddress(); 224 bytes_to_skip = sc.symbol->GetPrologueByteSize(); 287 if (sc.symbol != NULL) 344 if (sc.symbol != NULL)
|
/external/webp/src/utils/ |
huffman_encode.c | 22 // Util function to optimize the symbol map for RLE coding 50 uint32_t symbol = counts[0]; local 53 if (i == length || counts[i] != symbol) { 54 if ((symbol == 0 && stride >= 5) || 55 (symbol != 0 && stride >= 7)) { 63 symbol = counts[i]; 150 // bit_depths[]: how many bits are used for the symbol. 375 // 0 bit-depth means that the symbol does not exist. 388 depth_count[0] = 0; // ignore unused symbol
|
/external/chromium_org/third_party/sqlite/src/tool/ |
lemon.c | 163 struct symbol { struct 164 const char *name; /* Name of the symbol */ 165 int index; /* Index number for this symbol */ 168 struct symbol *fallback; /* fallback token in case this token doesn't parse */ 171 char *firstset; /* First-set for all rules of this symbol */ 174 char *destructor; /* Code which executes whenever this symbol is 184 struct symbol **subsym; /* Array of constituent symbols */ 190 struct symbol *lhs; /* Left-hand side of the rule */ 192 int lhsStart; /* True if left-hand side is the start symbol */ 195 struct symbol **rhs; /* The RHS symbols * [all...] |
/external/linux-tools-perf/perf-3.12.0/tools/perf/ |
builtin-top.c | 31 #include "util/symbol.h" 92 struct symbol *sym; 124 pr_err("Not enough memory for annotating '%s' symbol!\n", 142 struct symbol *sym = he->ms.sym; 146 static void ui__warn_map_erange(struct map *map, struct symbol *sym, u64 ip) 155 "Symbol: %" PRIx64 "-%" PRIx64 " %c %s\n" 178 struct symbol *sym; 194 pr_err("Not enough memory for annotating '%s' symbol!\n", 213 struct symbol *symbol; local [all...] |
/external/lldb/source/Core/ |
Address.cpp | 13 #include "lldb/Symbol/Block.h" 14 #include "lldb/Symbol/ObjectFile.h" 15 #include "lldb/Symbol/Type.h" 16 #include "lldb/Symbol/Variable.h" 17 #include "lldb/Symbol/VariableList.h" 21 #include "lldb/Symbol/SymbolVendor.h" 467 Symbol *symbol = symtab->FindSymbolContainingFileAddress (file_Addr); local 468 if (symbol) 470 const char *symbol_name = symbol->GetName().AsCString() [all...] |
/external/lldb/source/Expression/ |
ClangExpressionDeclMap.cpp | 32 #include "lldb/Symbol/ClangASTContext.h" 33 #include "lldb/Symbol/ClangNamespaceDecl.h" 34 #include "lldb/Symbol/CompileUnit.h" 35 #include "lldb/Symbol/Function.h" 36 #include "lldb/Symbol/ObjectFile.h" 37 #include "lldb/Symbol/SymbolContext.h" 38 #include "lldb/Symbol/SymbolVendor.h" 39 #include "lldb/Symbol/Type.h" 40 #include "lldb/Symbol/TypeList.h" 41 #include "lldb/Symbol/Variable.h 696 const Symbol *symbol = sym_ctx.symbol; local [all...] |
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
map.c | 1 #include "symbol.h" 134 struct symbol *sym = rb_entry(nd, struct symbol, rb_node); 144 struct symbol *sym = rb_entry(nd, struct symbol, rb_node); 195 struct symbol *map__find_symbol(struct map *map, u64 addr, 204 struct symbol *map__find_symbol_by_name(struct map *map, const char *name, 336 struct symbol *map_groups__find_symbol(struct map_groups *mg, 352 struct symbol *map_groups__find_symbol_by_name(struct map_groups *mg, 362 struct symbol *sym = map__find_symbol_by_name(pos, name, filter) [all...] |
probe-event.c | 41 #include "symbol.h" 78 /* Initialize symbol maps and path of vmlinux/modules */ 90 pr_debug("Failed to init symbol map.\n"); 108 static struct symbol *__find_kernel_function_by_name(const char *name, 185 pr_debug("Failed to init symbol map.\n"); 193 pp->function = strdup(tp->symbol); 232 struct symbol *sym; 238 sym = __find_kernel_function_by_name(tp->symbol, &map); 241 pr_debug("try to find %s+%ld@%" PRIx64 "\n", tp->symbol, 582 fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol, [all...] |
/frameworks/base/tools/aapt/ |
AaptAssets.h | 308 * All information we know about a particular symbol. 373 if (!check_valid_symbol_name(name, pos, "symbol")) { 384 if (!check_valid_symbol_name(name, pos, "symbol")) { 394 if (!check_valid_symbol_name(name, pos, "symbol")) { 403 if (!check_valid_symbol_name(name, pos, "symbol")) { 438 if (!check_valid_symbol_name(name, pos, "nested symbol")) { 464 bool check_valid_symbol_name(const String8& symbol, const SourcePos& pos, const char* label) { 465 if (valid_symbol_name(symbol)) { 468 pos.error("invalid %s: '%s'\n", label, symbol.string()); 471 AaptSymbolEntry& edit_symbol(const String8& symbol, const SourcePos* pos) [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
recognizers.rb | 379 # Attempt to match the current input symbol the token type 380 # specified by +type+. If the symbol matches the type, 381 # consume the current symbol and return its value. If 382 # the symbol doesn't match, attempt to use the follow-set 397 # the current symbol from the input stream. 440 "missing #{ token_name } at #{ token_error_display( e.symbol ) }" 443 "mismatched input #{ token_error_display( e.symbol ) } expecting #{ token_name }" 446 "mismatched tree node: #{ e.symbol } expecting #{ token_name }" 448 "no viable alternative at input " << token_error_display( e.symbol ) 451 [ token_error_display( e.symbol ), e.expecting.inspect [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
math_semantic_attr.js | 20 * symbol or variable. 23 * of the overall mathematical expression. For instance, the symbol '|' 34 * background page every time we need to look up the semantic of a symbol. 836 * font: cvox.SemanticAttr.Font}>} The semantic meaning of the symbol. [all...] |
/prebuilts/misc/common/swig/include/2.0.11/mzscheme/ |
mzrun.swg | 452 Scheme_Object *pointer, *symbol; 456 symbol = scheme_intern_symbol("swig-runtime-data-type-pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME); 457 pointer = scheme_lookup_global(symbol, env); 469 Scheme_Object *pointer, *symbol; 473 symbol = scheme_intern_symbol("swig-runtime-data-type-pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME); 474 pointer = scheme_lookup_global(symbol, env); 492 scheme_add_global_symbol(symbol, pointer, env);
|
/cts/tools/dasm/src/java_cup/ |
lalr_state.java | 25 * would be reduced into a C, matching the first symbol in our production 42 * the symbol on the LHS. 218 * @param on_sym the symbol the transition is under. 221 public void add_transition(symbol on_sym, lalr_state to_st) 239 * from a state we make a transition on each symbol that appears before 283 symbol sym, sym2; 322 /* add the symbol before the dot (if any) to our collection */ 327 /* now create a transition out for each individual symbol */ 330 sym = (symbol)s.nextElement(); 336 symbol before the dot * [all...] |
/external/oprofile/libutil++/ |
op_bfd.cpp | 47 bool operator()(op_bfd_symbol const & symbol) { 48 return !filter_.match(symbol.name()); 68 // we name the symbol after the section. 111 // after creating all symbol it's convenient for user code to access 184 // make the fake symbol fit within the fake file 249 // we need to ensure than for a given vma only one symbol exist else 266 // now we can calculate the symbol size, we can't first include/exclude 267 // symbols because the size of symbol is calculated from the difference 268 // between the vma of a symbol and the next one. 283 // images with no symbols debug info available get a placeholder symbol [all...] |
/external/chromium_org/tools/binary_size/ |
run_binary_size_analysis.py | 76 """Convert a symbol type as printed by nm into a human-readable name.""" 81 'w': 'weak symbol', 82 'v': 'weak symbol'}[symbol_type] 141 """Puts symbol into the file path node |node|. 144 # 'node' is the file node and first step is to find its symbol-type bucket. 151 # 'node' is now the symbol-type bucket. Make the child entry. 155 logging.warning('A container node used as symbol for %s.' % symbol_name) 160 node[NODE_TYPE_KEY] = 's' # s for symbol 345 child_json['data']['$symbol'] = css_class 391 'symbol': sym [all...] |
/external/lldb/source/Plugins/ObjectFile/PECOFF/ |
ObjectFilePECOFF.cpp | 26 #include "lldb/Symbol/ObjectFile.h" 548 Symbol *symbols = m_symtab_ap->Resize (num_syms); 551 coff_symbol_t symbol; local 554 // If the first 4 bytes of the symbol string are zero, then we 556 // 8 bytes contain the symbol name 559 // Long string that doesn't fit into the symbol table name, 567 // Short string that fits into the symbol table name which is 8 bytes 568 offset += sizeof(symbol.name) - 4; // Skip remaining 572 symbol_name.assign (symbol_name_cstr, sizeof(symbol.name)); 574 symbol.value = symtab_data.GetU32 (&offset) [all...] |