HomeSort by relevance Sort by last modified time
    Searched refs:component (Results 251 - 275 of 1396) sorted by null

<<11121314151617181920>>

  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar 
  /frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
AssistManager.java 267 public void replaceDrawable(ImageView v, ComponentName component, String name,
269 if (component != null) {
275 component, PackageManager.GET_META_DATA).metaData
277 component, PackageManager.GET_META_DATA).metaData;
282 component.getPackageName());
288 Log.v(TAG, "Assistant component "
289 + component.flattenToShortString() + " not found");
292 + component.flattenToShortString(), nfe);
  /packages/apps/Settings/src/com/android/settings/dashboard/
SummaryLoader.java 114 final ComponentName component = mSummaryMap.get(provider); local
120 mDashboardFeatureProvider.getTilesForCategory(mCategoryKey), component);
124 Log.d(TAG, "Can't find tile for " + component);
247 private Tile getTileFromCategory(List<DashboardCategory> categories, ComponentName component) {
257 final Tile tile = getTileFromCategory(category, component);
265 private Tile getTileFromCategory(DashboardCategory category, ComponentName component) {
272 if (component.equals(tile.intent.getComponent())) {
  /external/swiftshader/src/Shader/
SamplerCore.cpp 164 for(int component = 0; component < textureComponentCount(); component++)
166 if(state.sRGB && isRGBComponent(component))
168 sRGBtoLinear16_8_12(c[component]); // FIXME: Perform linearization at surface level for read-only textures
172 if(hasUnsignedTextureComponent(component))
174 c[component] = As<UShort4>(c[component]) >> 4;
178 c[component] = c[component] >> 3
    [all...]
  /prebuilts/tools/common/bazel/formc-deps/
jgoodies-forms.jar 
  /external/webrtc/webrtc/p2p/base/
transportcontroller.cc 144 int component) {
147 auto it = FindChannel_w(transport_name, component);
156 TransportChannelImpl* channel = transport->CreateChannel(component);
177 int component) {
180 auto it = FindChannel_w(transport_name, component);
183 << " TransportChannel " << component local
195 transport->DestroyChannel(component);
265 int component) {
268 [transport_name, component](const RefCountedChannel& channel) {
270 channel->component() == component
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Type.java 220 * Returns the array component if this type is an array. If the type
223 * @return the array component if an array, otherwise null
229 CtClass component;
231 component = this.clazz.getComponentType();
236 Type type = (Type)prims.get(component);
237 return (type != null) ? type : new Type(component);
335 String arrayName(String component, int dims) {
338 int i = component.length();
341 component.getChars(0, i, string, 0);
346 component = new String(string)
    [all...]
  /system/core/libpixelflinger/codeflinger/
load_store.cpp 123 AND(AL, 0, d.reg, s, imm(mask)); // component = packed & mask;
125 BIC(AL, 0, d.reg, s, imm(~mask)); // component = packed & mask;
135 MOV(AL, 0, d.reg, reg_imm(s, LSR, l)); // component = packed >> l;
146 void GGLAssembler::extract(integer_t& d, const pixel_t& s, int component)
149 s.format.c[component].h,
150 s.format.c[component].l,
154 void GGLAssembler::extract(component_t& d, const pixel_t& s, int component)
158 s.format.c[component].h,
159 s.format.c[component].l,
233 pixel_t& d, int component, component_t s, const reg_t& dither
    [all...]
GGLAssembler.cpp 219 // (or no alpha component in the texture).
458 int component,
462 comment(comments[component]);
466 const int dst_component_size = pixel.component_size(component);
470 parts, component, scratches, regs);
472 if (mInfo[component].inDest) {
475 build_blending( temp, mDstPixel, component, scratches );
477 // downshift component and rebuild pixel...
478 downshift(pixel, component, temp, parts.dither);
486 int component,
    [all...]
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvInputManagerTest.java 168 ComponentName component = new ComponentName(getActivity(), StubTvInputService2.class); local
170 component));
171 pm.setComponentEnabledSetting(component, PackageManager.COMPONENT_ENABLED_STATE_DISABLED,
183 component));
184 pm.setComponentEnabledSetting(component, PackageManager.COMPONENT_ENABLED_STATE_ENABLED,
  /external/toolchain-utils/automation/clients/helper/
crosstool.py 36 def RunTests(self, checkout_dir, build_tree_dir, target, board, component):
37 command = self.commands.RunTests(target, board, component)
39 (target, component, board), command)
123 def RunTests(self, target, board, component='gcc'):
135 'build-%s' % component)
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/
RestrictedLockUtils.java 71 * @return EnforcedAdmin Object containing the enforced admin component and admin user details,
73 * and profile owner, then the admin component will be set to {@code null} and userId to
137 * @return EnforcedAdmin Object containing the enforced admin component and admin user details,
139 * multiple admins, then the admin component will be set to {@code null} and userId to
218 * @return EnforcedAdmin Object containing the enforced admin component and admin user details,
244 permitted = dpm.isInputMethodPermittedByAdmin(admin.component,
251 permittedByProfileAdmin = dpm.isInputMethodPermittedByAdmin(profileAdmin.component,
297 permitted = dpm.isAccessibilityServicePermittedByAdmin(admin.component,
305 profileAdmin.component, packageName, managedProfileId);
336 * @return EnforcedAdmin Object containing the enforced admin component and admin user details
725 public ComponentName component = null; field in class:RestrictedLockUtils.EnforcedAdmin
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
SettingsDrawerActivity.java 172 public void setTileEnabled(ComponentName component, boolean enabled) {
174 int state = pm.getComponentEnabledSetting(component);
178 sTileBlacklist.remove(component);
180 sTileBlacklist.add(component);
182 pm.setComponentEnabledSetting(component, enabled
  /frameworks/base/services/core/java/com/android/server/notification/
ZenLog.java 107 public static void traceExitCondition(Condition c, ComponentName component, String reason) {
108 append(TYPE_EXIT_CONDITION, c + "," + componentToString(component) + "," + reason);
194 private static String componentToString(ComponentName component) {
195 return component != null ? component.toShortString() : null;
  /frameworks/base/services/core/java/com/android/server/vr/
EnabledComponentsObserver.java 190 * Check whether a given component is present and enabled for the given user.
192 * @param component the component to check.
193 * @param userId the user ID for the component to check.
196 public int isValid(ComponentName component, int userId) {
199 if (installedComponents == null || !installedComponents.contains(component)) {
203 if (validComponents == null || !validComponents.contains(component)) {
267 ComponentName component = new ComponentName(info.packageName, info.name); local
274 installed.add(component);
  /prebuilts/tools/common/m2/repository/avalon-framework/avalon-framework/4.1.3/
avalon-framework-4.1.3.jar 
  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
BluetoothRestrictionTest.java 120 // component should be disabled.
124 /** Verifies that a given restriction disables the bluetooth sharing component. */
129 // The BluetoothOppLauncherActivity's component should be disabled.
136 // The BluetoothOppLauncherActivity's component should be in the default state.
183 private void assertComponentStateAfterTimeout(ComponentName component, int expectedState) {
187 state = mPackageManager.getComponentEnabledSetting(component);
194 fail("The state of " + component + " should have been " + expectedState + ", it but was "
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
RealVectorFormat.java 301 Number component = parseNumber(source, format, pos); local
302 if (component != null) {
303 components.add(component);
305 // invalid component
  /external/google-breakpad/src/tools/windows/dump_syms/
dump_syms_unittest.cc 66 std::wstring* component) {
71 if (component != NULL)
72 component->assign(path.c_str() + len, path.c_str() + path.size());
  /external/libchrome/base/files/
file_path.h 41 // final path component (BaseName), and appending a relative pathname string
170 // A special path component meaning "this directory."
173 // A special path component meaning "the parent directory."
204 // equivalent to calling DirName().value() on the path's root component,
205 // and BaseName().value() on each child component.
233 // named by this object, stripping away the file component. If this object
234 // only contains one component, returns a FilePath identifying
239 // Returns a FilePath corresponding to the last path component of this
250 // component, use FinalExtension().
302 // component to this object's path. Append takes care to avoid addin
    [all...]
  /external/proguard/src/proguard/gui/
ClassSpecificationsPanel.java 170 * given key, to the given component.
172 private static JComponent tip(JComponent component, String messageKey)
174 component.setToolTipText(msg(messageKey));
176 return component;
200 public Component getListCellRendererComponent(JList list,
MemberSpecificationsPanel.java 221 public Component getListCellRendererComponent(JList list,
268 * given key, to the given component.
270 private static JComponent tip(JComponent component, String messageKey)
272 component.setToolTipText(msg(messageKey));
274 return component;
  /external/replicaisland/src/com/replica/replicaisland/
LevelBuilder.java 190 GameComponent component = (GameComponent)backgroundObject.get(x); local
191 if (component instanceof RenderComponent) {
192 RenderComponent render = (RenderComponent)component;
  /frameworks/base/cmds/dpm/src/com/android/commands/dpm/
Dpm.java 58 "usage: dpm set-active-admin [ --user <USER_ID> | current ] <COMPONENT>\n" +
61 "[ --name <NAME> ] <COMPONENT>\n" +
63 "<COMPONENT>\n" +
65 "<COMPONENT>\n" +
67 "dpm set-active-admin: Sets the given component as active admin" +
70 "dpm set-device-owner: Sets the given component as active admin, and its" +
73 "dpm set-profile-owner: Sets the given component as active admin and profile" +
140 System.out.println("Success: Active admin set to component " + mComponent.toShortString());
162 System.out.println("Active admin set to component " + mComponent.toShortString());
177 throw new RuntimeException("Can't set component " + mComponent.toShortString()
    [all...]

Completed in 738 milliseconds

<<11121314151617181920>>