Searched refs:aField (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/bridge/c/
H A Dc_class.cpp96 Field* aField = _fields.get(name.impl()); local
97 if (aField)
98 return aField;
104 aField = new CField(ident); // deleted in the CClass destructor
105 _fields.set(name.impl(), aField);
107 return aField;
/macosx-10.9.5/AppleUSBIrDA-145.2.4/IrDA/IO/
H A DCIrDevice.cpp160 CIrDevice::ValidFrameAddress(UInt8 aField) argument
162 Boolean rc = ((aField >> 1) == kIrLAPBroadcastAddr) || ((aField >> 1) == fLAPAddr);
164 XTRACE(kLogNotOurAddress, aField, fLAPAddr);
255 UByte aField, cField; local
289 aField = buffer[0];
301 if (ValidFrameAddress(aField)) { // if packet addressed to us
304 fIrDA->GetLAP()->InputComplete(aField,cField); // then let LAP know about it (already owns "fGetBuffer")
H A DCIrDevice.h29 Boolean ValidFrameAddress(UInt8 aField); // Check address field for broadcast or our address
/macosx-10.9.5/WebCore-7537.78.1/bridge/
H A Druntime_object.cpp94 Field* aField = aClass->fieldNamed(propertyName, instance.get()); local
95 JSValue result = aField->valueFromInstance(exec, instance.get());
135 Field *aField = aClass->fieldNamed(propertyName, instance.get()); local
136 if (aField) {
179 Field *aField = aClass->fieldNamed(propertyName, instance.get()); local
180 if (aField) {
225 Field *aField = instance->getClass()->fieldNamed(propertyName, instance.get()); local
226 if (aField)
227 aField->setValueToInstance(exec, instance.get(), value);
/macosx-10.9.5/AppleUSBIrDA-145.2.4/IrDA/Stack/
H A DIrLAP.h341 void InputComplete(UByte aField, UByte cField);
H A DIrLAP.cpp3829 void TIrLAP::InputComplete(UByte aField, UByte cField) argument
3831 // Note: The aField and cField were extracted by the low level input routine (vs being
3834 // aField or the cField.
3837 // Extract the c/r bit from aField and normalize the address
3838 fRecdCR = aField & kIrLAPCommandBit;
3839 fRecdAddr = aField >> 1;

Completed in 240 milliseconds