Home
last modified time | relevance | path

Searched refs:selection (Results 1 – 25 of 392) sorted by relevance

12345678910>>...16

/external/chromium-trace/catapult/third_party/flot/
Djquery.flot.selection.js83 var selection = { variable
99 if (selection.active) {
123 setSelectionPos(selection.first, e);
125 selection.active = true;
144 selection.active = false;
162 if (!selection.show) return null;
164 var r = {}, c1 = selection.first, c2 = selection.second;
195 if (o.selection.mode == "y")
196 pos.x = pos == selection.first ? 0 : plot.width();
198 if (o.selection.mode == "x")
[all …]
Djquery.flot.selection.min.js7selection={first:{x:-1,y:-1},second:{x:-1,y:-1},show:false,active:false};var savedhandlers={};var … property
/external/opencv3/samples/cpp/
Dcamshiftdemo.cpp20 Rect selection; variable
27 selection.x = MIN(x, origin.x); in onMouse()
28 selection.y = MIN(y, origin.y); in onMouse()
29 selection.width = std::abs(x - origin.x); in onMouse()
30 selection.height = std::abs(y - origin.y); in onMouse()
32 selection &= Rect(0, 0, image.cols, image.rows); in onMouse()
39 selection = Rect(x,y,0,0); in onMouse()
44 if( selection.width > 0 && selection.height > 0 ) in onMouse()
132 Mat roi(hue, selection), maskroi(mask, selection); in main()
136 trackWindow = selection; in main()
[all …]
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DDumbTextComponent.java51 private Selection selection = new Selection(); field in DumbTextComponent
187 int start = selection.getStart(); in keyPressed()
188 int end = selection.getEnd(); in keyPressed()
226 tempSelection.set(selection); in keyPressed()
232 tempSelection.set(selection); in keyPressed()
238 tempSelection.set(selection); in keyPressed()
247 tempSelection.set(selection); in keyPressed()
258 start = selection.getStart(); in keyPressed()
259 end = selection.getEnd(); in keyPressed()
275 contents.substring(selection.getStart(), selection.getEnd())); in copy()
[all …]
/external/opencv3/samples/tapi/
Dcamshift.cpp16 static cv::Rect selection; variable
25 selection.x = std::min(x, origin.x); in onMouse()
26 selection.y = std::min(y, origin.y); in onMouse()
27 selection.width = std::abs(x - origin.x); in onMouse()
28 selection.height = std::abs(y - origin.y); in onMouse()
30 selection &= cv::Rect(0, 0, image.cols, image.rows); in onMouse()
37 selection = cv::Rect(x, y, 0, 0); in onMouse()
42 if (selection.width > 0 && selection.height > 0) in onMouse()
133 cv::UMat roi(hue, selection), maskroi(mask, selection); in main()
138 trackWindow = selection; in main()
[all …]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowCursorLoader.java15 private String selection; field in ShadowCursorLoader
23 …public void __constructor__(Context context, Uri uri, String[] projection, String selection, Strin… in __constructor__() argument
27 this.selection = selection; in __constructor__()
54 return selection; in getSelection()
58 public void setSelection(String selection) { in setSelection() argument
59 this.selection = selection; in setSelection()
DShadowSQLiteDatabase.java115 String selection, String[] selectionArgs, String groupBy, in query() argument
118 String where = selection; in query()
119 if (selection != null && selectionArgs != null) { in query()
120 where = buildWhereClause(selection, selectionArgs); in query()
140 public Cursor query(String table, String[] columns, String selection, in query() argument
143 … return query(false, table, columns, selection, selectionArgs, groupBy, having, orderBy, null); in query()
147 public Cursor query(String table, String[] columns, String selection, in query() argument
150 … return query(false, table, columns, selection, selectionArgs, groupBy, having, orderBy, limit); in query()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DCursorLoaderTest.java19 String selection = "_id = ?"; in testGetters() local
25 selection, in testGetters()
31 assertThat(cursorLoader.getSelection(), equalTo(selection)); in testGetters()
40 String selection = "_id = ?"; in testSetters() local
46 cursorLoader.setSelection(selection); in testSetters()
52 assertThat(cursorLoader.getSelection(), equalTo(selection)); in testSetters()
DContentResolverTest.java158 String selection = "select"; in query__shouldKnowWhatItsParamsWere() local
165 …Cursor cursor = shadowContentResolver.query(uri21, projection, selection, selectionArgs, sortOrder… in query__shouldKnowWhatItsParamsWere()
169 assertThat(testCursor.selection, equalTo(selection)); in query__shouldKnowWhatItsParamsWere()
325 …@Override public Cursor query(Uri uri, String[] projection, String selection, String[] selectionAr… in shouldDelegateCallsToRegisteredProvider()
331 @Override public int delete(Uri uri, String selection, String[] selectionArgs) { in shouldDelegateCallsToRegisteredProvider()
334 …@Override public int update(Uri uri, ContentValues values, String selection, String[] selectionArg… in shouldDelegateCallsToRegisteredProvider()
358 public String selection; field in ContentResolverTest.QueryParamTrackingTestCursor
363 …public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, Strin… in setQuery() argument
366 this.selection = selection; in setQuery()
/external/selinux/policycoreutils/gui/
DdomainsPage.py104 def itemSelected(self, selection): argument
105 store, iter = selection.get_selected()
117 selection = self.view.get_selection()
118 store, iter = selection.get_selected()
128 self.itemSelected(selection)
142 selection = self.view.get_selection()
143 store, iter = selection.get_selected()
153 self.itemSelected(selection)
/external/tpm2/
DPCR.c385 TPMS_PCR_SELECTION *selection // IN: The selection structure in IsPcrSelected() argument
390 && ((selection->pcrSelect[pcr/8]) & (1 << (pcr % 8))) != 0) in IsPcrSelected()
402 TPMS_PCR_SELECTION *selection // IN: input PCR selection in FilterPcr() argument
408 for(i = selection->sizeofSelect; i < PCR_SELECT_MAX; i++) in FilterPcr()
409 selection->pcrSelect[i] = 0; in FilterPcr()
413 if(gp.pcrAllocated.pcrSelections[i].hash == selection->hash) in FilterPcr()
419 for (i = 0; i < selection->sizeofSelect; i++) in FilterPcr()
424 selection->pcrSelect[i] = 0; in FilterPcr()
427 selection->pcrSelect[i] &= allocated->pcrSelect[i]; in FilterPcr()
729 TPML_PCR_SELECTION *selection, // IN/OUT: PCR selection (filtered on in PCRComputeCurrentDigest() argument
[all …]
/external/opencv3/samples/python2/
Dcamshift.py39 self.selection = None
55 self.selection = None
57 self.selection = (x0, y0, x1, y1)
60 if self.selection is not None:
80 if self.selection:
81 x0, y0, x1, y1 = self.selection
95 self.selection = None
/external/clang/test/CodeGenObjC/
Ddebuginfo-properties.m13 @property (nonatomic, retain) Selection* selection; property
14 // CHECK: !DISubprogram(name: "-[MyClass selection]"
20 // CHECK: !DISubprogram(name: "-[OtherClass selection]"
35 @synthesize selection = _selection;
43 @synthesize selection = _selection;
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
DBarPlotExampleActivity.java97 private Pair<Integer, XYSeries> selection; field in BarPlotExampleActivity
319 selection = null; in onPlotClicked()
333 if (selection == null) { in onPlotClicked()
334 selection = new Pair<Integer, XYSeries>(i, series); in onPlotClicked()
338 selection = new Pair<Integer, XYSeries>(i, series); in onPlotClicked()
344 selection = new Pair<Integer, XYSeries>(i, series); in onPlotClicked()
354 selection = null; in onPlotClicked()
357 if(selection == null) { in onPlotClicked()
360 selectionWidget.setText("Selected: " + selection.second.getTitle() + in onPlotClicked()
361 " Value: " + selection.second.getY(selection.first)); in onPlotClicked()
[all …]
/external/webrtc/webrtc/modules/audio_device/test/
Daudio_device_test_func.cc78 int selection(0); in func_test() local
85 selection = sel; in func_test()
89 if (scanf("%d", &selection) < 0) { in func_test()
94 switch (selection) in func_test()
/external/webrtc/webrtc/voice_engine/test/auto_test/
Dvoe_stress_test.cc98 int selection(-1); in MenuSelection() local
100 while ((selection < 0) || (selection > maxMenuSelection)) { in MenuSelection()
102 int retval = scanf("%d", &selection); in MenuSelection()
103 if ((retval != 1) || (selection < 0) || (selection > maxMenuSelection)) { in MenuSelection()
108 return selection; in MenuSelection()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/database/
DSimpleTestCursor.java11 public String selection; field in SimpleTestCursor
20 …public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, Strin… in setQuery() argument
23 this.selection = selection; in setQuery()
/external/clang/tools/clang-format/
Dclang-format-bbedit.applescript4 -- selection. Note that you can rename the menu item by renaming the script, and
12 set selectionOffset to characterOffset of selection
13 set selectionLength to length of selection
22 -- replacing a selection flashes a bit but doesn't affect the scroll position.
25 set text of selection to newContents
/external/autotest/client/site_tests/platform_CompressedSwapPerf/
Dplatform_CompressedSwapPerf.py128 def report_stat(self, units, swap_target, selection, metric, stat, value): argument
142 selection, metric, stat ]
149 def report_stats(self, units, swap_target, selection, metric, values): argument
169 self.report_stat(units, swap_target, selection, metric, 'mean', mean)
170 self.report_stat(units, swap_target, selection,
172 self.report_stat(units, swap_target, selection,
174 self.report_stat(units, swap_target, selection,
340 selection = f(i, len(hogs))
341 hog_sock = sockets[selection]
342 retcode = hogs[selection].poll()
/external/autotest/server/cros/ap_configurators/
DbelkinF5D8236_ap_configurator.py26 selection = 'WPA2-PSK'
28 selection = 'WPA-PSK'
29 self.select_item_from_popup_by_xpath(selection, psk,
/external/autotest/client/tests/kvm/steps/
DFedora-11-64.steps7 # First boot selection
29 # Keyboard selection
36 # Keyboard selection
51 # Hostname selection
58 # Timezone selection
65 # Password selection
78 # Password selection
122 # Package selection
/external/libvncserver/client_examples/
Dscrap.c347 Atom selection; in get_scrap() local
361 selection = XA_CUT_BUFFER0; in get_scrap()
370 selection = XInternAtom(SDL_Display, "SDL_SELECTION", in get_scrap()
373 selection, owner, CurrentTime); in get_scrap()
391 if (XGetWindowProperty(SDL_Display, owner, selection, in get_scrap()
517 response.xselection.selection=req->selection; in clipboard_filter()
527 sevent.xselection.selection = req->selection; in clipboard_filter()
/external/svox/pico/src/com/svox/pico/providers/
DSettingsProvider.java61 public int delete(Uri uri, String selection, String[] selectionArgs) { in delete() argument
81 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, in query() argument
90 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { in update() argument
/external/replicaisland/tools/
DExtractPoints.js233 newDoc.selection.select(lineArray);
234 newDoc.selection.stroke(black, 2);
260 newDoc.selection.select(tileCenterArray);
261 newDoc.selection.fill(redColor);
273 newDoc.selection.select(centerArray);
274 newDoc.selection.fill(greenColor);
/external/llvm/test/CodeGen/X86/
Ddag-optnone.ll4 ; If fast-isel bails out to normal selection, then the DAG combiner will run,
7 ; selection patterns that depend on the legalizations and transforms that the
12 ; re-enabled in r233153 because of problems with instruction selection patterns
16 ; If instruction selection eventually becomes smart enough to run without DAG
57 ; The test case @bar is derived from an instruction selection failure case

12345678910>>...16