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

12 3 4 5 6 7 8 91011>>

  /external/selinux/libselinux/src/
context.c 14 char *(component[4]); member in struct:__anon29240
19 * 4 colon-separated components and no whitespace in any component other
20 * than the MLS component.
38 n->current_str = n->component[0] = n->component[1] = n->component[2] =
39 n->component[3] = 0;
62 n->component[3] = 0;
67 /* MLS range is one component */
71 n->component[i] = (char *)malloc(p - tok + 1)
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
ICalendarTest.java 39 ICalendar.Component component = new ICalendar.Component("DUMMY", null); local
41 component.addProperty(new ICalendar.Property("prop2", "value3"));
42 component.addProperty(new ICalendar.Property("prop1", "value1"));
43 component.addProperty(new ICalendar.Property("prop1", "value2"));
44 assertEquals(text, component.toString());
57 ICalendar.Component parent = new ICalendar.Component("DUMMY", null);
59 ICalendar.Component child = new ICalendar.Component("DUMMY2", parent)
75 ICalendar.Component component = ICalendar.parseComponent(text); local
93 ICalendar.Component component local
110 ICalendar.Component component local
146 ICalendar.Component component = new ICalendar.Component("DUMMY", null); local
250 ICalendar.Component component = ICalendar.parseComponent(text); local
259 ICalendar.Component component = ICalendar.parseComponent(text); local
268 ICalendar.Component component = ICalendar.parseComponent(text); local
    [all...]
