Questions tagged [find-all-references]

30 questions
1
vote
1 answer

Is it possible to find every occurrence of a particular variable being assigned to?

I am aware using 'Find all references' I can find every 'mention' of a variable - but is it possible to refine this search by only showing code that assigns a value to the variable in question? For example: var test = 1; var test2 = test + 3; test =…
user1017882
0
votes
1 answer

'NoneType' object has no attribute 'find_all' with Beautifulsoup

I have tried this code I found, however it gives me the error message of AttributeError: 'NoneType' object has no attribute 'find_all' I am not familiar with Beautifulsoup and dont know how to fix this. tried to find a solution where I ignore the…
ABe
  • 15
  • 4
0
votes
1 answer

BeautilfulSoup find_all method returns the same elements

Hi here is my soup object:
Herren
Frauen
A-Jugend (U19)
0
votes
1 answer

How do I see the where class OBJECTS are declared and defined using solution explorer in Visual Studios 2015?

I'm using Visual Studios 2015. I'd like to see where a class object is declared and defined in my code. E.g. Where are statements like myClass object1;? Also, is there a way to use the find all references tool on a class method and not see other…
0
votes
2 answers

Copy & Export Data from 'Find and Replace' box or searchbox using vba in excel

Actually I dont have any spesific data to referred, only just wonder if it can be done to export the data to another workbook (whether open or closed) by click on selected row in searchbox from active workbook. Let's says, the data found in active…
eltigre
  • 11
  • 7
0
votes
0 answers

In Visual Studio 2017/2015 C++/CLI Find All References FAILS

I am having difficulty with Find All References feature in Visual Studio 2017 (and 2015 at least, may be older too). I have this defined in one project (C#): public static class AlgorithmNames { public static readonly string …
ILIA BROUDNO
  • 1,539
  • 17
  • 24
0
votes
3 answers

Visual Studio 2008 - "Find all references" only searches the containing file

I'm trying to fix a bug in a solution I have, but whenever I click "Find all references" for any variables or methods, it only finds references in the file that the variable I click is in. I'm fairly certain which variables/functions the bug is…
Michael
  • 53
  • 4
0
votes
1 answer

Finding location of all references across solution

I'm trying to find all references for all types across a solution using Roslyn API. Sure enough, I do get references to the types (using SymbolFinder.FindReferencesAsync), but when I check for their location (using…
0
votes
1 answer

In Visual Studio 2012 or any free tool how can I find all the methods in my solution that reference a particular assembly?

I'd like to find out all the places in my solution where we call various libraries for documentation. The way I'm currently doing this is by looking at the assembly in the object browser to find its namespaces, then searching the entire solution…
user420667
  • 6,552
  • 15
  • 51
  • 83
0
votes
1 answer

Show tweets from all the users that I've chosen to follow

Actually, I just want to create a profile page for a user(similar to what you have in actual Twitter), and I want this page to display the tweets from all the users I've chosen to follow. What I'm trying to do is: def profile if current_user …
bdj_
  • 43
  • 2
  • 7
0
votes
0 answers

VS 2010, Fortran, Find All References, Multi-Project Solution

I have a multi-project Fortran Solution in VS 2010, using the Visual Fortran Compiler XE 14.0. When I right-click a function and select "Find All References," only references within the given project appear. I have found similar posts here: Find…
0
votes
4 answers

Find all calls to all web reference methods in the solution (for one web reference)

In Visual Studio 2012, is there a fast way to find all specific lines in my entire solution where any call is being made to any method that exists within one specific web reference? I am not looking for just one specific method, my web reference…
Krondorian
  • 616
  • 1
  • 9
  • 21
0
votes
2 answers

parse a csv file into a text file

I am a second year EE student. I just started learning python for my project. I intend to parse a csv file with a format like 3520005,"Toronto (Ont.)",C ,F,2503281,2481494,F,F,0.9,1040597,979330,630.1763,3972.4,1 2466023,"Montréal (Que.)",V…
Kevin T
  • 43
  • 1
  • 5
0
votes
0 answers

Place breakpoints at all referenced locations in VS 2008

The "Find All References" option in the VS editor helps us in finding the locations where a specific object is used. But is there any way so that I can automatically place a break-point at all those locations? Placing break-points for an object…
Sandeep
  • 5,581
  • 10
  • 42
  • 62
1
2