/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/ |
ParticleEffect.java | 87 /** Sets the given transform matrix on each controller.*/ 93 /** Applies the rotation to the current transformation matrix of each controller.*/ 99 /** Applies the rotation by the given angle around the given axis to the current transformation matrix of each controller. 107 /** Applies the translation to the current transformation matrix of each controller.*/ 113 /** Applies the scale to the current transformation matrix of each controller.*/ 119 /** Applies the scale to the current transformation matrix of each controller.*/ 130 /** Returns the controller with the specified name, or null. */ 156 /** Assign one batch, among those passed in, to each controller. 157 * The batch must be compatible with the controller to be assigned.*/ 159 for(ParticleController controller : controllers) [all...] |
/external/chromium-trace/catapult/systrace/systrace/ |
tracing_controller.py | 7 '''Tracing controller class. This class manages 27 """Record the clock sync marker for controller tracing agent. 29 Unlike with the other tracing agents, the tracing controller should not 43 """Start tracing for the controller tracing agent. 45 Start tracing for the controller tracing agent. Note that 46 the tracing controller records the "controller side" 62 """Stops tracing for the controller tracing agent. 72 """Gets the log output from the controller tracing agent. 74 This output only contains the "controller side" of the clock sync records [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/ |
ParametricEditor.java | 32 import com.android.gallery3d.filtershow.controller.ActionSlider; 33 import com.android.gallery3d.filtershow.controller.BasicSlider; 34 import com.android.gallery3d.filtershow.controller.ColorChooser; 35 import com.android.gallery3d.filtershow.controller.Control; 36 import com.android.gallery3d.filtershow.controller.Parameter; 37 import com.android.gallery3d.filtershow.controller.ParameterActionAndInt; 38 import com.android.gallery3d.filtershow.controller.ParameterBrightness; 39 import com.android.gallery3d.filtershow.controller.ParameterColor; 40 import com.android.gallery3d.filtershow.controller.ParameterHue; 41 import com.android.gallery3d.filtershow.controller.ParameterInteger [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
MediaSessions.java | 82 dump(++i, writer, r.controller); 113 r.controller.setVolumeTo(level, 0); 117 final MediaController controller = new MediaController(mContext, session); local 118 if (D.BUG) Log.d(TAG, "remoteVolumeChangedH " + controller.getPackageName() + " " 120 final Token token = controller.getSessionToken(); 125 final MediaController controller = session != null ? new MediaController(mContext, session) local 127 final String pkg = controller != null ? controller.getPackageName() : null; 136 for (MediaController controller : controllers) { 137 final Token token = controller.getSessionToken() 262 private final MediaController controller; field in class:MediaSessions.MediaControllerRecord [all...] |
/external/chromium-trace/catapult/systrace/profile_chrome/ |
profiler.py | 16 def _GetResults(trace_results, controller, output, compress, write_json, 23 for agent in controller.get_child_agents: 29 trace_results = [x for x in controller.all_results if not (x.source_name == 83 modules: The list of modules to initialize the tracing controller with. 99 controller = tracing_controller.TracingController(agents_with_config, 102 result = controller.StartTracing() 103 trace_type = controller.GetTraceType() 114 all_results = controller.StopTracing() 119 return _GetResults(all_results, controller, output, compress, write_json,
|
/packages/apps/DeskClock/src/com/android/deskclock/actionbarmenu/ |
ActionBarMenuManager.java | 47 for (MenuItemController controller : menuItemControllers) { 48 mControllers.put(controller.getId(), controller); local 67 final MenuItemController controller = mControllers.valueAt(i); local 68 if (controller.isEnabled()) { 69 controller.setInitialState(menu); 86 final MenuItemController controller = mControllers.valueAt(i); local 87 if (controller.isEnabled()) { 88 controller.showMenuItem(menu);
|
/external/autotest/client/common_lib/cros/bluetooth/ |
bluetooth_socket.py | 235 """Error raised when the Controller Error event is received.""" 268 @param index: Controller index, may be MGMT_INDEX_NONE. 320 @param cmd_index: Controller index, may be btsocket.HCI_DEV_NONE. 339 ('Response for wrong controller index received: ' + 368 ('Response for wrong controller index received: ' + 389 ('Incorrect controller error event data length: ' + 394 raise BluetoothControllerError('Controller error: %d' % 406 @param index: Controller index of event, may be btsocket.HCI_DEV_NONE. 448 ('Incorrect controller error event data length: ' + 452 logging.debug('[0x%04x] controller error: %d (Ignored)' [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/emitters/ |
RegularEmitter.java | 61 lifeChannel = controller.particles.addChannel(ParticleChannels.Life); 114 int deltaMillis = (int)(controller.deltaTime * 1000); 127 controller.start(); 140 emitCount = Math.min(emitCount, maxParticleCount - controller.particles.size); 146 if (controller.particles.size < minParticleCount) 147 addParticles(minParticleCount - controller.particles.size); 152 int activeParticles = controller.particles.size; 153 for (int i = 0, k=0; i < controller.particles.size; ) { 155 controller.particles.removeElement(i); 165 if(controller.particles.size < activeParticles) [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/ |
DynamicsInfluencer.java | 45 accellerationChannel = controller.particles.getChannel(ParticleChannels.Acceleration); 48 positionChannel = controller.particles.addChannel(ParticleChannels.Position); 49 previousPositionChannel = controller.particles.addChannel(ParticleChannels.PreviousPosition); 53 angularVelocityChannel = controller.particles.getChannel(ParticleChannels.AngularVelocity2D); 56 rotationChannel = controller.particles.addChannel(ParticleChannels.Rotation2D); 60 angularVelocityChannel = controller.particles.getChannel(ParticleChannels.AngularVelocity3D); 63 rotationChannel = controller.particles.addChannel(ParticleChannels.Rotation3D); 124 Arrays.fill(accellerationChannel.data, 0, controller.particles.size*accellerationChannel.strideSize, 0); 126 Arrays.fill(angularVelocityChannel.data, 0, controller.particles.size*angularVelocityChannel.strideSize, 0); 137 for(int i=0, offset = 0; i < controller.particles.size; ++i, offset +=positionChannel.strideSize) [all...] |
ScaleInfluencer.java | 20 float start = value.newLowValue()* controller.scale.x; 21 float diff = value.newHighValue()* controller.scale.x; 30 float start = value.newLowValue()* controller.scale.x; 31 float diff = value.newHighValue()* controller.scale.x - start;
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
AccountObserver.java | 52 * {@link #onChanged(Account)} when the controller changes the account. 54 * @param controller 56 public Account initialize(AccountController controller) { 57 if (controller == null) { 58 LogUtils.wtf(LOG_TAG, "AccountObserver initialized with null controller!"); 60 mController = controller;
|
FolderObserver.java | 52 * {@link #onChanged(Folder)} when the controller changes the Folder. 54 * @param controller 56 public Folder initialize(FolderController controller) { 57 if (controller == null) { 58 LogUtils.wtf(LOG_TAG, "FolderObserver initialized with null controller!"); 60 mController = controller;
|
RecentFolderObserver.java | 55 * {@link #onChanged()} when the controller changes the recent folder. 57 * @param controller 59 public RecentFolderList initialize(RecentFolderController controller) { 60 if (controller == null) { 61 LogUtils.wtf(LOG_TAG, "RecentFolderObserver initialized with null controller!"); 63 mController = controller;
|
/frameworks/base/docs/html/training/tv/games/ |
index.jd | 2 page.tags=tv, games, controller 4 page.image=images/games/game-controller-buttons_2x_crop.png 91 How you shape the player's interaction with the controller can be key to achieving a great user 97 <strong>Communicate Controller Requirements up Front</strong>. Use your Google Play description 100 an ill-suited controller for a game is likely to have a subpar experience and penalize your 108 "http://developer.android.com/training/game-controllers/controller-input.html">Handling 109 Controller Actions</a>. 112 <strong>Detect Controller Capabilities and Adjust Accordingly</strong>. Query the controller 113 about its capabilities in order to optimize the match between controller and game. For example [all...] |
/tools/test/connectivity/acts/framework/acts/ |
test_runner.py | 54 self.controller_registry: A dictionary that holds the controller 56 self.controller_destructors: A dictionary that holds the controller 138 """Import built-in controller modules. 140 Go through the testbed configs, find any built-in controller configs 141 and import the corresponding controller module from acts.controllers 145 controller dependency. 148 A list of controller modules. 165 module: An object that is a controller module. This is usually 170 controller interface, or one of the required members is null. 178 "controller module attribute %s.") % (module.__name__ [all...] |
/developers/build/prebuilts/androidtv/visual-game-controller/ |
README.md | 3 The Visual Game Controller app is designed to run on an Android TV device and displays visual feedback for the buttons of an attached game controller.
|
/external/autotest/client/tests/disktest/ |
control | 3 PURPOSE = 'Verify the integrity of the disk and disk controller.' 11 controller for corruption issues.
|
control.export | 6 disk and disk controller.
|
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/ |
TcpClientOutputTest.java | 43 private IAgentOutput controller; field in class:TcpClientOutputTest 59 controller = new TcpClientOutput(logger) { 67 controller.startup(new AgentOptions(), data); 73 controller.shutdown(); 81 controller.shutdown(); 90 controller.shutdown(); 99 controller.writeExecutionData(false); 115 controller.shutdown();
|
/external/v8/tools/gyp/test/ios/watch/WatchApp/ |
Interface.storyboard | 8 <!--Interface Controller--> 11 <controller id="AgC-eL-Hgc" customClass="InterfaceController" customModuleProvider=""/>
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/ |
SimpleMonthAdapter.java | 26 public SimpleMonthAdapter(Context context, DatePickerController controller) { 27 super(context, controller);
|
/external/autotest/client/tests/kvm/autotest_control/ |
disktest.control | 6 disk and disk controller.
|
/frameworks/base/core/java/com/android/internal/app/ |
MediaRouteControllerDialogFragment.java | 25 * Media route controller dialog fragment. 28 * this dialog fragment to customize the media route controller dialog. 35 * Creates a media route controller dialog fragment. 46 * Called when the controller dialog is being created.
|
/frameworks/support/v7/mediarouter/src/android/support/v7/app/ |
MediaRouteControllerDialogFragment.java | 26 * Media route controller dialog fragment. 29 * this dialog fragment to customize the media route controller dialog. 35 * Creates a media route controller dialog fragment. 45 * Called when the controller dialog is being created.
|
/sdk/apps/SdkController/res/values/ |
strings.xml | 23 <string name="app_name">SDK Controller</string> 24 <string name="service_description">Background service for SDK Controller</string> 27 <string name="service_notif_title">SDK Controller is running</string> 38 <string name="sensors_activity_title">SDK Controller > Sensors</string>
|