Searched refs:isSet (Results 1 - 25 of 56) sorted by relevance

123

/macosx-10.9.5/JavaScriptCore-7537.78.1/interpreter/
H A DAbstractPC.h63 bool isSet() const { return m_mode != None; } function in class:JSC::AbstractPC
64 bool operator!() const { return !isSet(); }
H A DCallFrame.cpp120 if (pc.isSet()) {
/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A DSecAKSWrappers.h67 static inline bool SecAKSLockedAnyStateBitIsSet(bool* isSet, keybag_state_t bits, CFErrorRef* error) argument
74 if (isSet)
75 *isSet = (state & bits);
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A DSecAKSWrappers.h67 static inline bool SecAKSLockedAnyStateBitIsSet(bool* isSet, keybag_state_t bits, CFErrorRef* error) argument
74 if (isSet)
75 *isSet = (state & bits);
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dinputext.h36 UBool isSet() const;
H A Dinputext.cpp71 UBool InputText::isSet() const function in class:InputText
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DResolveGlobalStatus.h69 bool isSet() const { return m_state != NoInformation; } function in class:JSC::ResolveGlobalStatus
70 bool operator!() const { return !isSet(); }
H A DCallLinkStatus.h103 bool isSet() const { return m_callTarget || m_executable || m_couldTakeSlowPath; } function in class:JSC::CallLinkStatus
105 bool operator!() const { return !isSet(); }
H A DGetByIdStatus.h79 bool isSet() const { return m_state != NoInformation; } function in class:JSC::GetByIdStatus
80 bool operator!() const { return !isSet(); }
H A DPolymorphicPutByIdList.h91 bool isSet() const { return m_type != Invalid; } function in class:JSC::PutByIdAccess
92 bool operator!() const { return !isSet(); }
101 // Using this instead of isSet() to make this assertion robust against the possibility
H A DCodeOrigin.h72 bool isSet() const { return bytecodeIndex != maximumBytecodeIndex; }
H A DPutByIdStatus.h98 bool isSet() const { return m_state != NoInformation; } function in class:JSC::PutByIdStatus
H A DCallLinkStatus.cpp128 if (!isSet()) {
H A DValueRecovery.h79 bool isSet() const { return m_technique != DontKnow; } function in class:JSC::ValueRecovery
80 bool operator!() const { return !isSet(); }
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dfldset.cpp51 if (isSet((UCalendarDateFields)i)) {
180 UBool FieldsSet::isSet(int32_t field) const { function in class:FieldsSet
211 if((inheritFrom == NULL) || !inheritFrom->isSet((UCalendarDateFields)field)) {
263 if (isSet((UCalendarDateFields)i)) {
280 if (isSet((UCalendarDateFields)i)) {
316 if(!isSet(DTS_DATE)) {
325 if(!isSet(DTS_TIME)) {
338 if(isSet(field) && U_SUCCESS(status)) {
H A Dfldset.h191 UBool isSet(int32_t field) const;
230 // UBool isSet(UCalendarDateFields field) const { return isSet((int32_t)field); }
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGEdge.h125 bool isSet() const { return !!node(); }
128 operator UnspecifiedBoolType*() const { return reinterpret_cast<UnspecifiedBoolType*>(isSet()); }
130 bool operator!() const { return !isSet(); }
H A DDFGOSRExit.cpp50 ASSERT(m_codeOrigin.isSet());
H A DDFGDisassembler.h56 ASSERT(label.isSet());
H A DDFGJITCompiler.h90 ASSERT(m_registered || !m_codeOrigin.isSet());
91 ASSERT(m_codeOrigin.isSet() == (m_exceptionCheckIndex != std::numeric_limits<unsigned>::max()));
97 ASSERT(m_registered || !m_codeOrigin.isSet());
98 ASSERT(m_codeOrigin.isSet() == (m_exceptionCheckIndex != std::numeric_limits<unsigned>::max()));
H A DDFGValueSource.h146 bool isSet() const function in class:JSC::DFG::ValueSource
/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJITDisassembler.cpp97 if (m_labelForBytecodeIndexInSlowPath[i].isSet()) {
102 return firstSlowLabel.isSet() ? firstSlowLabel : m_endOfSlowPath;
111 if (!labels[i].isSet()) {
126 if (labels[nextIndex].isSet()) {
/macosx-10.9.5/JavaScriptCore-7537.78.1/assembler/
H A DAbstractMacroAssembler.h357 bool isSet() const { return m_label.isSet(); } function in class:JSC::AbstractMacroAssembler::Label
387 bool isSet() const { return m_label.isSet(); } function in class:JSC::AbstractMacroAssembler::ConvertibleLoadLabel
410 bool isSet() const { return m_label.isSet(); } function in class:JSC::AbstractMacroAssembler::DataLabelPtr
584 bool isSet() const { return m_label.isSet(); } function in class:JSC::AbstractMacroAssembler::Jump
H A DAssemblerBuffer.h53 bool isSet() const { return (m_offset != std::numeric_limits<uint32_t>::max()); } function in struct:JSC::AssemblerLabel
/macosx-10.9.5/swig-10/Source/Modules/
H A Dr.cxx364 int OutputMemberReferenceMethod(String *className, int isSet, List *el, File *out);
413 String *name, int isSet = -1);
1025 int isSet = strcmp(ptr, "set") == 0; local
1028 OutputMemberReferenceMethod(className, isSet, el, out);
1044 isSet - a logical value indicating whether the method is for
1051 int R::OutputMemberReferenceMethod(String *className, int isSet, argument
1061 Printf(f->def, "function(x, name%s)", isSet ? ", value" : "");
1062 Printf(attr->def, "function(x, i, j, ...%s)", isSet ? ", value" : "");
1106 if (!isSet && varaccessor > 0) {
1129 "stop(\"No ", (isSet
1311 addAccessor(String *memberName, Wrapper *wrapper, String *name, int isSet) argument
[all...]

Completed in 218 milliseconds

123