HomeSort by relevance Sort by last modified time
    Searched defs:attr (Results 26 - 50 of 1552) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/valgrind/main/drd/tests/
concurrent_close.cpp 31 pthread_attr_t attr; local
34 pthread_attr_init(&attr);
35 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
37 r = pthread_create(&threads[i], &attr, thread, 0);
43 pthread_attr_destroy(&attr);
  /external/valgrind/main/helgrind/tests/
locked_vs_unlocked3.c 46 pthread_mutexattr_t attr; local
47 r = pthread_mutexattr_init( &attr );
49 r = pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE );
51 r= pthread_mutex_init(&mx, &attr); assert(!r);
  /frameworks/base/libs/androidfw/tests/data/system/
R.h 23 namespace attr { namespace in namespace:android::R
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DefaultSignedAttributeTableGenerator.java 73 Attribute attr = new Attribute(CMSAttributes.contentType, local
75 std.put(attr.getAttrType(), attr); local
82 Attribute attr = new Attribute(CMSAttributes.signingTime, local
84 std.put(attr.getAttrType(), attr); local
91 Attribute attr = new Attribute(CMSAttributes.messageDigest, local
93 std.put(attr.getAttrType(), attr); local
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
AttributeSet.java 37 public abstract AttributeSet set (Attribute attr, String value);
38 public abstract AttributeSet set (Attribute attr, int value);
59 final Attribute attr = (Attribute) entry.getKey (); local
67 out.write (attr.getName ());
88 public AttributeSet set (final Attribute attr, final String value) // null removes?
90 m_attrMap.put (attr, value);
95 public AttributeSet set (final Attribute attr, final int value)
97 m_attrMap.put (attr, new Integer (value)); // TODO: use int factory here
  /external/apache-xml/src/main/java/org/apache/xml/utils/
PrefixResolverDefault.java 103 Node attr = nnm.item(i); local
104 String aname = attr.getNodeName();
114 namespace = attr.getNodeValue();
  /external/bluetooth/bluedroid/btif/co/
bta_gattc_co.c 115 tBTA_GATTC_NV_ATTR attr[BTA_GATTC_NV_LOAD_MAX]; local
120 num_attr = fread(attr, sizeof(tBTA_GATTC_NV_ATTR), BTA_GATTC_NV_LOAD_MAX, sCacheFD);
126 bta_gattc_ci_cache_load(server_bda, evt, num_attr, attr, status, conn_id);
  /external/chromium_org/chrome/browser/extensions/api/automation_internal/
automation_util.cc 44 std::pair<ui::AXBoolAttribute, bool> attr = local
47 ToString(attr.first), attr.second);
55 std::pair<ui::AXFloatAttribute, float> attr = local
58 ToString(attr.first), attr.second);
66 std::pair<std::string, std::string> attr = node_data.html_attributes[i]; local
68 attr.first, attr.second);
76 std::pair<ui::AXIntAttribute, int> attr = node_data.int_attributes[i] local
86 std::pair<ui::AXIntListAttribute, std::vector<int32> > attr = local
100 std::pair<ui::AXStringAttribute, std::string> attr = local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteFileSystemPosix.cpp 117 int attr = static_cast<int>(Platform::current()->databaseGetFileAttributes(String(fileName))); local
118 if (attr < 0) {
125 *res = 1; // if the file doesn't exist, attr < 0
128 *res = (attr & W_OK) && (attr & R_OK);
131 *res = (attr & R_OK);
SQLiteFileSystemWin.cpp 96 DWORD attr = Platform::current()->databaseGetFileAttributes(String(fileName)); local
100 *res = (attr != INVALID_FILE_ATTRIBUTES);
103 *res = ((attr & FILE_ATTRIBUTE_READONLY) == 0);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/
attributes.c 79 const char *attr; local
89 attr = XGetAtomName(dpy, attribute);
90 if (!attr)
93 if (strcmp(attr, XV_BRIGHTNESS))
95 else if (strcmp(attr, XV_CONTRAST))
97 else if (strcmp(attr, XV_SATURATION))
99 else if (strcmp(attr, XV_HUE))
101 else if (strcmp(attr, XV_COLORSPACE))
115 XVMC_MSG(XVMC_TRACE, "[XvMC] Set attribute %s to value %d.\n", attr, value);
124 const char *attr; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
apple_visual.c 71 CGLPixelFormatAttribute attr[MAX_ATTR]; local
78 attr[numattr++] = kCGLPFAOpenGLProfile;
79 attr[numattr++] = kCGLOGLPVersion_3_2_Core;
86 attr[numattr++] = kCGLPFAOffScreen;
87 attr[numattr++] = kCGLPFAColorSize;
88 attr[numattr++] = 32;
93 attr[numattr++] = kCGLPFARendererID;
94 attr[numattr++] = kCGLRendererGenericFloatID;
101 attr[numattr++] = kCGLPFAAccelerated;
109 attr[numattr++] = kCGLPFAClosestPolicy
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_array.h 36 int attr; member in struct:nouveau_array
48 nouveau_init_array(struct nouveau_array *a, int attr, int stride,
nouveau_render_t.c 83 &TAG(vertex_attrs)[(a)->attr]; \
191 int attr = a->attr - VERT_ATTRIB_GENERIC0; local
203 }) [attr];
205 COPY_4V(ctx->Light.Material.Attrib[attr], (float *)v);
206 _mesa_update_material(ctx, 1 << attr);
  /external/chromium_org/third_party/webrtc/modules/audio_device/test/android/audio_device_android_test/gen/org/webrtc/voiceengine/test/
R.java 11 public static final class attr { class in class:R
  /external/chromium_org/v8/src/base/platform/
condition-variable.cc 25 pthread_condattr_t attr; local
26 int result = pthread_condattr_init(&attr);
28 result = pthread_condattr_setclock(&attr, CLOCK_MONOTONIC);
30 result = pthread_cond_init(&native_handle_, &attr);
32 result = pthread_condattr_destroy(&attr);
  /external/compiler-rt/test/asan/TestCases/
stack-use-after-return.cc 68 pthread_attr_t attr; local
69 pthread_attr_init(&attr);
71 pthread_attr_setstacksize(&attr, kStackSize);
73 pthread_create(&t, &attr, Thread, 0);
74 pthread_attr_destroy(&attr);
  /external/deqp/framework/delibs/dethread/unix/
deThreadUnix.c 61 pthread_attr_t attr; local
70 if (pthread_attr_init(&attr) != 0)
79 if (pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE) != 0)
81 pthread_attr_destroy(&attr);
86 if (pthread_create(&thread->thread, &attr, startThread, thread) != 0)
88 pthread_attr_destroy(&attr);
94 pthread_attr_destroy(&attr);
  /external/elfutils/0.153/backends/
alpha_retval.c 69 Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, local
71 if (attr == NULL)
76 Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
84 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
85 typedie = dwarf_formref_die (attr, &die_mem);
97 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
98 typedie = dwarf_formref_die (attr, &die_mem);
arm_retval.c 65 Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, local
67 if (attr == NULL)
72 Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
80 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
81 typedie = dwarf_formref_die (attr, &die_mem);
94 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
95 typedie = dwarf_formref_die (attr, &die_mem);
i386_retval.c 69 Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, local
71 if (attr == NULL)
76 Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
84 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
85 typedie = dwarf_formref_die (attr, &die_mem);
97 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
98 typedie = dwarf_formref_die (attr, &die_mem);
sh_retval.c 67 Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, local
69 if (attr == NULL)
74 Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
82 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
83 typedie = dwarf_formref_die (attr, &die_mem);
96 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
97 typedie = dwarf_formref_die (attr, &die_mem);
  /external/elfutils/0.153/libdw/
dwarf_func_inline.c 73 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (&die->die, DW_AT_abstract_origin, local
75 if (attr == NULL)
79 Dwarf_Die *origin = INTUSE(dwarf_formref_die) (attr, &origin_mem);
dwarf_ranges.c 138 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (die, DW_AT_ranges, local
140 if (attr == NULL)
145 if ((readp = __libdw_formptr (attr, IDX_debug_ranges,
154 Dwarf_Die cudie = CUDIE (attr->cu);
libdw_visit_scopes.c 151 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (&child.die, local
154 if (INTUSE(dwarf_formref_die) (attr, &child.die) != NULL)

Completed in 399 milliseconds

12 3 4 5 6 7 8 91011>>