RecurrenceSetTest.java 105 ICalendar.Component component = new ICalendar.Component(MOCK_COMPONENT_NAME, null); local
112 assertTrue(RecurrenceSet.populateComponent(values, component));
113 List<ICalendar.Property> list = component.getProperties("DTSTART");
117 list = component.getProperties("RRULE");
121 component = new ICalendar.Component(MOCK_COMPONENT_NAME, null);
128 assertTrue(RecurrenceSet.populateComponent(values, component));
130 list = component.getProperties("RRULE")
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/
SetDevicePolicyTask.java 33 * This tasks sets a given component as the device or profile owner. It also enables the management
34 * app if it's not currently enabled and sets the component as active admin.
110 private void setActiveAdmin(ComponentName component, int userId) {
111 ProvisionLogger.logd("Setting " + component + " as active admin.");
112 mDevicePolicyManager.setActiveAdmin(component, true, userId);
115 private boolean setDeviceOwner(ComponentName component, String owner, int userId) {
116 ProvisionLogger.logd("Setting " + component + " as device owner of user " + userId);
117 if (!component.equals(mDevicePolicyManager.getDeviceOwnerComponentOnCallingUser())) {
118 return mDevicePolicyManager.setDeviceOwner(component, owner, userId);
123 private boolean setProfileOwner(ComponentName component, int userId)
    [all...]
  /frameworks/av/media/libstagefright/omx/
SoftOMXComponent.cpp 31 OMX_COMPONENTTYPE **component)
63 *component = mComponent;
112 OMX_HANDLETYPE component,
118 ((OMX_COMPONENTTYPE *)component)->pComponentPrivate;
125 OMX_HANDLETYPE component,
130 ((OMX_COMPONENTTYPE *)component)->pComponentPrivate;
137 OMX_HANDLETYPE component,
142 ((OMX_COMPONENTTYPE *)component)->pComponentPrivate;
149 OMX_HANDLETYPE component,
154 ((OMX_COMPONENTTYPE *)component)->pComponentPrivate
    [all...]
  /cts/tests/tests/calendarcommon/src/android/calendarcommon2/cts/
Calendarcommon2Test.java 37 ICalendar.Component component = new ICalendar.Component("CTS", null); local
39 component.getProperties(RecurrenceSet.CTS_PROPERTY_NAME);
42 recurSet.addPropertiesForRuleStr(component, null, null);
47 properties = component.getProperties(RecurrenceSet.CTS_PROPERTY_NAME);
  /external/dagger2/producers/src/main/java/dagger/producers/monitoring/
ProductionComponentMonitor.java 25 * the component, and the resulting single instance will be used to create individual monitors for
53 /** Creates a component-specific monitor when the component is created. */
54 ProductionComponentMonitor create(Object component);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/component/
ActivityPinnedEvent.java 17 package com.android.systemui.recents.events.component;
ActivityUnpinnedEvent.java 17 package com.android.systemui.recents.events.component;
ExpandPipEvent.java 17 package com.android.systemui.recents.events.component;
HidePipMenuEvent.java 17 package com.android.systemui.recents.events.component;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cppdefault.h 37 const char *const component; /* The component containing the directory member in struct:default_include
  /cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
DeviceAdminServiceProfileOwnerTest.java 46 protected void setAsOwnerOrFail(String component) throws Exception {
47 setProfileOwnerOrFail(component, getUserId());
  /external/dagger2/compiler/src/it/functional-tests/src/test/java/test/nullables/
NullabilityTest.java 29 NullComponent component = DaggerNullComponent.builder().nullModule(module).build(); local
33 component.nullFoo();
41 NullFoo nullFoo = component.nullFoo();
82 NullComponentWithDependency component = local
84 validate(false, component.string(), component.stringProvider(), component.numberProvider());
86 // Also validate that the component's number() method fails
88 component.number();
91 assertThat(npe).hasMessage("Cannot return null from a non-@Nullable component method")
    [all...]
  /frameworks/base/core/java/com/android/internal/notification/
NotificationAccessConfirmationActivityContract.java 30 public static Intent launcherIntent(int userId, ComponentName component, String packageTitle) {
34 .putExtra(EXTRA_COMPONENT_NAME, component)
  /external/dagger2/compiler/src/it/producers-functional-tests/src/test/java/producerstest/builder/
ProductionComponentBuilderTest.java 33 TestComponentWithBuilder component = local
39 assertThat(component.s().get()).isEqualTo("arg: 42");
40 assertThat(component.d().get()).isEqualTo(15.3);
45 TestComponentWithBuilder component = local
50 assertThat(component.s().get()).isEqualTo("arg: 42");
51 assertThat(component.d().get()).isEqualTo(15.3);
  /external/deqp/framework/randomshaders/
rsgVariableValue.cpp 63 float aMin = a.component(ndx).getMin().asFloat();
64 float aMax = a.component(ndx).getMax().asFloat();
65 float bMin = b.component(ndx).getMin().asFloat();
66 float bMax = b.component(ndx).getMax().asFloat();
78 int aMin = a.component(ndx).getMin().asInt();
79 int aMax = a.component(ndx).getMax().asInt();
80 int bMin = b.component(ndx).getMin().asInt();
81 int bMax = b.component(ndx).getMax().asInt();
91 bool aMin = a.component(ndx).getMin().asBool();
92 bool aMax = a.component(ndx).getMax().asBool()
    [all...]
  /prebuilts/misc/common/robolectric/lib/
plexus-container-default-1.0-alpha-9-stable-1.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/
plexus-container-default-1.0-alpha-9-stable-1.jar 
  /external/dagger2/compiler/src/it/functional-tests/src/test/java/test/membersinject/
MembersInjectTest.java 34 MembersInjectComponent component = DaggerMembersInjectComponent.builder().build(); local
37 component.inject(childOfStringArray);
41 MembersInjectComponent component = DaggerMembersInjectComponent.builder().build(); local
45 component.inject(childOfArrayOfParentOfStringArray);
49 MembersInjectComponent component = DaggerMembersInjectComponent.builder().build(); local
52 component.inject(childOfPrimitiveIntArray);
57 MembersInjectionVisibilityComponent component = local
60 component.inject(aParent);
65 component.inject(aChild);
72 component.inject(aGrandchild)
    [all...]
  /external/autotest/client/cros/cellular/wardmodem/
global_state.py 18 To declare a new state component called dummy_var, with allowed values
25 use the state component, viz,
35 # A map to record the allowed values for each state component.
40 # This value can be assigned to any state component to indicate invalid
42 # This is also the default value assigned when the state component is
47 def __getitem__(self, component):
49 Read current value of a state component.
51 @param component: The component of interest.
53 @return: String value of the state component
    [all...]
  /frameworks/av/media/libstagefright/include/
SoftOMXComponent.h 34 OMX_COMPONENTTYPE **component);
106 OMX_HANDLETYPE component,
112 OMX_HANDLETYPE component,
117 OMX_HANDLETYPE component,
122 OMX_HANDLETYPE component,
127 OMX_HANDLETYPE component,
132 OMX_HANDLETYPE component,
137 OMX_HANDLETYPE component,
145 OMX_HANDLETYPE component,
152 OMX_HANDLETYPE component,
    [all...]
  /external/deqp/android/package/src/com/drawelements/deqp/testercore/
RemoteAPI.java 56 ComponentName component = ComponentName.unflattenFromString(testerName); local
57 if (component == null) {
58 Log.e(LOG_TAG, "Invalid component name supplied (" + testerName + "), using default");
59 component = getDefaultTesterComponent();
61 return component;
69 // Choose component
70 ComponentName component = getTesterComponent(testerName); local
73 testIntent.setComponent(component);
90 Log.e(LOG_TAG, "Can't resolve component as activity or service (" + component.flattenToString() + "), using default")
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ksdebug.h 103 # define _DbgPrintFEx(component, lvl, strings) { \
105 DbgPrintEx(component, lvl, STR_MODULENAME); \
106 DbgPrintEx(component, lvl, strings); \
107 DbgPrintEx(component, lvl, "\n"); \
131 #define _DbgPrintFEx(component, lvl, strings)
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
org.eclipse.sisu.plexus-0.0.0.M5.jar 

Completed in 1124 milliseconds

12 3 4 5 6 7 8 91011>>