/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/ |
TransportService1.java | 6 static final ComponentName COMPONENT = 26 return COMPONENT;
|
TransportService2.java | 6 static final ComponentName COMPONENT = 26 return COMPONENT;
|
DualPaymentEmulatorActivity.java | 30 setupServices(this, PaymentService2.COMPONENT); 42 setupServices(this, PaymentService1.COMPONENT, PaymentService2.COMPONENT); 47 PaymentService2.COMPONENT, CardEmulation.CATEGORY_PAYMENT)) { 80 void onApduSequenceComplete(ComponentName component, long duration) { 81 if (component.equals(PaymentService2.COMPONENT)) {
|
ConflictingNonPaymentEmulatorActivity.java | 18 setupServices(this, TransportService1.COMPONENT, TransportService2.COMPONENT); 44 void onApduSequenceComplete(ComponentName component, long duration) { 45 if (component.equals(TransportService2.COMPONENT)) {
|
/external/chromium_org/chrome/browser/resources/local_ntp/ |
instant_iframe_validation.js | 30 * Validates a RGBA color component. It must be a number between 0 and 255. 31 * @param {number} component An RGBA component. 32 * @return {boolean} True if the component is valid. 34 function isValidRBGAComponent(component) { 35 return isFinite(component) && component >= 0 && component <= 255;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/ |
.api_description | 2 <component name="org.eclipse.pde.build_3.6.1.R36x_v20100823" version="1.2"> 8 </component>
|
/external/robolectric/.idea/ |
modules.xml | 3 <component name="ProjectModuleManager"> 8 </component>
|
/external/chromium/chrome/browser/net/ |
url_fixer_upper_unittest.cc | 26 std::ostream& operator<<(std::ostream& os, const Component& part) { 35 const url_parse::Component scheme; 36 const url_parse::Component username; 37 const url_parse::Component password; 38 const url_parse::Component host; 39 const url_parse::Component port; 40 const url_parse::Component path; 41 const url_parse::Component query; 42 const url_parse::Component ref; 47 url_parse::Component(0, 4), // schem [all...] |
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/core/ |
Exynos_OMX_Component_Register.c | 20 * @brief Exynos OpenMAX IL Component Register 99 Exynos_OSAL_Strcpy(componentList[totalCompNum].component.componentName, exynosComponentsTemp[i]->componentName); 101 Exynos_OSAL_Strcpy(componentList[totalCompNum].component.roles[j], exynosComponentsTemp[i]->roles[j]); 102 componentList[totalCompNum].component.totalRoleNum = exynosComponentsTemp[i]->totalRoleNum; 122 /* not a component name line. skip */ 150 OMX_ERRORTYPE Exynos_OMX_ComponentAPICheck(OMX_COMPONENTTYPE *component) 154 if ((NULL == component->GetComponentVersion) || 155 (NULL == component->SendCommand) || 156 (NULL == component->GetParameter) || 157 (NULL == component->SetParameter) | [all...] |
/external/chromium_org/url/third_party/mozilla/ |
url_parse.h | 20 // Component ------------------------------------------------------------------ 23 struct Component { 24 Component() : begin(0), len(-1) {} 27 Component(int b, int l) : begin(b), len(l) {} 33 // Returns true if this component is valid, meaning the length is given. Even 39 // Returns true if the given component is specified on false, the component 50 bool operator==(const Component& other) const { 54 int begin; // Byte offset in the string of this component. 55 int len; // Will be -1 if the component is unspecified [all...] |
/external/chromium/googleurl/src/ |
url_parse.h | 45 // Component ------------------------------------------------------------------ 48 struct Component { 49 Component() : begin(0), len(-1) {} 52 Component(int b, int l) : begin(b), len(l) {} 58 // Returns true if this component is valid, meaning the length is given. Even 64 // Returns true if the given component is specified on false, the component 75 bool operator==(const Component& other) const { 79 int begin; // Byte offset in the string of this component. 80 int len; // Will be -1 if the component is unspecified [all...] |
url_canon_ip.cc | 59 const url_parse::Component& host, 60 url_parse::Component components[4]) { 64 int cur_component = 0; // Index of the component we're working on. 65 int cur_component_begin = host.begin; // Start of the current component. 69 // Found the end of the current component. 72 url_parse::Component(cur_component_begin, component_len); 74 // The next component starts after the dot. 79 // allow an empty component at the end (this would indicate that the 80 // input ends in a dot). We also want to error if the component is 81 // empty and it's the only component (cur_component == 1) [all...] |
/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
ICalendar.java | 56 * A component within an iCalendar (VEVENT, VTODO, VJOURNAL, VFEEBUSY, 59 public static class Component { 74 private final Component mParent; // see if we can get rid of this 75 private LinkedList<Component> mChildren = null; 80 * Creates a new component with the provided name. 81 * @param name The name of the component. 83 public Component(String name, Component parent) { 89 * Returns the name of the component. 90 * @return The name of the component [all...] |
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
SubActivityTest.java | 26 mIntent.putExtra("component", new ComponentName(getContext(), SubActivityScreen.class)); 32 mIntent.putExtra("component", new ComponentName(getContext(), SubActivityScreen.class)); 38 mIntent.putExtra("component", new ComponentName(getContext(), SubActivityScreen.class)); 44 mIntent.putExtra("component", 51 mIntent.putExtra("component", 58 mIntent.putExtra("component", 65 mIntent.putExtra("component", new ComponentName(getContext(), SubActivityScreen.class)); 71 mIntent.putExtra("component", 79 mIntent.putExtra("component", 87 mIntent.putExtra("component", new ComponentName(getContext(), SubActivityScreen.class)) [all...] |
/external/libselinux/src/ |
context.c | 14 char *(component[4]); member in struct:__anon22861 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...] |
/external/proguard/src/proguard/gui/ |
TabbedPane.java | 66 * Adds a component with a given title to the tabbed pane. 69 * @param component the component that will be added as a tab. 71 public Component add(final String title, Component component) 137 cardPanel.add(title, component); 139 return component; 148 * @return the component containing the image. 150 public Component addImage(final Image image 158 JButton component = new JButton(new ImageIcon(image)); local [all...] |
/device/asus/flo/camera/mm-image-codec/qomx_core/ |
qomx_core.h | 51 * @comp_name: name of the component 59 /** omx_core_component_t: OMX Component structure 60 * @handle: array of number of instances of the component 61 * @roles: array of roles played by the component 62 * @comp_info: Component information such as libname, 63 * component name 64 * @open: Is the component active 66 * @obj_ptr: Function ptr to get the instance of the component 69 * the component 73 char *roles[OMX_CORE_MAX_ROLES]; //Roles played by the component 91 omx_core_component_t component[OMX_COMP_MAX_NUM]; \/\/Array of pointers to components member in struct:_omx_core_t [all...] |
/hardware/qcom/camera/mm-image-codec/qomx_core/ |
qomx_core.h | 51 * @comp_name: name of the component 59 /** omx_core_component_t: OMX Component structure 60 * @handle: array of number of instances of the component 61 * @roles: array of roles played by the component 62 * @comp_info: Component information such as libname, 63 * component name 64 * @open: Is the component active 66 * @obj_ptr: Function ptr to get the instance of the component 69 * the component 73 char *roles[OMX_CORE_MAX_ROLES]; //Roles played by the component 91 omx_core_component_t component[OMX_COMP_MAX_NUM]; \/\/Array of pointers to components member in struct:_omx_core_t [all...] |
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
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...] |
/external/chromium_org/url/ |
url_canon_ip.cc | 34 const url_parse::Component& host, 35 url_parse::Component components[4]) { 39 int cur_component = 0; // Index of the component we're working on. 40 int cur_component_begin = host.begin; // Start of the current component. 44 // Found the end of the current component. 47 url_parse::Component(cur_component_begin, component_len); 49 // The next component starts after the dot. 54 // allow an empty component at the end (this would indicate that the 55 // input ends in a dot). We also want to error if the component is 56 // empty and it's the only component (cur_component == 1) [all...] |
/packages/apps/Settings/src/com/android/settings/nfc/ |
PaymentDefaultDialog.java | 56 ComponentName component = intent.getParcelableExtra( local 61 if (!buildDialog(component, category)) { 79 private boolean buildDialog(ComponentName component, String category) { 80 if (component == null || category == null) { 81 Log.e(TAG, "Component or category are null"); 96 if (component.equals(service.componentName)) { 105 Log.e(TAG, "Component " + component + " is not a registered payment service."); 109 // Get current mode and default component 111 if (defaultComponent != null && defaultComponent.equals(component)) { [all...] |
/cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/ |
ICalendar.java | 29 * Component and Property, for use in the test. 36 * A component within an iCalendar (VEVENT, VTODO, VJOURNAL, VFEEBUSY, 39 public static class Component { 45 * Creates a new component with the provided name. 46 * @param name The name of the component. 48 public Component(String name, Component parent) { 53 * Adds a Property to this component. 78 * A property within an iCalendar component (e.g., DTSTART, DTEND, etc.,
|
/external/chromium_org/components/autofill/ |
README | 1 Autofill is in the process of becoming a layered component 5 When this process is complete, this component will have the following structure: 17 https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered-components-technical-approach/making-autofill-into-a-layered-component 20 For pointers on how to continue getting your work done as the component moves 22 https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered-components-technical-approach/making-autofill-into-a-layered-component#TOC-Help-How-Do-I-Get-My-Autofill-Related-Work-Done-
|
/frameworks/av/libvideoeditor/vss/common/inc/ |
M4TOOL_VersionInfo.h | 31 * @brief This structure describes version of core component 33 * of a component via getOption function 37 M4OSA_UInt32 m_major; /*major version of the component*/ 38 M4OSA_UInt32 m_minor; /*minor version of the component*/ 39 M4OSA_UInt32 m_revision; /*revision version of the component*/
|
/libcore/luni/src/main/java/java/lang/reflect/ |
GenericArrayType.java | 21 * This interface represents an array type with a component type that is either 28 * Returns the component type of this array. 30 * @return the component type of this array 33 * if the component type points to a missing type 35 * if the component type points to a type that cannot be
|