Home
last modified time | relevance | path

Searched refs:toggle (Results 1 – 25 of 117) sorted by relevance

12345

/external/curl/src/
Dtool_getparam.c398 bool toggle = TRUE; /* how to switch boolean options, on or off. Controlled in getparameter() local
412 toggle = FALSE; in getparameter()
513 config->disable_epsv = toggle; in getparameter()
516 config->disable_epsv = (!toggle)?TRUE:FALSE; in getparameter()
520 config->writeenv = toggle; in getparameter()
534 config->nonpn = (!toggle)?TRUE:FALSE; in getparameter()
544 config->noalpn = (!toggle)?TRUE:FALSE; in getparameter()
584 if(toggle && !(curlinfo->features & CURL_VERSION_LIBZ)) in getparameter()
586 config->encoding = toggle; in getparameter()
590 config->tr_encoding = toggle; in getparameter()
[all …]
/external/libopus/src/
Dopus_demo.c251 int toggle = 0; in main() local
660 len[toggle] = char_to_int(ch); in main()
661 if (len[toggle]>max_payload_bytes || len[toggle]<0) in main()
663 fprintf(stderr, "Invalid payload length: %d\n",len[toggle]); in main()
667 enc_final_range[toggle] = char_to_int(ch); in main()
668 err = fread(data[toggle], 1, len[toggle], fin); in main()
669 if (err<len[toggle]) in main()
673 len[toggle],err); in main()
702 len[toggle] = opus_encode(enc, in, frame_size, data[toggle], max_payload_bytes); in main()
703 …opus_packet_get_samples_per_frame(data[toggle], sampling_rate)*opus_packet_get_nb_frames(data[togg… in main()
[all …]
/external/skia/src/effects/gradients/
DSkRadialGradient.cpp93 int count, int toggle);
106 int count, int toggle) { in shadeSpan_radial_clamp2() argument
110 cache[toggle + fi], in shadeSpan_radial_clamp2()
111 cache[next_dither_toggle(toggle) + fi], in shadeSpan_radial_clamp2()
140 *dstC++ = cache[toggle + fi[i]]; in shadeSpan_radial_clamp2()
141 toggle = next_dither_toggle(toggle); in shadeSpan_radial_clamp2()
151 *dstC++ = cache[toggle + fi[i]]; in shadeSpan_radial_clamp2()
152 toggle = next_dither_toggle(toggle); in shadeSpan_radial_clamp2()
164 int count, int toggle) { in shadeSpan_radial() argument
169 *dstC++ = cache[toggle + (fi >> SkGradientShaderBase::kCache32Shift)]; in shadeSpan_radial()
[all …]
DSkTwoPointConicalGradient.cpp136 const SkPMColor* cache, int toggle, int count);
139 const SkPMColor* SK_RESTRICT cache, int toggle, in twopoint_clamp() argument
148 *dstC++ = cache[toggle + in twopoint_clamp()
151 toggle = next_dither_toggle(toggle); in twopoint_clamp()
156 const SkPMColor* SK_RESTRICT cache, int toggle, in twopoint_repeat() argument
165 *dstC++ = cache[toggle + in twopoint_repeat()
168 toggle = next_dither_toggle(toggle); in twopoint_repeat()
173 const SkPMColor* SK_RESTRICT cache, int toggle, in twopoint_mirror() argument
182 *dstC++ = cache[toggle + in twopoint_mirror()
185 toggle = next_dither_toggle(toggle); in twopoint_mirror()
[all …]
DSkLinearGradient.cpp184 *dstC++ = cache[toggle + fi]; \
185 toggle = next_dither_toggle(toggle); \
192 int toggle, int count);
200 int toggle, int count) { in shadeSpan_linear_vertical_lerp() argument
208 int index0 = fi + toggle; in shadeSpan_linear_vertical_lerp()
223 int toggle, int count) { in shadeSpan_linear_clamp() argument
230 cache[toggle + range.fV0], in shadeSpan_linear_clamp()
231 cache[next_dither_toggle(toggle) + range.fV0], in shadeSpan_linear_clamp()
252 cache[toggle + range.fV1], in shadeSpan_linear_clamp()
253 cache[next_dither_toggle(toggle) + range.fV1], in shadeSpan_linear_clamp()
[all …]
DSkSweepGradient.cpp85 int toggle = init_dither_toggle(x, y); in shadeSpan() local
105 *dstC++ = cache[toggle + SkATan2_255(fy, fx)]; in shadeSpan()
108 toggle = next_dither_toggle(toggle); in shadeSpan()
114 *dstC++ = cache[toggle + SkATan2_255(srcPt.fY, srcPt.fX)]; in shadeSpan()
115 toggle = next_dither_toggle(toggle); in shadeSpan()
DSkGradientShaderPriv.h288 static inline int next_dither_toggle(int toggle) { in next_dither_toggle() argument
289 return toggle ^ SkGradientShaderBase::kDitherStride32; in next_dither_toggle()
296 static inline int next_dither_toggle16(int toggle) { in next_dither_toggle16() argument
297 return toggle ^ SkGradientShaderBase::kDitherStride16; in next_dither_toggle16()
/external/doclava/res/assets/templates/assets/
Ddoclava-developer-docs.js215 toggle(link.parent().parent(), false); // open our own list
218 toggle(link.parent().parent().parent().parent(), false); // open the super parent list
223 toggle(link.parent().parent().parent(), false); // open the parent list
226toggle(link.parent().parent().parent().parent().parent(), false); // open the super parent list
362 function toggle(obj, slide) { function
401 $("#nav-panels").toggle();
402 $("#panel-link").toggle();
403 $("#nav-tree").toggle();
404 $("#tree-link").toggle();
419 $("#nav-panels").toggle();
[all …]
Ddoclava-developer-docs.css125 #side-nav .toggle-list .toggle-img {
135 /* second-level toggle */
136 #side-nav .toggle-list .toggle-list .toggle-img {
140 #side-nav .closed .toggle-img,
141 #side-nav .open .closed .toggle-img {
144 #side-nav .open .toggle-img {
148 #side-nav .toggle-list {
152 #side-nav .toggle-list ul {
157 #side-nav .toggle-list div {
302 .toggle-all {
[all …]
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
DSelection.java20 private boolean toggle; field in Selection
38 if ((toggle || (!required && selected.size == 1) || UIUtils.ctrl()) && selected.contains(item)) { in choose()
44 if (!multiple || (!toggle && !UIUtils.ctrl())) { in choose()
233 return toggle; in getToggle()
237 public void setToggle (boolean toggle) { in setToggle() argument
238 this.toggle = toggle; in setToggle()
/external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/
Djquery.treeview.min.js15toggle){var callback=settings.toggle;settings.toggle=function(){return callback.apply($(this).pare… function
/external/skia/tools/skiaserve/urlhandlers/
DCmdHandler.cpp52 int n, toggle; in handle() local
54 sscanf(commands[2].c_str(), "%d", &toggle); in handle()
55 request->fDebugCanvas->toggleCommand(n, toggle); in handle()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/windows/
Dftdebug.c180 const char* toggle = ft_trace_toggles[n]; in ft_debug_init() local
185 if ( toggle[i] != q[i] ) in ft_debug_init()
189 if ( i == len && toggle[i] == 0 ) in ft_debug_init()
/external/freetype/src/base/
Dftdebug.c195 const char* toggle = ft_trace_toggles[n]; in ft_debug_init() local
200 if ( toggle[i] != q[i] ) in ft_debug_init()
204 if ( i == len && toggle[i] == 0 ) in ft_debug_init()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/wince/
Dftdebug.c198 const char* toggle = ft_trace_toggles[n]; in ft_debug_init() local
203 if ( toggle[i] != q[i] ) in ft_debug_init()
207 if ( i == len && toggle[i] == 0 ) in ft_debug_init()
/external/pdfium/third_party/freetype/src/base/
Dftdebug.c195 const char* toggle = ft_trace_toggles[n]; in ft_debug_init() local
200 if ( toggle[i] != q[i] ) in ft_debug_init()
204 if ( i == len && toggle[i] == 0 ) in ft_debug_init()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
Dftdebug.c195 const char* toggle = ft_trace_toggles[n]; in ft_debug_init() local
200 if ( toggle[i] != q[i] ) in ft_debug_init()
204 if ( i == len && toggle[i] == 0 ) in ft_debug_init()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/amiga/src/base/
Dftdebug.c222 const char* toggle = ft_trace_toggles[n]; in ft_debug_init() local
227 if ( toggle[i] != q[i] ) in ft_debug_init()
231 if ( i == len && toggle[i] == 0 ) in ft_debug_init()
/external/v8/tools/profviz/
Dprofviz.js141 this.toggle("plot");
146 this.toggle = function(mode) { method in UIWrapper
203 ui.toggle("plot");
211 ui.toggle("prof");
/external/chromium-trace/catapult/netlog_viewer/netlog_viewer/
Dtimeline_view.js278 var toggle = $(TimelineView.SELECTION_TOGGLE_ID);
279 var shouldCollapse = toggle.className == 'timeline-view-rotateleft';
282 toggle.className = shouldCollapse ?
288 newWidth = toggle.offsetWidth;
/external/skia/samplecode/
DSamplePath.cpp270 void toggle(bool& value) { in toggle() function in ArcToView
285 case '1': this->toggle(fDoFrame); return true; in onQuery()
286 case '2': this->toggle(fDoArcTo); return true; in onQuery()
287 case '3': this->toggle(fDoCorner); return true; in onQuery()
288 case '4': this->toggle(fDoConic); return true; in onQuery()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowCompoundButton.java25 @Override public void toggle() { in toggle() method in ShadowCompoundButton
31 toggle(); in performClick()
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/
Dbootstrap.js206 Button.prototype.toggle = function () { method in Button
226 if (option == 'toggle') data.toggle()
453 this.options.toggle && this.toggle()
532 , toggle: function () {
553 toggle: true property
601 var toggle = '[data-toggle="dropdown"]'
603 var $el = $(element).on('click.dropdown.data-api', this.toggle)
613 , toggle: function (e) { method in Dropdown
643 $(toggle).parent().removeClass('open')
669 .on('click.dropdown.data-api', toggle, Dropdown.prototype.toggle)
[all …]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DRadioButtonTest.java33 radioButton.toggle(); in canBeToggledBetweenCheckedState()
36 radioButton.toggle(); in canBeToggledBetweenCheckedState()
/external/skia/tools/debugger/
DSkDebugCanvas.h29 void toggleFilter(bool toggle) { fFilter = toggle; } in toggleFilter() argument
141 void toggleCommand(int index, bool toggle);

12345