HomeSort by relevance Sort by last modified time
    Searched full:attr (Results 501 - 525 of 5293) sorted by null

<<21222324252627282930>>

  /external/linux-tools-perf/util/
parse-events.c 300 u64 config = evsel->attr.config;
301 int type = evsel->attr.type;
381 parse_generic_hw_event(const char **str, struct perf_event_attr *attr)
434 attr->config = cache_type | (cache_op << 8) | (cache_result << 16);
435 attr->type = PERF_TYPE_HW_CACHE;
445 struct perf_event_attr *attr,
467 attr->config = id;
468 attr->type = PERF_TYPE_TRACEPOINT;
471 attr->sample_type |= PERF_SAMPLE_RAW;
472 attr->sample_type |= PERF_SAMPLE_TIME
834 struct perf_event_attr attr; local
    [all...]
  /frameworks/support/v7/appcompat/res/layout/
abc_search_view.xml 36 android:textAppearance="?android:attr/textAppearanceMedium"
37 android:textColor="?android:attr/textColorPrimary"
43 style="?attr/actionButtonStyle"
47 android:src="?attr/searchViewSearchIcon"
71 android:src="?attr/searchViewSearchIcon"
83 android:background="?attr/searchViewTextField">
86 style="?attr/searchViewAutoCompleteTextView"
114 android:background="?attr/selectableItemBackground"
115 android:src="?attr/searchViewCloseIcon"
127 android:background="?attr/searchViewTextFieldRight"
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldAttributedCharacterIteratorTest.java 37 HashSet<AttributedCharacterIterator.Attribute> attr = local
39 attr.add(AttributedCharacterIterator.Attribute.LANGUAGE);
41 2, it.getRunLimit(attr));
48 4, it.getRunLimit(attr));
50 attr.add(AttributedCharacterIterator.Attribute.READING);
52 4, it.getRunLimit(attr));
70 for(AttributedCharacterIterator.Attribute attr:attributes) {
71 assertEquals(AttributedCharacterIterator.Attribute.LANGUAGE, attr);
176 HashSet<AttributedCharacterIterator.Attribute> attr = local
178 attr.add(AttributedCharacterIterator.Attribute.LANGUAGE)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
StateListDrawableTest.java 24 import android.R.attr;
78 mStateListDrawable.addState(new int[] { attr.state_focused, - attr.state_selected },
96 mStateListDrawable.addState(new int[] { attr.state_focused, - attr.state_selected },
108 mStateListDrawable.setState(new int[] { attr.state_focused, - attr.state_selected });
116 mStateListDrawable.onStateChange(new int[] { attr.state_focused, - attr.state_selected });
119 assertFalse(mStateListDrawable.onStateChange(new int[] { attr.state_focused }))
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_dev.cc 37 virtual Error Read(const HandleAttr& attr,
41 virtual Error Write(const HandleAttr& attr,
55 virtual Error Read(const HandleAttr& attr,
59 virtual Error Write(const HandleAttr& attr,
69 virtual Error Write(const HandleAttr& attr,
82 virtual Error Read(const HandleAttr& attr,
86 virtual Error Write(const HandleAttr& attr,
96 virtual Error Read(const HandleAttr& attr,
100 virtual Error Write(const HandleAttr& attr,
116 Error RealNode::Read(const HandleAttr& attr,
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapRemoveNamedItemNS.java 28 import org.w3c.dom.Attr;
79 Attr attribute;
86 attribute = (Attr) attributes.removeNamedItemNS("http://www.nist.gov",
88 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
98 // Attr attribute;
108 // attribute = (Attr) attributes.removeNamedItemNS(nullNS, "defaultAttr");
109 // attribute = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
119 Attr attribute;
121 Attr attribute1;
122 Attr attribute2
    [all...]
  /packages/apps/Browser/res/layout/
browser_add_bookmark_content.xml 25 android:minHeight="?android:attr/listPreferredItemHeightSmall"
34 android:background="?android:attr/dividerVertical"
44 android:background="?android:attr/selectableItemBackground"
45 android:textAppearance="?android:attr/textAppearanceMedium"
56 android:minHeight="?android:attr/listPreferredItemHeightSmall"
66 android:textAppearance="?android:attr/textAppearanceMedium" />
70 android:background="?android:attr/dividerVertical"
81 android:textAppearance="?android:attr/textAppearanceMedium" />
106 android:textAppearance="?android:attr/textAppearanceMedium" />
115 android:textAppearance="?android:attr/textAppearanceMedium" /
    [all...]
  /external/libsepol/tests/
test-linker-types.c 35 * - datum in the decl symtab has correct type bitmap (if attr)
45 * - attr in base, no modules
46 * - attr in base optional, no modules
47 * - attr a in base, b in module
48 * - attr a in base optional, b in module
49 * - attr a in base, b in module optional
50 * - attr a in base optional, b in module optional
51 * - attr a declared in base, added to in module
52 * - attr a declared in base, added to in module optional
53 * - attr a declared in base, added to in 2 modules
    [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
attrvt.c 164 * @attr: the attribute coming from the stylesheet.
171 xsltCompileAttr(xsltStylesheetPtr style, xmlAttrPtr attr) {
179 if ((style == NULL) || (attr == NULL) || (attr->children == NULL))
181 if ((attr->children->type != XML_TEXT_NODE) ||
182 (attr->children->next != NULL)) {
183 xsltTransformError(NULL, style, attr->parent,
185 "node when compiling an AVT.\n", attr->name);
189 str = attr->children->content;
195 "Found AVT %s: %s\n", attr->name, str)
    [all...]
  /external/libxslt/libxslt/
attrvt.c 164 * @attr: the attribute coming from the stylesheet.
171 xsltCompileAttr(xsltStylesheetPtr style, xmlAttrPtr attr) {
179 if ((style == NULL) || (attr == NULL) || (attr->children == NULL))
181 if ((attr->children->type != XML_TEXT_NODE) ||
182 (attr->children->next != NULL)) {
183 xsltTransformError(NULL, style, attr->parent,
185 "node when compiling an AVT.\n", attr->name);
189 str = attr->children->content;
195 "Found AVT %s: %s\n", attr->name, str)
    [all...]
  /frameworks/base/core/res/res/layout/
preference.xml 23 android:minHeight="?android:attr/listPreferredItemHeight"
25 android:paddingEnd="?android:attr/scrollbarSize"
26 android:background="?android:attr/selectableItemBackground" >
48 android:textAppearance="?android:attr/textAppearanceLarge"
57 android:textAppearance="?android:attr/textAppearanceSmall"
58 android:textColor="?android:attr/textColorSecondary"
preference_information.xml 23 android:minHeight="?android:attr/listPreferredItemHeight"
25 android:paddingEnd="?android:attr/scrollbarSize">
40 android:textAppearance="?android:attr/textAppearanceLarge"
41 android:textColor="?android:attr/textColorSecondary" />
48 android:textAppearance="?android:attr/textAppearanceSmall"
49 android:textColor="?android:attr/textColorSecondary"
preference_information_holo.xml 23 android:minHeight="?android:attr/listPreferredItemHeight"
26 android:paddingEnd="?android:attr/scrollbarSize">
54 android:textAppearance="?android:attr/textAppearanceMedium"
55 android:textColor="?android:attr/textColorSecondary" />
62 android:textAppearance="?android:attr/textAppearanceSmall"
63 android:textColor="?android:attr/textColorSecondary"
  /frameworks/base/core/res/res/menu/
webview_copy.xml 23 android:icon="?android:attr/actionModeCutDrawable"
28 android:icon="?android:attr/actionModeCopyDrawable"
33 android:icon="?android:attr/actionModePasteDrawable"
38 android:icon="?android:attr/actionModeShareDrawable"
43 android:icon="?android:attr/actionModeFindDrawable"
48 android:icon="?android:attr/actionModeWebSearchDrawable"
  /frameworks/support/v7/appcompat/res/values-v11/
themes_base.xml 36 <item name="buttonBarStyle">?android:attr/buttonBarStyle</item>
37 <item name="buttonBarButtonStyle">?android:attr/buttonBarButtonStyle</item>
38 <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
47 <item name="buttonBarStyle">?android:attr/buttonBarStyle</item>
48 <item name="buttonBarButtonStyle">?android:attr/buttonBarButtonStyle</item>
49 <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
  /frameworks/webview/chromium/overlay/frameworks/base/core/res/res/menu/
webviewchromium_select_action_menu.xml 23 android:icon="?android:attr/actionModeSelectAllDrawable"
29 android:icon="?android:attr/actionModeCutDrawable"
35 android:icon="?android:attr/actionModeCopyDrawable"
41 android:icon="?android:attr/actionModePasteDrawable"
47 android:icon="?attr/actionModeShareDrawable"
52 android:icon="?attr/actionModeWebSearchDrawable"
  /frameworks/wilhelm/src/
locks.h 22 extern void object_unlock_exclusive_attributes_(IObject *thiz, unsigned attr,
28 extern void object_unlock_exclusive_attributes(IObject *thiz, unsigned attr);
37 #define object_unlock_exclusive_attributes(thiz, attr) \
38 object_unlock_exclusive_attributes_((thiz), (attr), __FILE__, __LINE__)
53 #define interface_unlock_exclusive_attributes(thiz, attr) \
54 object_unlock_exclusive_attributes(InterfaceToIObject(thiz), (attr))
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Thread.c 48 pthread_attr_t attr; member in struct:_EXYNOS_THREAD_HANDLE_TYPE
66 pthread_attr_init(&thread->attr);
68 pthread_attr_setstacksize(&thread->attr, thread->stack_size);
72 pthread_attr_setschedparam(&thread->attr, &thread->schedparam);
74 detach_ret = pthread_attr_setdetachstate(&thread->attr, PTHREAD_CREATE_JOINABLE);
82 result = pthread_create(&thread->pthread, &thread->attr, function_name, (void *)argument);
  /packages/apps/ContactsCommon/res/layout/
contact_list_content.xml 28 android:background="?attr/contact_browser_background" >
45 android:layout_marginLeft="?attr/contact_browser_list_padding_left"
46 android:layout_marginRight="?attr/contact_browser_list_padding_right"
47 android:layout_marginStart="?attr/contact_browser_list_padding_left"
48 android:layout_marginEnd="?attr/contact_browser_list_padding_right"
53 style="?android:attr/progressBarStyleLarge"
  /packages/apps/Dialer/res/layout/
call_detail_history_item.xml 46 android:textAppearance="?android:attr/textAppearanceSmall"
47 android:textColor="?attr/call_log_secondary_text_color"
54 android:textAppearance="?android:attr/textAppearanceSmall"
55 android:textColor="?attr/call_log_secondary_text_color"
61 android:textAppearance="?android:attr/textAppearanceSmall"
62 android:textColor="?attr/call_log_secondary_text_color"
  /packages/apps/Email/res/layout/
account_setup_names.xml 34 android:textAppearance="?android:attr/textAppearanceMedium"
35 android:textColor="?android:attr/textColorPrimary" />
40 android:textAppearance="?android:attr/textAppearanceSmall"
41 android:textColor="?android:attr/textColorPrimary" />
54 android:textAppearance="?android:attr/textAppearanceSmall"
55 android:textColor="?android:attr/textColorPrimary" />
  /packages/apps/Settings/res/layout/
app_ops_item.xml 23 android:minHeight="?android:attr/listPreferredItemHeight"
24 android:paddingStart="?android:attr/listPreferredItemPaddingStart"
25 android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
47 android:textAppearance="?android:attr/textAppearanceMedium"
54 android:textAppearance="?android:attr/textAppearanceSmall"
61 android:textAppearance="?android:attr/textAppearanceSmall" />
manage_applications_item.xml 23 android:minHeight="?android:attr/listPreferredItemHeight"
24 android:paddingStart="?android:attr/listPreferredItemPaddingStart"
25 android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
47 android:textAppearance="?android:attr/textAppearanceMedium"
62 android:textAppearance="?android:attr/textAppearanceSmall"
69 android:textAppearance="?android:attr/textAppearanceSmall" />
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/testdata/
mock_manifest_attrs.xml 41 <attr name="theme" format="reference" />
56 <attr name="label" format="reference|string" />
70 <attr name="icon" format="reference" />
75 <attr name="name" format="string" />
85 with {@link android.R.attr#versionName}. -->
86 <attr name="versionCode" format="integer" />
90 significant version number is given by {@link android.R.attr#versionCode}. -->
91 <attr name="versionName" format="string" />
104 <attr name="versionCode" />
105 <attr name="versionName" /
    [all...]
  /sdk/testapps/gridlayoutTest/v7-gridlayout/res/values/
attrs.xml 22 <attr name="orientation">
28 </attr>
30 <attr name="rowCount" format="integer" />
32 <attr name="columnCount" format="integer" />
39 <attr name="useDefaultMargins" format="boolean" />
47 <attr name="alignmentMode">
59 </attr>
66 <attr name="rowOrderPreserved" format="boolean" />
73 <attr name="columnOrderPreserved" format="boolean" />
85 <attr name="android:layout_width" /
    [all...]

Completed in 300 milliseconds

<<21222324252627282930>>