symbols

does anyone knows of any site that have a searchable index of unicode symbols

Is there a site that would allow you to search for "arrow", for example, and provide all the Unicode symbols that match the keyword "arrow"? This would be very handy :) Ideally, it would also show the Unicode symbol rendered as an image for users without the requisite fonts who would otherwise see these chars as squares. ...

How do I use TeX/LaTeX formatting for custom data tips in MATLAB?

I'm trying to annotate a polar plot with data tips labelled with 'R:...,Theta:...' where theta is actually the Greek symbol, rather than the word spelled out. I'm familiar with string formatting using '\theta' resulting in the symbol, but it doesn't work in this case. Is there a way to apply the LaTeX interpreter to data tips? Here's wha...

WinDbg doesn't load symbol file that is created using the same source but built at a differnt time than the original

Hi, We released a product (C#.NET library) and didn't store the pdb file of the library, assuming that we can always generate symbol files using the same source code. Now, we want to analyze crash dump (mini dump) file of an application that is using our library. Since we didn't store the pdb file, I created a new one using the same s...

How come we pass the linking stage and still miss symbols ? ?

Hi All And thanks in advance. operating system: AIX 5.3. compiler: xlC_r build system is: "Unix Makefiles" our application uses several static (.a) libs and several shared (.so) libs. the build process pass successfully (we do get some duplicate symbol warnings). but when we try to execute we are getting symbol missing errors. Note:...

How to store Euro Symbol in mysql database ?

How to store symbol for Euro currency in MySQL Database ? ...

Shark was unable to find symbol information for this address range - iPhone

I'm trying to use Shark to determine which method(s) are taking the most time in my iPhone app. After sampling, I get this: Clicking the "!" button yields: Shark was unable to find symbol information for this address range. Typically this happens because the application was compiled without symbols or they have been subsequ...

AS3 - getting symbols from an assets library WITHOUT Flex

Been searching around for a long time, and the only examples I can find for doing this are something like this: [Embed(source="Assets.swf", symbol="dog")] private static var _Dog:Class; public static function get Dog():MovieClip { return new _Dog(); } But this seems to be flex-only (I get the error "unable to resolve 'Assets.sw...

Loading .swc assets into array, in pure Actionscript 3 project

Hello, I know how to get Flash CS4 symbols into Flash Builder via .swc. The class names become available in the main class, but I can only instantiate those one by one, writing each name into the code. How can I loop through the .swc and load its assets in an array without mentioning their name, then obtain and use these names for inst...

Preventing symbol loading in Visual Studio

Many questions have been asked about this, and many answers have been proposed, but nothing's worked for me. At one point, I turned on .NET symbol loading for WPF projects, using these instructions: http://blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx Worked great, all cool a...

Restricting symbols to local scope for linux executable

Hi All, Can anyone please suggest some way we can restrict exporting of our symbols to global symbol table? Thanks in advance Hi, Thanks for replying... Actually I have an executable which is statically linked to a third party library say "ver1.a" and also uses a third party ".so" file which is again linked with same library bu...

Unfamiliar symbol in algorithm - What does ∀ mean?

I'm reading about an algorithm (it's a path-finding algorithm based on A*), and it contains a mathematical symbol I'm unfamiliar with: ∀ Here is the context: v(s) >= g(s) = min[s'∈pred(s)](v(s') + c(s', s)) ∀s != s[start] Note: items in [brackets] are supposed to be subscript Can someone explain the meaning of ∀? ...

Is there any way to have eclipse recognise virtual defines per build configuration?

I am working on an inherited Borland C/C++ project and a lot of the project's functionality is hidden away behind #ifdefs which rely on defines passed to the compiler. I have been trying to get eclipse to activate these sections by using per-configuration symbols however when i view the source files, large sections are still greyed out. ...

What is the meaning of ∃?

Reading a book on algorithms. Can someone explain the meaning of the mathematical symbol ∃? ...

In Visual Studio, can I put breakpoints in code for which I only have debugging symbols?

Since I do not have access to the complete source code of a library I'm using, but I do have the pdb files, is it possible to set a breakpoint in the "debugging source code"? If so, how would I do that? ...

WinDbg, display Symbol Server paths of loaded modules (even if the symbols did not load)?

Is there a way from WinDbg, without using the DbgEng API, to display the symbol server paths (i.e. PdbSig70 and PdbAge) for all loaded modules? I know that lml does this for the modules whose symbols have loaded. I would like to know these paths for the symbols that did not load so as to diagnose the problem. Anyone know if this is...

iPhone unit testing: Symbols not found when calling custom code

I'm trying to set up unit testing for my iPhone application. I followed the Apple Unit Testing documentation through and that woked fine, but as soon as I added another class in to that test, I get the following error: "_OBJC_CLASS_$_RootViewController", referenced from: __objc_classrefs__DATA@0 in AppDelegateTests.o ld: symbol(...

Why do applications compiled by GCC always contain the _mcount symbol?

Libraries don't always contain the _mcount symbol, but applications do (you can verify this with gobjdump or the nm utility). I've read that _mcount is used to implement profiling, but the symbol is present even when profiling is disabled and optimization is enabled (-O2). Does it serve some other additional purpose? Update: I am on Sol...

shark does not show source code

We are trying to run shark on our iphone application. However, in the analyzed samples it does not list any of our application function. All that is listed are the libraries and when we click on any of those, the assembly code is visible. Most of the sites mention about 'Generate Debug Symbols' option when building the app; I am not able...

Possible to link to non-external symbols?

Is it possible to link to non-external symbols, or convert them to external symbols? I only ask because a (big) library I want to use has a nightly build, but with stripped symbols. I'd prefer to use the nightly, rather than spend half a day compiling it. ...

How to get an outline view in sublime texteditor?

How do I get an outline view in sublime code editor for Windos? http://www.sublimetext.com/ The minimap is helpful but I miss a traditional outline (a klickable list of all the functions in my code in the order they appear for quick navigation and orientation) Maybe there is a plugin, addon or similar? It would also be nice if you can ...