Searched refs:symbol (Results 1 - 25 of 869) sorted by relevance

1234567891011>>

/macosx-10.9.5/groff-38/groff/src/include/
H A Dsymbol.h25 class symbol { class
33 symbol(const char *p, int how = 0);
34 symbol();
36 int operator ==(symbol) const;
37 int operator !=(symbol) const;
44 extern const symbol NULL_SYMBOL;
45 extern const symbol EMPTY_SYMBOL;
47 inline symbol::symbol() : s(0) function in class:symbol
51 inline int symbol
[all...]
/macosx-10.9.5/tcl-102/tk/tk/macosx/
H A DtkMacOSXDebug.h25 MODULE_SCOPE void* TkMacOSXGetNamedDebugSymbol(const char* module, const char* symbol);
28 #define TkMacOSXInitNamedDebugSymbol(module, ret, symbol, ...) \
29 static ret (* symbol)(__VA_ARGS__) = (void*)(-1L); \
30 if (symbol == (void*)(-1L)) { \
31 symbol = TkMacOSXGetNamedDebugSymbol(STRINGIFY(module), STRINGIFY(_##symbol));\
/macosx-10.9.5/Heimdal-323.92.1/cf/
H A Dw32-def-from-dll.pl54 my ($ordinal, $symbol, $in) = ($1, $2, $3);
56 if ($in eq "") { $in = $symbol };
57 $forward_exports{$symbol} = $in;
80 my ($ordinal, $symbol, $in) = ($1, $2, $3);
82 if ($strip_leading_underscore && $symbol =~ /_(.*)/) {
83 $symbol = $1;
85 if (exists $local_exports{$symbol}) {
86 print "\t".$symbol;
87 print " = ".$local_exports{$symbol};
88 if ($in ne $local_exports{$symbol} an
[all...]
H A Dw32-list-externs-from-objs.pl52 my ($section, $type, $visibility, $symbol) = ($1, $2, $3, $4);
58 if ($strip_leading_underscore && $symbol =~ /_(.*)/) {
59 $symbol = $1;
61 if ($strip_leading_underscore && $symbol =~ /(.*)\@.*$/) {
62 $symbol = $1;
64 print $symbol;
/macosx-10.9.5/groff-38/groff/src/roff/troff/
H A Ddictionary.h27 symbol s;
39 int get(symbol *, void **);
51 void *lookup(symbol s, void *v=0); // returns value associated with key
54 void *remove(symbol);
73 int get(symbol *, object **);
80 object *lookup(symbol nm);
81 void define(symbol nm, object *obj);
82 void rename(symbol oldnm, symbol newnm);
83 void remove(symbol n
[all...]
/macosx-10.9.5/cctools-845/include/stuff/
H A Dsymbol.h6 struct symbol { struct
/macosx-10.9.5/WebKit2-7537.78.2/Platform/gtk/
H A DModuleGtk.cpp49 gpointer symbol = 0; local
50 g_module_symbol(m_handle, functionName, &symbol);
51 return symbol;
/macosx-10.9.5/apache-786.1/httpd/build/
H A Dmake_nw_export.awk41 symbol = args[2]
42 sub("^[ \t]+", "", symbol)
43 sub("[ \t]+$", "", symbol)
44 add_symbol("ap_hook_" symbol)
45 add_symbol("ap_hook_get_" symbol)
46 add_symbol("ap_run_" symbol)
54 symbol = args[4]
55 sub("^[ \t]+", "", symbol)
56 sub("[ \t]+$", "", symbol)
57 add_symbol(prefix "_hook_" symbol)
[all...]
H A Dmake_exports.awk86 function add_symbol(symbol) {
87 if (!index(symbol, "#")) {
88 push("const void *ap_hack_" symbol " = (const void *)" symbol ";")
104 symbol = args[2]
105 sub("^[ \t]+", "", symbol)
106 sub("[ \t]+$", "", symbol)
108 add_symbol("ap_hook_" symbol)
109 add_symbol("ap_hook_get_" symbol)
110 add_symbol("ap_run_" symbol)
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dcustom.el53 (defun custom-initialize-default (symbol value)
55 This will do nothing if symbol already has a default binding.
56 Otherwise, if symbol has a `saved-value' property, it will evaluate
57 the car of that and use it as the default binding for symbol.
59 symbol."
60 (unless (default-boundp symbol)
62 (set-default symbol (if (get symbol 'saved-value)
63 (eval (car (get symbol 'saved-value)))
66 (defun custom-initialize-set (symbol valu
[all...]
H A Dcus-dep.el88 (mapatoms (lambda (symbol)
89 (let ((members (get symbol 'custom-group))
100 (insert "(put '" (symbol-name symbol)
123 \(defmacro custom-put-if-not (symbol propname value)
124 `(unless (get ,symbol ,propname)
125 (put ,symbol ,propname ,value)))
129 (mapatoms (lambda (symbol)
130 (let ((version (get symbol 'custom-version))
133 (setq where (get symbol 'custo
[all...]
/macosx-10.9.5/cctools-845/as/
H A Dstruc-symbol.h3 /* struct_symbol.h - Internal symbol structure
33 struct symbol /* our version of an nlist node */ struct
36 char *sy_name; /* symbol name */
41 uint32_t sy_number; /* 24 bit symbol number. */
44 struct symbol *sy_prev_by_index; /* backward chain, or NULL */
46 struct symbol *sy_prev_resolved; /* first non local in backward chain */
47 struct symbol *sy_next; /* forward chain, or NULL */
48 struct frag *sy_frag; /* NULL or -> frag this symbol attaches to. */
49 struct symbol *sy_forward; /* value is really that of this other symbol */
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/Foundation/Scripts/
H A DfindPython.py23 def libraryNameForSymbol(symbol):
30 symbol = '_' + symbol
31 if not d['NSIsSymbolNameDefined'](symbol):
32 # symbol not defined
34 sym = d['NSLookupAndBindSymbol'](symbol)
36 raise ValueError("Couldn't bind symbol %r" % (symbol,))
39 raise ValueError("Couldn't find module for symbol %r" % (symbol,))
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/Examples/Foundation/Scripts/
H A DfindPython.py23 def libraryNameForSymbol(symbol):
30 symbol = '_' + symbol
31 if not d['NSIsSymbolNameDefined'](symbol):
32 # symbol not defined
34 sym = d['NSLookupAndBindSymbol'](symbol)
36 raise ValueError("Couldn't bind symbol %r" % (symbol,))
39 raise ValueError("Couldn't find module for symbol %r" % (symbol,))
[all...]
/macosx-10.9.5/libxml2-26/libxml2/doc/
H A Dlibxml-doc.el28 ;; (autoload 'libxmldoc-lookup-symbol "~/elisp/libxml-doc"
31 ;; (autoload 'libxmldoc-lookup-symbol "libxml-doc"
44 ;; call M-x libxmldoc-lookup-symbol: this will prompt with completion and
46 ;; point matches a symbol, that is used instead. You can also call
47 ;; libxmldoc-lookup-symbol noninteractively and pass the symbol.
61 ;; Wed Jun 21 01:45:29 2000: added libxmldoc-lookup-symbol-at-point
62 ;; Wed Jun 21 23:37:58 2000: libxmldoc-lookup-symbol now uses
63 ;; (thing-at-point 'word) if it matches a symbol
68 ;; - Changed the 'word match from thing-at-point into 'symbol
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/build/
H A Dmake_exports.awk72 function add_symbol(symbol) {
73 if (!index(symbol, "#")) {
74 push("const void *ap_hack_" symbol " = (const void *)" symbol ";")
90 symbol = args[2]
91 sub("^[ \t]+", "", symbol)
92 sub("[ \t]+$", "", symbol)
94 add_symbol("ap_hook_" symbol)
95 add_symbol("ap_hook_get_" symbol)
96 add_symbol("ap_run_" symbol)
[all...]
/macosx-10.9.5/apr-30/apr/apr/build/
H A Dmake_exports.awk72 function add_symbol(symbol) {
73 if (!index(symbol, "#")) {
74 push("const void *ap_hack_" symbol " = (const void *)" symbol ";")
90 symbol = args[2]
91 sub("^[ \t]+", "", symbol)
92 sub("[ \t]+$", "", symbol)
94 add_symbol("ap_hook_" symbol)
95 add_symbol("ap_hook_get_" symbol)
96 add_symbol("ap_run_" symbol)
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/macosx/
H A DtkMacOSXDebug.h87 MODULE_SCOPE void* TkMacOSXGetNamedDebugSymbol(const char* module, const char* symbol);
90 #define TkMacOSXInitNamedDebugSymbol(module, ret, symbol, ...) \
91 static ret (* symbol)(__VA_ARGS__) = (void*)(-1L); \
92 if (symbol == (void*)(-1L)) { \
93 symbol = TkMacOSXGetNamedDebugSymbol(STRINGIFY(module), STRINGIFY(_##symbol));\
/macosx-10.9.5/bind9-45.100/bind9/util/
H A Dmksymtbl.pl61 my ($addr, $symbol) = (0, "");
66 $symbol = $3;
67 chop($symbol);
72 $symbol = $1;
76 next if ($symbol =~ /\$/);
81 ($addr, $symbol) = ($1, $2);
84 # symbol of "main".
85 $need_uscorefix = 1 if ($symbol eq "_main");
88 if ($symbol ne "") {
93 $symmap{$addr} = $symbol;
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/
H A DtclLoadDld.c76 dlsym(handle, symbol)
78 const char *symbol;
80 return (void *) dld_get_func(symbol);
/macosx-10.9.5/zlib-53/zlib/contrib/puff/
H A Dpuff.c65 * - Catch missing end-of-block symbol error
192 * symbol[] are the symbol values in canonical order, where the number of
198 short *symbol; /* canonically ordered symbols */ member in struct:huffman
202 * Decode a code from the stream s using huffman table h. Return the symbol or
231 int index; /* index of first code of length len in symbol table */
237 if (code - count < first) /* if length len, return symbol */
238 return h->symbol[index + (code - first)];
259 int index; /* index of first code of length len in symbol table */
274 if (code - count < first) { /* if length len, return symbol */
329 int symbol; /* current symbol when stepping through length[] */ local
426 int symbol; /* decoded symbol */ local
525 int symbol; local
683 int symbol; /* decoded value */ local
[all...]
/macosx-10.9.5/groff-38/groff/src/libs/libgroff/
H A Dsymbol.cpp26 #include "symbol.h"
28 const char **symbol::table = 0;
29 int symbol::table_used = 0;
30 int symbol::table_size = 0;
31 char *symbol::block = 0;
32 int symbol::block_size = 0;
34 const symbol NULL_SYMBOL;
35 const symbol EMPTY_SYMBOL("");
78 symbol::symbol(cons function in class:symbol
[all...]
/macosx-10.9.5/WebCore-7537.78.1/
H A Dmake-export-file-generator45 static void validateAndPrint(const char* symbol)
48 if (!strncmp(symbol, "__Z", strlen("__Z"))) {
49 char* demangledName = abi::__cxa_demangle(symbol + 1, nullptr, nullptr, nullptr);
51 fprintf(stderr, "ERROR: \\"%s\\" is not a valid C++ mangled name.\\n", symbol);
59 printf("%s\\n", symbol);
/macosx-10.9.5/llvmCore-3425.0.33/bindings/python/llvm/tests/
H A Dtest_object.py36 for symbol in o.get_symbols():
38 assert isinstance(symbol, Symbol)
39 assert isinstance(symbol.name, str)
40 assert isinstance(symbol.address, long)
41 assert isinstance(symbol.size, long)
42 assert isinstance(symbol.file_offset, long)
46 for symbol in o.get_symbols():
47 symbol.cache()
52 for symbol in o.get_symbols():
53 section = symbol
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/unicode/
H A Ddcfmtsym.h15 * 08/26/97 aliu Added currency/intl currency symbol support.
87 * Constants for specifying a number format symbol.
107 /** The currency symbol */
109 /** The international currency symbol */
113 /** The exponential symbol */
115 /** Per mill symbol - replaces kPermillSymbol */
119 /** Infinity symbol */
121 /** Nan symbol */
123 /** Significant digit symbol
166 /** count symbol constant
419 setSymbol(ENumberFormatSymbol symbol, const UnicodeString &value, const UBool propogateDigits = TRUE) argument
[all...]

Completed in 370 milliseconds

1234567891011>>