HomeSort by relevance Sort by last modified time
    Searched full:combined (Results 351 - 375 of 2458) sorted by null

<<11121314151617181920>>

  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DndTile.java 87 public static void setCombinedIcon(Context context, boolean combined) {
88 Prefs.putBoolean(context, Prefs.Key.DND_TILE_COMBINED_ICON, combined);
  /frameworks/base/rs/java/android/renderscript/
ProgramFragmentFixedFunction.java 97 * EnvMode describes how textures are combined with the existing
242 * @param env specifies how the texture is combined with the
  /frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/
DividerItemDecoration.java 160 * Whether a divider is allowed above the view holder. The allowed values will be combined
174 * Whether a divider is allowed below the view holder. The allowed values will be combined
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
frames.py 108 # cannot return a combined dictionary as keys() may clash in
110 # filters to enable/disable them all, just return the combined
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/
frames.py 108 # cannot return a combined dictionary as keys() may clash in
110 # filters to enable/disable them all, just return the combined
  /external/autotest/client/site_tests/graphics_PiglitBVT/test_scripts/pinetrail/
graphics_PiglitBVT_5.sh 43 run_test "shaders/glsl-vs-vec4-indexing-temp-dst-in-nested-loop-combined" 0.0 "bin/shader_runner tests/shaders/glsl-vs-vec4-indexing-temp-dst-in-nested-loop-combined.shader_test -auto"
46 run_test "shaders/glsl-vs-vec4-indexing-temp-src-in-nested-loop-combined" 0.0 "bin/shader_runner tests/shaders/glsl-vs-vec4-indexing-temp-src-in-nested-loop-combined.shader_test -auto"
65 run_test "shaders/vp-combined-image-units" 0.0 "bin/vp-combined-image-units -fbo -auto"
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/
about.html 56 governed by the terms and conditions of the LGPL. Also note, the terms of the EPL permit you to modify the combined work and the source code of the combined
57 work is provided for debugging purposes so there is no need to reverse engineer the combined work.</p>
85 governed by the terms and conditions of the LGPL. Also note, the terms of the EPL permit you to modify the combined work and the source code of the combined
86 work is provided for debugging purposes so there is no need to reverse engineer the combined work.</p>
  /external/mesa3d/src/mesa/main/
matrix.c 594 * Calculate the combined modelview-projection matrix.
614 * Updates the combined modelview-projection matrix.
713 * Initializes each of the matrix stacks and the combined modelview-projection
733 /* Init combined Modelview*Projection matrix */
743 * Frees each of the matrix stacks and the combined modelview-projection
756 /* combined Modelview*Projection matrix */
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsCollection.java 63 * Collection of {@link NetworkStatsHistory}, stored based on combined key of
192 final NetworkStatsHistory combined = new NetworkStatsHistory( local
196 if (start == end) return combined;
203 combined.recordHistory(value, start, end);
206 return combined;
507 // only migrate combined TAG_NONE history
  /prebuilts/tools/linux-x86/swt/
about.html 56 governed by the terms and conditions of the LGPL. Also note, the terms of the EPL permit you to modify the combined work and the source code of the combined
57 work is provided for debugging purposes so there is no need to reverse engineer the combined work.</p>
85 governed by the terms and conditions of the LGPL. Also note, the terms of the EPL permit you to modify the combined work and the source code of the combined
86 work is provided for debugging purposes so there is no need to reverse engineer the combined work.</p>
  /prebuilts/tools/linux-x86_64/swt/
about.html 56 governed by the terms and conditions of the LGPL. Also note, the terms of the EPL permit you to modify the combined work and the source code of the combined
57 work is provided for debugging purposes so there is no need to reverse engineer the combined work.</p>
85 governed by the terms and conditions of the LGPL. Also note, the terms of the EPL permit you to modify the combined work and the source code of the combined
86 work is provided for debugging purposes so there is no need to reverse engineer the combined work.</p>
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Grammar.java 107 public static final int COMBINED = 4;
113 "combined"
121 "Parser" // if combined grammar, gen Parser and Lexer will be done later
134 map(LEXER, COMBINED);
137 map(PARSER, COMBINED);
141 // TODO: allow COMBINED
142 // map(COMBINED, COMBINED);
148 * lexer rules from combined grammars.
379 /** Was this created from a COMBINED grammar? *
    [all...]
  /external/chromium-trace/catapult/third_party/flot/
jquery.flot.pie.js 45 color: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#CCC'), if null, the plugin will automatically use the color of the first slice to be combined
46 label: any text value of what the combined slice should be labeled
166 combined = 0,
216 combined += value;
242 data: [[1, combined]],
245 angle: combined * Math.PI * 2 / total,
246 percent: combined / (total / 100)
jquery.flot.pie.min.js 7 (function($){var REDRAW_ATTEMPTS=10;var REDRAW_SHRINK=.95;function init(plot){var canvas=null,target=null,options=null,maxRadius=null,centerLeft=null,centerTop=null,processed=false,ctx=null;var highlights=[];plot.hooks.processOptions.push(function(plot,options){if(options.series.pie.show){options.grid.show=false;if(options.series.pie.label.show=="auto"){if(options.legend.show){options.series.pie.label.show=false}else{options.series.pie.label.show=true}}if(options.series.pie.radius=="auto"){if(options.series.pie.label.show){options.series.pie.radius=3/4}else{options.series.pie.radius=1}}if(options.series.pie.tilt>1){options.series.pie.tilt=1}else if(options.series.pie.tilt<0){options.series.pie.tilt=0}}});plot.hooks.bindEvents.push(function(plot,eventHolder){var options=plot.getOptions();if(options.series.pie.show){if(options.grid.hoverable){eventHolder.unbind("mousemove").mousemove(onMouseMove)}if(options.grid.clickable){eventHolder.unbind("click").click(onClick)}}});plot.hooks.processDatapoints.push(function(plot,series,data,datapoints){var options=plot.getOptions();if(options.series.pie.show){processDatapoints(plot,series,data,datapoints)}});plot.hooks.drawOverlay.push(function(plot,octx){var options=plot.getOptions();if(options.series.pie.show){drawOverlay(plot,octx)}});plot.hooks.draw.push(function(plot,newCtx){var options=plot.getOptions();if(options.series.pie.show){draw(plot,newCtx)}});function processDatapoints(plot,series,datapoints){if(!processed){processed=true;canvas=plot.getCanvas();target=$(canvas).parent();options=plot.getOptions();plot.setData(combine(plot.getData()))}}function combine(data){var total=0,combined=0,numCombined=0,color=options.series.pie.combine.color,newdata=[];for(var i=0;i<data.length;++i){var value=data[i].data;if($.isArray(value)&&value.length==1){value=value[0]}if($.isArray(value)){if(!isNaN(parseFloat(value[1]))&&isFinite(value[1])){value[1]=+value[1]}else{value[1]=0}}else if(!isNaN(parseFloat(value))&&isFinite(value)){value=[1,+value]}else{value=[1,0]}data[i].data=[value]}for(var i=0;i<data.length;++i){total+=data[i].data[0][1]}for(var i=0;i<data.length;++i){var value=data[i].data[0][1];if(value/total<=options.series.pie.combine.threshold){combined+=value;numCombined++;if(!color){color=data[i].color}}}for(var i=0;i<data.length;++i){var value=data[i].data[0][1];if(numCombined<2||value/total>options.series.pie.combine.threshold){newdata.push($.extend(data[i],{data:[[1,value]],color:data[i].color,label:data[i].label,angle:value*Math.PI*2/total,percent:value/(total/100)}))}}if(numCombined>1){newdata.push({data:[[1,combined]],color:color,label:options.series.pie.combine.label,angle:combined*Math.PI*2/total,percent:combined/(total/100)})}return newdata}function draw(plot,newCtx){if(!target){return}var canvasWidth=plot.ge (…)
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 157 HashTable Combined(NextPowerOf2(2 * Weights.size()));
159 combineWeight(Combined[W.TargetNode.Index], W);
162 if (Weights.size() == Combined.size())
167 Weights.reserve(Combined.size());
168 for (const auto &I : Combined)
196 // Early exit when combined into a single successor.
474 DEBUG(dbgs() << " => combined-scale = " << Loop.Scale << "\n");
  /external/owasp/sanitizer/distrib/javadoc/org/owasp/html/
HtmlPolicyBuilder.AttributeBuilder.html 221 Multiple calls to <code>matching</code> are combined so that the policies
238 Multiple calls to <code>matching</code> are combined to restrict to the
254 Multiple calls to <code>matching</code> are combined to restrict to the
271 Multiple calls to <code>matching</code> are combined to restrict to the
288 Multiple calls to <code>matching</code> are combined to restrict to the
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlPolicyBuilder.java 645 * Multiple calls to {@code matching} are combined so that the policies
657 * Multiple calls to {@code matching} are combined to restrict to the
672 * Multiple calls to {@code matching} are combined to restrict to the
688 * Multiple calls to {@code matching} are combined to restrict to the
699 * Multiple calls to {@code matching} are combined to restrict to the
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
combined_encode.cpp 31 /* Purpose : Encode a frame of MPEG4 bitstream in Combined mode. */
225 else /* Combined Mode*/
255 /* Purpose : Encode a slice of MPEG4 bitstream in Combined mode and save */
607 if (!currVol->shortVideoHeader) /* Combined Mode*/
674 /* Purpose : Encode a frame of MPEG4 bitstream in Combined mode. */
vop.cpp 163 status = EncodeFrameCombinedMode(video); /* Encode Combined Mode VOP */
167 status = EncodeFrameCombinedMode(video); /* Encode Combined Mode VOP */
239 status = EncodeSliceCombinedMode(video); /* Encode Combined Mode VOP */
243 status = EncodeSliceCombinedMode(video); /* Encode Combined Mode VOP */
497 /* Purpose : Encode a frame of MPEG4 bitstream in Combined mode. */
  /frameworks/base/core/java/android/os/
Environment.java 460 * This may be combined with
472 * This may be combined with {@link #DIRECTORY_MUSIC},
484 * This may be combined with {@link #DIRECTORY_MUSIC},
496 * This may be combined with {@link #DIRECTORY_MUSIC},
508 * This may be combined with {@link #DIRECTORY_MUSIC},
    [all...]
  /frameworks/rs/api/
rs_matrix.spec 34 transformation s1 followed by s2, call <code>rsMatrixLoadMultiply(&amp;combined, &amp;s2, &amp;s1)</code>.
294 the transformation s1 followed by s2, call <code>rsMatrixLoadMultiply(&amp;combined, &amp;s2, &amp;s1)</code>.
525 To apply this combined transformation to a vector, multiply the vector by the created
543 To apply this combined transformation to a vector, multiply the vector by the created
576 To apply this combined transformation to a vector, multiply the vector by the
  /frameworks/rs/scriptc/
rs_matrix.rsh 36 * transformation s1 followed by s2, call rsMatrixLoadMultiply(&combined, &s2, &s1).
307 * the transformation s1 followed by s2, call rsMatrixLoadMultiply(&combined, &s2, &s1).
520 * To apply this combined transformation to a vector, multiply the vector by the created
541 * To apply this combined transformation to a vector, multiply the vector by the created
583 * To apply this combined transformation to a vector, multiply the vector by the
  /prebuilts/sdk/renderscript/include/
rs_matrix.rsh 36 * transformation s1 followed by s2, call rsMatrixLoadMultiply(&combined, &s2, &s1).
307 * the transformation s1 followed by s2, call rsMatrixLoadMultiply(&combined, &s2, &s1).
520 * To apply this combined transformation to a vector, multiply the vector by the created
541 * To apply this combined transformation to a vector, multiply the vector by the created
583 * To apply this combined transformation to a vector, multiply the vector by the
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiClassAttributeNode.java 725 List<String> combined = new ArrayList<String>(local.size() + library.size());
726 combined.addAll(local);
727 combined.addAll(library);
728 return combined.toArray(new String[combined.size()]);
  /system/keymaster/
authorization_set_test.cpp 412 AuthorizationSet combined; local
413 EXPECT_TRUE(combined.push_back(set1));
414 EXPECT_TRUE(combined.push_back(set2));
415 EXPECT_EQ(set1.size() + set2.size(), combined.size());
416 EXPECT_EQ(12U, combined.indirect_size());

Completed in 1218 milliseconds

<<11121314151617181920>>