HomeSort by relevance Sort by last modified time
    Searched full:finder (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/opencv/cvaux/src/
cvclique.cpp 129 void cvStartFindCliques( CvGraph* graph, CvCliqueFinder* finder, int reverse, int weighted, int weighted_edges )
135 finder->weighted = 1;
136 finder->best_weight = 0;
137 finder->vertex_weights = (float*)malloc( sizeof(float)*(graph->total+1));
138 finder->cur_weight = (float*)malloc( sizeof(float)*(graph->total+1));
139 finder->cand_weight = (float*)malloc( sizeof(float)*(graph->total+1));
141 finder->cur_weight[0] = 0;
142 finder->cand_weight[0] = 0;
148 finder->vertex_weights[i] = ver->weight;
149 finder->cand_weight[0] += ver->weight;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeFinderTest.java 58 IncludeFinder finder = IncludeFinder.create(); local
59 assertEquals(null, finder.getIncludedBy("foo"));
61 finder.setIncluded("bar", Arrays.<String>asList("foo", "baz"), false);
62 finder.setIncluded("baz", Arrays.<String>asList("foo"), false);
63 assertEquals(Arrays.asList("bar", "baz"), finder.getIncludedBy("foo"));
64 finder.setIncluded("bar", Collections.<String>emptyList(), false);
65 assertEquals(Arrays.asList("baz"), finder.getIncludedBy("foo"));
66 finder.setIncluded("baz", Collections.<String>emptyList(), false);
67 assertEquals(Collections.emptyList(), finder.getIncludedBy("foo"));
  /external/llvm/lib/Analysis/
ModuleDebugInfoPrinter.cpp 30 DebugInfoFinder Finder;
55 Finder.processModule(M);
60 for (DebugInfoFinder::iterator I = Finder.compile_unit_begin(),
61 E = Finder.compile_unit_end(); I != E; ++I) {
67 for (DebugInfoFinder::iterator I = Finder.subprogram_begin(),
68 E = Finder.subprogram_end(); I != E; ++I) {
74 for (DebugInfoFinder::iterator I = Finder.global_variable_begin(),
75 E = Finder.global_variable_end(); I != E; ++I) {
81 for (DebugInfoFinder::iterator I = Finder.type_begin(),
82 E = Finder.type_end(); I != E; ++I)
    [all...]
  /external/webkit/Source/WebCore/manual-tests/
plain-text-paste.html 7 <p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=8276">Bugzilla bug 8276</a> REGRESSION (NativeTextField): Pasting a Finder item into a text field results in a file: URL being pasted instead of just the file name
11 1. Double-click <a href="resources/plain-text-paste.dmg">this disk image</a> in the Finder.<br>
12 2. Drag each item from the Finder window into the corresponding field below.<br>
13 3. Select item 5 in the Finder window and choose Copy &ldquo;5&rdquo; from the Finder&rsquo;s Edit menu.<br>
directory-drop-on-view.html 12 WebKit should cause a Finder window to open, with the dropped file selected.
mail-attachments.html 14 <p>Verify that the icon is what you see in Finder and has the file name and size beneath it</p>
  /external/neven/FaceRecEm/common/src/b_FDSDK/
FaceFinder.h 25 * Face Finder object
34 /** face finder object */
39 /** handle for face finder object */
67 /** creates a face finder object */
73 /** closes a face finder object */
88 /** returns number of faces that can be retrieved from face finder with function btk_FaceFinder_getDCR */
  /external/chromium/chrome/browser/
idle_linux.cc 59 ScreensaverWindowFinder finder; local
60 gtk_util::EnumerateTopLevelWindows(&finder);
61 return finder.exists();
fullscreen_linux.cc 110 TopMostWindowFinder finder; local
111 EnumerateAllChildWindows(&finder, ui::GetX11RootWindow());
112 XID window = finder.top_most_window();
platform_util_mac.mm 35 // Instead, an AppleEvent is constructed to tell the Finder to open the
45 // Create the target of this AppleEvent, the Finder.
57 // Build the AppleEvent data structure that instructs Finder to open files.
119 LOG(WARNING) << "Could not send AE to Finder in OpenItem()";
  /external/chromium/chrome/browser/ui/tabs/
dock_info_win.cc 34 BaseWindowFinder* finder = reinterpret_cast<BaseWindowFinder*>(lParam); local
35 if (finder->ignore_.find(hwnd) != finder->ignore_.end())
38 return finder->ShouldStopIterating(hwnd) ? FALSE : TRUE;
58 TopMostFinder finder(window, screen_loc, ignore);
59 return finder.is_top_most_;
148 LocalProcessWindowFinder finder(screen_loc, ignore);
149 if (finder.result_ &&
150 TopMostFinder::IsTopMostWindowAtPoint(finder.result_, screen_loc,
152 return finder.result_
    [all...]
dock_info_gtk.cc 64 TopMostFinder finder(window, screen_loc, ignore);
65 return finder.is_top_most_;
131 LocalProcessWindowFinder finder(screen_loc, ignore);
132 if (finder.result_ &&
133 TopMostFinder::IsTopMostWindowAtPoint(finder.result_, screen_loc,
135 return finder.result_;
  /external/proguard/src/proguard/optimize/peephole/
PeepholeOptimizer.java 33 * (optional) branch target finder and code attribute editor.
63 * @param branchTargetFinder branch target finder that will be initialized
90 // Set up the branch target finder.
InstructionSequencesReplacer.java 50 * @param branchTargetFinder a branch target finder that has been
77 * @param branchTargetFinder a branch target finder that has been
107 * @param branchTargetFinder a branch target finder that has been
  /external/pcre/cmake/
FindReadline.cmake 5 # GNU Readline library finder
  /external/webkit/Source/WebKit/win/WebKit.vcproj/
FixMIDLHeaders.pl 42 find(\&finder, $dir);
44 sub finder subroutine
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ShowWithinMenu.java 35 IncludeFinder finder = IncludeFinder.get(project); local
36 final List<Reference> includedBy = finder.getIncludedBy(file);
CustomViewFinder.java 72 /** Project that this view finder locates views for */
94 * @param project the project the finder is associated with
98 CustomViewFinder finder = null; local
100 finder = (CustomViewFinder) project.getSessionProperty(CUSTOM_VIEW_FINDER);
105 if (finder == null) {
106 finder = new CustomViewFinder(project);
108 project.setSessionProperty(CUSTOM_VIEW_FINDER, finder);
114 return finder;
177 * This method performs no caching; it is the same as asking the custom view finder
187 CustomViewFinder finder = get(project) local
    [all...]
IncludeFinder.java 71 * The include finder finds other XML files that are including a given XML file, and does
87 /** Project that the include finder locates includes for */
118 * @param project the project the finder is associated with
122 IncludeFinder finder = null; local
124 finder = (IncludeFinder) project.getSessionProperty(INCLUDE_FINDER);
129 if (finder == null) {
130 finder = new IncludeFinder(project);
132 project.setSessionProperty(INCLUDE_FINDER, finder);
138 return finder;
694 IncludeFinder finder = get(project) local
873 IncludeFinder finder = new IncludeFinder(null); local
    [all...]
  /external/protobuf/src/google/protobuf/
extension_set_heavy.cc 210 GeneratedExtensionFinder finder(containing_type);
211 return ParseField(tag, input, &finder, &skipper);
213 DescriptorPoolExtensionFinder finder(input->GetExtensionPool(),
216 return ParseField(tag, input, &finder, &skipper);
225 GeneratedExtensionFinder finder(containing_type);
226 return ParseMessageSet(input, &finder, &skipper);
228 DescriptorPoolExtensionFinder finder(input->GetExtensionPool(),
231 return ParseMessageSet(input, &finder, &skipper);
  /external/chromium/chrome/browser/tabs/
tab_finder.cc 25 TabContentsObserverImpl(TabContents* tab, TabFinder* finder);
44 TabFinder* finder)
46 finder_(finder) {
  /external/chromium/base/
file_version_info.h 20 // when you select a file in the Finder and do a Get Info.
  /frameworks/base/tools/aapt/
FileFinder.cpp 5 // File Finder implementation.
FileFinder.h 5 // File Finder.
  /frameworks/base/tools/aapt/tests/
CrunchCache_test.cpp 47 // Package up data and create mock file finder

Completed in 4019 milliseconds

1 2 3 4