Searched refs:elementType (Results 1 - 19 of 19) sorted by relevance

/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/
H A Dobjc_util.m652 * Convert a Python object to an array of 'elementType'. The array should
658 * 'elementType' or an appropriatly typed and shaped numeric array.
666 const char* elementType,
672 Py_ssize_t eltsize = PyObjCRT_SizeOfType(elementType);
682 !(*elementType == _C_NSBOOL || *elementType == _C_BOOL || *elementType == _C_CHAR_AS_INT)) {
763 if (*elementType == _C_UNICHAR && PyUnicode_Check(pythonList)) {
786 } else if (*elementType == _C_UNICHAR && PyString_Check(pythonList)) {
853 if (code_compatible(code, *elementType)) {
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dobjc_util.m593 * Convert a Python object to an array of 'elementType'. The array should
599 * 'elementType' or an appropriatly typed and shaped numeric array.
607 const char* elementType,
613 Py_ssize_t eltsize = PyObjCRT_SizeOfType(elementType);
623 !(*elementType == _C_NSBOOL || *elementType == _C_BOOL || *elementType == _C_CHAR_AS_INT)) {
704 if (*elementType == _C_UNICHAR && PyUnicode_Check(pythonList)) {
727 } else if (*elementType == _C_UNICHAR && PyString_Check(pythonList)) {
795 if (code_compatible(code, *elementType)) {
[all...]
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebKitSupport/
H A DInputHandler.h113 bool isMultilineInputMode() const { return isActiveTextEdit() && elementType(m_currentFocusElement.get()) == BlackBerry::Platform::InputTypeTextArea; }
194 BlackBerry::Platform::BlackBerryInputType elementType(WebCore::Element*) const;
H A DInputHandler.cpp411 BlackBerryInputType InputHandler::elementType(Element* element) const function in class:BlackBerry::WebKit::InputHandler
1081 if (elementType(m_currentFocusElement.get()) != InputTypeTextArea) {
1155 BlackBerryInputType type = elementType(element);
2017 return openDatePopup(element, elementType(element));
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDFamily/
H A DIOHIDDevice.h150 IOHIDElementType elementType,
156 IOHIDElementType elementType,
H A DIOHIDLibUserClient.h241 IOReturn getElements(uint32_t elementType, void *elementBuffer, uint32_t *elementBufferSize);
242 IOReturn getElements(uint32_t elementType, IOMemoryDescriptor * mem, uint32_t *elementBufferSize);
H A DIOHIDLibUserClient.cpp871 IOReturn IOHIDLibUserClient::getElements (uint32_t elementType, void *elementBuffer, uint32_t *elementBufferSize) argument
884 if ( elementType == kHIDElementType )
917 IOReturn IOHIDLibUserClient::getElements(uint32_t elementType, IOMemoryDescriptor * mem, uint32_t *elementBufferSize) argument
940 ret = getElements(elementType, elementData, &elementLength);
H A DIOHIDDevice.cpp1452 IOHIDElementType elementType,
1494 elementType,
1519 IOHIDElementType elementType,
1561 elementType,
1449 createButtonElements( HIDPreparsedDataRef parseData, OSArray * array, UInt32 hidReportType, IOHIDElementType elementType, UInt32 maxCount ) argument
1516 createValueElements( HIDPreparsedDataRef parseData, OSArray * array, UInt32 hidReportType, IOHIDElementType elementType, UInt32 maxCount ) argument
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDLib/
H A DIOHIDTransactionClass.cpp242 IOHIDElementType elementType; local
254 elementType = IOHIDElementGetType(element);
257 if ((elementType != kIOHIDElementTypeOutput) && (elementType != kIOHIDElementTypeFeature))
H A DIOHIDDeviceClass.cpp1149 CFTypeRef elementType = 0; local
1360 elementType = createElement(fElementData, &fElements[index], (fElements[index].duplicateValueSize&&!isDuplicateRoot) ? duplicateIndex : rangeIndex, parentElement, elementCache, &isElementCached, options);
1362 if ( elementType )
1364 CFArrayAppendValue(tempElements, elementType);
1365 CFRelease(elementType);
1376 if ((CFDictionaryGetTypeID()==CFGetTypeID(elementType)) && !isElementCached && (fElements[index].type==kIOHIDElementTypeCollection))
1386 copyMatchingElements(tempMatchingDict, &tempSubElements, elementType, elementCache, options);
1390 CFDictionarySetValue((CFMutableDictionaryRef)elementType, CFSTR(kIOHIDElementKey), tempSubElements);
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DType.cpp695 ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements) { argument
696 Type *ElementType = const_cast<Type*>(elementType);
722 VectorType *VectorType::get(Type *elementType, unsigned NumElements) { argument
723 Type *ElementType = const_cast<Type*>(elementType);
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/expat/xmlparse/
H A Dxmlparse.c1635 ELEMENT_TYPE *elementType = 0; local
1646 elementType = (ELEMENT_TYPE *)lookup(&dtd.elementTypes, tagNamePtr->str, 0);
1647 if (!elementType) {
1651 elementType = (ELEMENT_TYPE *)lookup(&dtd.elementTypes, tagNamePtr->str, sizeof(ELEMENT_TYPE));
1652 if (!elementType)
1654 if (ns && !setElementTypePrefix(parser, elementType))
1657 nDefaultAtts = elementType->nDefaultAtts;
1690 if (attId == elementType->defaultAtts[j].id) {
1691 isCdata = elementType->defaultAtts[j].isCdata;
1734 const DEFAULT_ATTRIBUTE *da = elementType
3304 setElementTypePrefix(XML_Parser parser, ELEMENT_TYPE *elementType) argument
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/xml/expat/lib/
H A Dxmlparse.c2390 ELEMENT_TYPE *elementType; local
2403 elementType = (ELEMENT_TYPE *)lookup(&dtd->elementTypes, tagNamePtr->str,0);
2404 if (!elementType) {
2408 elementType = (ELEMENT_TYPE *)lookup(&dtd->elementTypes, name,
2410 if (!elementType)
2412 if (ns && !setElementTypePrefix(parser, elementType))
2415 nDefaultAtts = elementType->nDefaultAtts;
2458 if (attId == elementType->defaultAtts[j].id) {
2459 isCdata = elementType->defaultAtts[j].isCdata;
2505 if (elementType
4814 setElementTypePrefix(XML_Parser parser, ELEMENT_TYPE *elementType) argument
[all...]
/macosx-10.9.5/apr-30/apr-util/apr-util/xml/expat/lib/
H A Dxmlparse.c2390 ELEMENT_TYPE *elementType; local
2403 elementType = (ELEMENT_TYPE *)lookup(&dtd->elementTypes, tagNamePtr->str,0);
2404 if (!elementType) {
2408 elementType = (ELEMENT_TYPE *)lookup(&dtd->elementTypes, name,
2410 if (!elementType)
2412 if (ns && !setElementTypePrefix(parser, elementType))
2415 nDefaultAtts = elementType->nDefaultAtts;
2458 if (attId == elementType->defaultAtts[j].id) {
2459 isCdata = elementType->defaultAtts[j].isCdata;
2505 if (elementType
4814 setElementTypePrefix(XML_Parser parser, ELEMENT_TYPE *elementType) argument
[all...]
/macosx-10.9.5/expat-12/expat/lib/
H A Dxmlparse.c2619 ELEMENT_TYPE *elementType; local
2632 elementType = (ELEMENT_TYPE *)lookup(&dtd->elementTypes, tagNamePtr->str,0);
2633 if (!elementType) {
2637 elementType = (ELEMENT_TYPE *)lookup(&dtd->elementTypes, name,
2639 if (!elementType)
2641 if (ns && !setElementTypePrefix(parser, elementType))
2644 nDefaultAtts = elementType->nDefaultAtts;
2687 if (attId == elementType->defaultAtts[j].id) {
2688 isCdata = elementType->defaultAtts[j].isCdata;
2734 if (elementType
5286 setElementTypePrefix(XML_Parser parser, ELEMENT_TYPE *elementType) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tdom/tdom/expat/
H A Dxmlparse.c2620 ELEMENT_TYPE *elementType; local
2633 elementType = (ELEMENT_TYPE *)lookup(&dtd->elementTypes, tagNamePtr->str,0);
2634 if (!elementType) {
2638 elementType = (ELEMENT_TYPE *)lookup(&dtd->elementTypes, name,
2640 if (!elementType)
2642 if (ns && !setElementTypePrefix(parser, elementType))
2645 nDefaultAtts = elementType->nDefaultAtts;
2688 if (attId == elementType->defaultAtts[j].id) {
2689 isCdata = elementType->defaultAtts[j].isCdata;
2735 if (elementType
5288 setElementTypePrefix(XML_Parser parser, ELEMENT_TYPE *elementType) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/library/xml/TclExpat-1.1/
H A Dxmlparse.c1183 ELEMENT_TYPE *elementType = 0; local
1190 elementType = (ELEMENT_TYPE *)lookup(&dtd.elementTypes, tagName, 0);
1191 if (elementType)
1192 nDefaultAtts = elementType->nDefaultAtts;
1226 if (attId == elementType->defaultAtts[j].id) {
1227 isCdata = elementType->defaultAtts[j].isCdata;
1255 const DEFAULT_ATTRIBUTE *da = elementType->defaultAtts + j;
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Drestsnew.cpp965 UResType elementType=tagelement.getType(); local
966 CONFIRM_EQ(elementType, (int32_t)URES_STRING);
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dcreststn.c1956 UResType elementType=ures_getType(tagelement); local
1957 CONFIRM_INT_EQ(elementType, URES_STRING);

Completed in 406 milliseconds