HomeSort by relevance Sort by last modified time
    Searched defs:attributes (Results 276 - 300 of 925) sorted by null

<<11121314151617181920>>

  /external/bison/lib/glthread/
lock.c 286 pthread_mutexattr_t attributes; local
289 err = pthread_mutexattr_init (&attributes);
292 err = pthread_mutexattr_settype (&attributes, PTHREAD_MUTEX_RECURSIVE);
295 pthread_mutexattr_destroy (&attributes);
298 err = pthread_mutex_init (lock, &attributes);
301 pthread_mutexattr_destroy (&attributes);
304 err = pthread_mutexattr_destroy (&attributes);
315 pthread_mutexattr_t attributes; local
318 err = pthread_mutexattr_init (&attributes);
321 err = pthread_mutexattr_settype (&attributes, PTHREAD_MUTEX_RECURSIVE)
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/printing/
PrintingControllerTest.java 96 PrintAttributes attributes = new PrintAttributes.Builder() local
114 attributes,
171 PrintAttributes attributes) {
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
openid.php 520 $attributes[$key] = $value;
522 # Found the AX attributes, so no need to scan for SREG.
523 return $attributes;
527 $attributes = array(); variable
539 $attributes[$sreg_to_ax[$key]] = $value;
541 return $attributes;
544 * Gets AX/SREG attributes provided by OP. should be used only after successful validaton.
546 * or that there will be no other attributes besides those specified.
549 * * @return Array Array of attributes with keys being the AX schema names, e.g. 'contact/email'
554 $attributes;
    [all...]
  /external/chromium_org/content/browser/accessibility/
accessibility_tree_formatter_win.cc 29 "attributes",
97 base::ListValue* attributes = new base::ListValue; local
101 attributes->AppendString(base::UTF16ToUTF8(*it));
103 dict->Set("attributes", attributes);
  /external/chromium_org/gpu/tools/compositor_model_bench/
compositor_model_bench.cc 193 XWindowAttributes attributes; local
194 XGetWindowAttributes(display_, window_, &attributes);
196 visual_info_template.visualid = XVisualIDFromVisual(attributes.visual);
  /external/chromium_org/media/video/capture/win/
video_capture_device_factory_win.cc 59 IMFAttributes** attributes,
63 if (FAILED(MFCreateAttributes(attributes, count)))
66 return SUCCEEDED((*attributes)->SetGUID(MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE,
72 ScopedComPtr<IMFAttributes> attributes; local
73 if (!PrepareVideoCaptureAttributesMediaFoundation(attributes.Receive(), 2))
76 attributes->SetString(MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_SYMBOLIC_LINK,
79 return SUCCEEDED(MFCreateDeviceSource(attributes, source));
84 ScopedComPtr<IMFAttributes> attributes; local
85 if (!PrepareVideoCaptureAttributesMediaFoundation(attributes.Receive(), 1))
88 return SUCCEEDED(MFEnumDeviceSources(attributes, devices, count))
    [all...]
video_capture_device_mf_win.cc 225 ScopedComPtr<IMFAttributes> attributes; local
226 MFCreateAttributes(attributes.Receive(), 1);
227 DCHECK(attributes);
230 attributes->SetUnknown(MF_SOURCE_READER_ASYNC_CALLBACK, callback_.get());
232 return SUCCEEDED(MFCreateSourceReaderFromMediaSource(source, attributes,
  /external/chromium_org/sandbox/win/src/
win_utils.cc 90 // Check if it's a pipe. We can't query the attributes of a pipe.
101 DWORD attributes = ::GetFileAttributes(path.c_str()); local
102 if (INVALID_FILE_ATTRIBUTES == attributes) {
111 } else if (FILE_ATTRIBUTE_REPARSE_POINT & attributes) {
  /external/chromium_org/testing/gtest/src/
gtest-filepath.cc 205 const DWORD attributes = GetFileAttributes(unicode); local
207 return attributes != kInvalidFileAttributes;
229 const DWORD attributes = GetFileAttributes(unicode); local
231 if ((attributes != kInvalidFileAttributes) &&
232 (attributes & FILE_ATTRIBUTE_DIRECTORY)) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
RuleFeature.h 157 Vector<AtomicString> attributes; member in struct:WebCore::RuleFeatureSet::InvalidationSetFeatures
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationObserver.cpp 99 bool attributes = false; local
100 bool attributesPresent = optionsDictionary.get("attributes", attributes);
101 if (attributes || (!attributesPresent && (attributeOldValuePresent || attributeFilterPresent)))
102 options |= Attributes;
122 if (!(options & Attributes)) {
124 exceptionState.throwTypeError("The options object may only set 'attributeOldValue' to true when 'attributes' is true or not present.");
128 exceptionState.throwTypeError("The options object may only set 'attributeFilter' when 'attributes' is true or not present.");
137 if (!(options & (Attributes | CharacterData | ChildList))) {
138 exceptionState.throwTypeError("The options object must set at least one of 'attributes', 'characterData', or 'childList' to true.")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
MarkupAccumulator.cpp 252 // xmlns and xmlns:prefix attributes should be handled by another branch in appendAttribute.
255 // Attributes are in the null namespace by default.
259 // Attributes without a prefix will need one generated for them, and an xmlns attribute for that prefix.
389 AttributeCollection attributes = element.attributes(); local
390 AttributeCollection::const_iterator end = attributes.end();
391 for (AttributeCollection::const_iterator it = attributes.begin(); it != end; ++it)
395 // Give an opportunity to subclasses to add their own attributes.
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLObjectElement.cpp 189 // Turn the attributes of the <object> element into arrays, but don't override <param> values.
191 AttributeCollection attributes = this->attributes(); local
192 AttributeCollection::const_iterator end = attributes.end();
193 for (AttributeCollection::const_iterator it = attributes.begin(); it != end; ++it) {
276 // the updating of certain attributes should bring about "redetermination"
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp 80 AttributeCollection attributes = element.attributes(); local
81 AttributeCollection::const_iterator end = attributes.end();
82 for (AttributeCollection::const_iterator it = attributes.begin(); it != end; ++it) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGText.cpp 104 static inline void collectLayoutAttributes(RenderObject* text, Vector<SVGTextLayoutAttributes*>& attributes)
108 attributes.append(toRenderSVGInlineText(descendant)->layoutAttributes());
170 // Detect changes in layout attributes and only measure those text parts that have changed!
180 SVGTextLayoutAttributes* attributes = 0; local
182 attributes = newLayoutAttributes[i];
183 if (m_layoutAttributes.find(attributes) == kNotFound) {
187 ASSERT_UNUSED(child, attributes->context() == child);
188 findPreviousAndNextAttributes(this, attributes->context(), previous, next);
192 m_layoutAttributesBuilder.buildLayoutAttributesForTextRenderer(attributes->context());
202 ASSERT(m_layoutAttributes.find(newLayoutAttributes[i]) != kNotFound || newLayoutAttributes[i] == attributes);
    [all...]
SVGRootInlineBox.cpp 218 static inline void findFirstAndLastAttributesInVector(Vector<SVGTextLayoutAttributes*>& attributes, RenderSVGInlineText* firstContext, RenderSVGInlineText* lastContext,
224 unsigned attributesSize = attributes.size();
226 SVGTextLayoutAttributes* current = attributes[i];
242 Vector<SVGTextLayoutAttributes*>& attributes = *reinterpret_cast<Vector<SVGTextLayoutAttributes*>*>(userData); local
267 findFirstAndLastAttributesInVector(attributes, &firstContext, &lastContext, firstAttributes, lastAttributes);
279 void SVGRootInlineBox::reorderValueLists(Vector<SVGTextLayoutAttributes*>& attributes)
282 collectLeafBoxesInLogicalOrder(leafBoxesInLogicalOrder, reverseInlineBoxRangeAndValueListsIfNeeded, &attributes);
SVGTextMetricsBuilder.cpp 187 SVGTextLayoutAttributes* attributes = text->layoutAttributes(); local
188 Vector<SVGTextMetrics>* textMetricsValues = &attributes->textMetricsValues();
191 attributes->clear();
222 attributes->characterDataMap().set(textPosition + 1, it->value);
  /external/chromium_org/third_party/WebKit/Source/web/
WebPageSerializerImpl.cpp 304 // Go through all attributes and serialize them.
306 AttributeCollection attributes = element->attributes(); local
307 AttributeCollection::const_iterator end = attributes.end();
308 for (AttributeCollection::const_iterator it = attributes.begin(); it != end; ++it) {
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-filepath.cc 205 const DWORD attributes = GetFileAttributes(unicode); local
207 return attributes != kInvalidFileAttributes;
229 const DWORD attributes = GetFileAttributes(unicode); local
231 if ((attributes != kInvalidFileAttributes) &&
232 (attributes & FILE_ATTRIBUTE_DIRECTORY)) {
  /external/chromium_org/third_party/openssl/openssl/apps/
apps.h 293 DB_ATTR attributes; member in struct:ca_db_st
  /external/chromium_org/third_party/skia/src/svg/
SkSVGParser.cpp 70 const SkSVGAttribute* attributes; local
71 size_t count = element->getAttributes(&attributes);
74 if (strncmp(attributes->fName, attrValue, len) == 0 && strlen(attributes->fName) == len) {
75 SkASSERT(result == (attributes->fOffset -
79 attributes++;
153 if (fCurrElement == NULL) // this signals we should ignore attributes for this element
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/x11/
x_server_pixel_buffer.cc 100 XWindowAttributes attributes; local
103 if (!XGetWindowAttributes(display_, window, &attributes) ||
109 window_size_ = DesktopSize(attributes.width, attributes.height);
111 InitShm(attributes);
116 void XServerPixelBuffer::InitShm(const XWindowAttributes& attributes) {
117 Visual* default_visual = attributes.visual;
118 int default_depth = attributes.depth;
217 XWindowAttributes attributes; local
220 if (!XGetWindowAttributes(display_, window_, &attributes) ||
    [all...]
  /external/chromium_org/ui/gfx/
render_text_mac.cc 119 base::ScopedCFTypeRef<CFDictionaryRef> attributes(
130 CFAttributedStringCreate(NULL, cf_text, attributes));
204 // Clear the attributes storage.
309 CFDictionaryRef attributes = CTRunGetAttributes(ct_run); local
311 base::mac::GetValueFromDictionary<CTFontRef>(attributes,
326 attributes, kCTForegroundColorAttributeName);
332 attributes, kCTUnderlineStyleAttributeName);
  /external/deqp/modules/egl/
teglQueryConfigTests.cpp 528 } attributes[] = local
563 for (int ndx = 0; ndx < (int)DE_LENGTH_OF_ARRAY(attributes); ndx++)
565 simpleGroup->addChild(new GetConfigAttribSimpleCase(m_eglTestCtx, attributes[ndx].testName, "Simple attribute query case", attributes[ndx].attribute));
  /external/droiddriver/src/com/google/android/droiddriver/instrumentation/
ViewElement.java 210 private final Map<Attribute, Object> attributes; field in class:ViewElement
217 * A snapshot of all attributes is taken at construction. The attributes of a
232 attributes = Collections.unmodifiableMap(attributesSnapshot.attribs);
268 return attributes;

Completed in 1771 milliseconds

<<11121314151617181920>>