Searched defs:attrs (Results 1 - 25 of 247) sorted by relevance

12345678910

/external/opencv3/modules/core/include/opencv2/core/cuda/
H A Dfuncattrib.hpp60 cudaFuncAttributes attrs; local
61 cudaFuncGetAttributes(&attrs, func);
65 printf("sharedSizeBytes = %d\n", attrs.sharedSizeBytes);
66 printf("constSizeBytes = %d\n", attrs.constSizeBytes);
67 printf("localSizeBytes = %d\n", attrs.localSizeBytes);
68 printf("maxThreadsPerBlock = %d\n", attrs.maxThreadsPerBlock);
69 printf("numRegs = %d\n", attrs.numRegs);
70 printf("ptxVersion = %d\n", attrs.ptxVersion);
71 printf("binaryVersion = %d\n", attrs.binaryVersion);
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
H A DEncodingPreference.java14 public EncodingPreference(Context context, AttributeSet attrs) { argument
15 super(context, attrs);
H A DHelpTopicView.java32 public HelpTopicView(Context context, AttributeSet attrs, int defStyle) { argument
33 super(context, attrs, defStyle);
37 public HelpTopicView(Context context, AttributeSet attrs) { argument
38 super(context, attrs);
H A DVolumePreference.java34 * @param attrs
36 public VolumePreference(Context context, AttributeSet attrs) { argument
37 super(context, attrs);
39 setupLayout(context, attrs);
42 public VolumePreference(Context context, AttributeSet attrs, int defStyle) { argument
43 super(context, attrs, defStyle);
45 setupLayout(context, attrs);
48 private void setupLayout(Context context, AttributeSet attrs) { argument
/external/clang/test/CodeGen/
H A Dpacked-union.c6 } __attribute__((__packed__)) attrs; typedef in typeref:struct:_attrs
10 attrs file_attrs;
/external/iproute2/lib/
H A Dlibgenl.c17 struct rtattr *attrs; local
37 attrs = (struct rtattr *) ((char *) ghdr + GENL_HDRLEN);
38 parse_rtattr(tb, CTRL_ATTR_MAX, attrs, len);
/external/mesa3d/src/egl/main/
H A Deglimage.c41 _eglParseImageAttribList(_EGLImageAttribs *attrs, _EGLDisplay *dpy, argument
48 memset(attrs, 0, sizeof(*attrs));
49 attrs->ImagePreserved = EGL_FALSE;
50 attrs->GLTextureLevel = 0;
51 attrs->GLTextureZOffset = 0;
63 attrs->ImagePreserved = val;
68 attrs->GLTextureLevel = val;
71 attrs->GLTextureZOffset = val;
76 attrs
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
H A DClassReaderGenerator.java25 private final Attribute[] attrs; field in class:ClassReaderGenerator
32 public ClassReaderGenerator(ClassReader r, Attribute[] attrs, int flags) { argument
34 this.attrs = (attrs != null) ? attrs : new Attribute[0];
39 r.accept(v, attrs, flags);
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/
H A DCustomView.java11 public CustomView(Context context, AttributeSet attrs) { argument
12 super(context, attrs);
14 attributeResourceValue = attrs.getAttributeResourceValue("some namespace", "message", -1);
H A DCustomView2.java10 public CustomView2(Context context, AttributeSet attrs) { argument
11 super(context, attrs);
/external/iw/
H A Dps.c47 struct nlattr *attrs[NL80211_ATTR_MAX + 1]; local
51 nla_parse(attrs, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
54 if (!attrs[NL80211_ATTR_PS_STATE])
57 switch (nla_get_u32(attrs[NL80211_ATTR_PS_STATE])) {
/external/libdrm/tests/kmstest/
H A Dmain.c44 unsigned attrs[7] = { local
51 ret = kms_bo_create(kms, attrs, &bo);
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DMemberNode.java69 public List attrs; field in class:MemberNode
109 if (attrs == null) {
110 attrs = new ArrayList(1);
112 attrs.add(attr);
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DElementPolicy.java50 * @param attrs a list of alternating attribute names and values.
56 public @Nullable String apply(String elementName, List<String> attrs); argument
105 public String apply(String elementName, List<String> attrs) {
112 public @Nullable String apply(String elementName, List<String> attrs) {
128 public @Nullable String apply(String elementName, List<String> attrs) { argument
129 elementName = first.apply(elementName, attrs);
130 return elementName != null ? second.apply(elementName, attrs) : null;
H A DHtmlSanitizer.java59 * @param attrs a list of alternating attribute name and value pairs.
67 void openTag(String elementName, List<String> attrs); argument
133 LinkedList<String> attrs = Lists.newLinkedList();
154 attrs.clear();
164 attrs.add(attrs.getLast());
168 attrs.add(HtmlLexer.canonicalName(
172 attrs.add(Encoding.decodeHtml(stripQuotes(
183 attrs.add(attrs
[all...]
H A DHtmlStreamEventReceiver.java43 * @param attrs alternating attribute names and values.
45 public void openTag(String elementName, List<String> attrs); argument
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DElementPolicyTest.java29 String apply(String elementName, List<String> attrs) { argument
30 attrs.clear();
41 List<String> attrs = Lists.newArrayList();
44 if (p.apply(elName, attrs) != null) {
/external/replicaisland/src/com/replica/replicaisland/
H A DYesNoDialogPreference.java30 public YesNoDialogPreference(Context context, AttributeSet attrs) { argument
31 this(context, attrs, android.R.attr.yesNoPreferenceStyle);
35 public YesNoDialogPreference(Context context, AttributeSet attrs, argument
37 super(context, attrs, defStyle);
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/
H A DAttrResourceLoaderTest.java52 public SubCustomView(Context context, AttributeSet attrs) { argument
53 super(context, attrs);
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DDialogPreferenceTest.java29 private TestAttributeSet attrs; field in class:DialogPreferenceTest
36 attrs = new TestAttributeSet(hash);
37 preference = new TestDialogPreference(context, attrs);
45 preference = new TestDialogPreference(context, attrs, defStyle);
48 assertThat(shadow.getAttrs(), sameInstance((AttributeSet) attrs));
51 preference = new TestDialogPreference(context, attrs);
54 assertThat(shadow.getAttrs(), sameInstance((AttributeSet) attrs));
65 public TestDialogPreference(Context context, AttributeSet attrs, int defStyle) { argument
66 super(context, attrs, defStyle);
69 public TestDialogPreference(Context context, AttributeSet attrs) { argument
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/timeline/
H A Dmemory_dump_event_unittest.py19 def attrs(sizes): function in function:MakeRawMemoryDumpEvent
20 return {'attrs': {k: {'value': hex(v), 'units': 'bytes'}
28 name: attrs(sizes) for name, sizes in allocators.iteritems()}}}}
/external/iproute2/tipc/
H A Dnametable.c32 struct nlattr *attrs[TIPC_NLA_NAME_TABLE_MAX + 1] = {}; local
40 mnl_attr_parse_nested(info[TIPC_NLA_NAME_TABLE], parse_attrs, attrs);
41 if (!attrs[TIPC_NLA_NAME_TABLE_PUBL])
44 mnl_attr_parse_nested(attrs[TIPC_NLA_NAME_TABLE_PUBL], parse_attrs, publ);
H A Dsocket.c30 struct nlattr *attrs[TIPC_NLA_SOCK_MAX + 1] = {}; local
36 mnl_attr_parse_nested(info[TIPC_NLA_PUBL], parse_attrs, attrs);
39 mnl_attr_get_u32(attrs[TIPC_NLA_PUBL_TYPE]),
40 mnl_attr_get_u32(attrs[TIPC_NLA_PUBL_LOWER]),
41 mnl_attr_get_u32(attrs[TIPC_NLA_PUBL_UPPER]));
68 struct nlattr *attrs[TIPC_NLA_SOCK_MAX + 1] = {}; local
74 mnl_attr_parse_nested(info[TIPC_NLA_SOCK], parse_attrs, attrs);
75 if (!attrs[TIPC_NLA_SOCK_REF])
78 printf("socket %u\n", mnl_attr_get_u32(attrs[TIPC_NLA_SOCK_REF]));
80 if (attrs[TIPC_NLA_SOCK_CO
[all...]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
H A DSignatureRemover.java104 private void filterManifestEntryAttributes(final Attributes attrs) { argument
105 for (final Iterator<Object> i = attrs.keySet().iterator(); i.hasNext();) {
/external/libchrome/base/synchronization/
H A Dcondition_variable_posix.cc33 pthread_condattr_t attrs; local
34 rv = pthread_condattr_init(&attrs);
36 pthread_condattr_setclock(&attrs, CLOCK_MONOTONIC);
37 rv = pthread_cond_init(&condition_, &attrs);
38 pthread_condattr_destroy(&attrs);

Completed in 2776 milliseconds

12345678910