Searched refs:value2 (Results 1 - 25 of 82) sorted by relevance

1234

/macosx-10.10.1/ruby-106/ruby/test/cgi/
H A Dtest_cgi_session.rb28 value2="\x8F\xBC\x8D]"
29 value2.force_encoding("SJIS") if defined?(::Encoding)
34 session["key2"]=value2
36 assert_equal(value2,session["key2"])
53 assert_equal(value2,session["key2"])
66 value2="\x8F\xBC\x8D]"
67 value2.force_encoding("SJIS") if defined?(::Encoding)
72 session["key2"]=value2
74 assert_equal(value2,session["key2"])
91 assert_equal(value2,sessio
[all...]
/macosx-10.10.1/bootp-298/bootplib/
H A DNICache.h44 void * value2; member in struct:PLCacheEntry
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/examples/controlwidget/
H A Ddemo-voltmeter.tcl18 ::controlwidget::voltmeter .t2 -variable value2 -labels { 0 {} 2.5 {} 5 } \
21 scale .s2 -command "set ::value2" -variable value2
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DTimelineDataGrid.js326 var value2 = node2.data[sortColumnIdentifier]; variable
328 if (typeof value1 === "number" && typeof value2 === "number") {
329 if (isNaN(value1) && isNaN(value2))
333 if (isNaN(value2))
335 return (value1 - value2) * sortDirection;
338 if (typeof value1 === "string" && typeof value2 === "string")
339 return value1.localeCompare(value2) * sortDirection;
341 if (value1 instanceof WebInspector.CallFrame || value2 instanceof WebInspector.CallFrame) {
344 value2 = value2
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dtrie2test.c114 uint32_t value, value2; local
133 value2=UTRIE2_GET16_FROM_U16_SINGLE_LEAD(trie, start);
135 value2=UTRIE2_GET32_FROM_U16_SINGLE_LEAD(trie, start);
137 if(value!=value2) {
139 typeName, testName, (long)start, (long)value2, (long)value);
144 value2=UTRIE2_GET16_FROM_SUPP(trie, start);
146 value2=UTRIE2_GET32_FROM_SUPP(trie, start);
148 if(value!=value2) {
150 typeName, testName, (long)start, (long)value2, (long)value);
154 value2
489 uint32_t value, value2; local
733 uint32_t value, value2; local
1378 uint32_t value1, value2; local
1397 uint32_t value1, value2; local
[all...]
H A Dtrietest.c264 uint32_t value, value2; local
380 value2=UTRIE_GET32_FROM_BMP(&trie, start);
382 value2=UTRIE_GET16_FROM_BMP(&trie, start);
384 if(value!=value2) {
386 testName, start, value2, value);
390 value2=UTRIE_GET32_FROM_LEAD(&trie, start);
392 value2=UTRIE_GET16_FROM_LEAD(&trie, start);
394 if(value!=value2) {
396 testName, start, value2, value);
401 UTRIE_GET32(&trie, start, value2);
458 uint32_t value, value2; local
[all...]
/macosx-10.10.1/OpenAL-54/Source/OpenAL/al/
H A Dal.h432 AL_API void AL_APIENTRY alListener3f( ALenum param, ALfloat value1, ALfloat value2, ALfloat value3 );
438 AL_API void AL_APIENTRY alListener3i( ALenum param, ALint value1, ALint value2, ALint value3 );
447 AL_API void AL_APIENTRY alGetListener3f( ALenum param, ALfloat *value1, ALfloat *value2, ALfloat *value3 );
453 AL_API void AL_APIENTRY alGetListener3i( ALenum param, ALint *value1, ALint *value2, ALint *value3 );
505 AL_API void AL_APIENTRY alSource3f( ALuint sid, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3 );
511 AL_API void AL_APIENTRY alSource3i( ALuint sid, ALenum param, ALint value1, ALint value2, ALint value3 );
520 AL_API void AL_APIENTRY alGetSource3f( ALuint sid, ALenum param, ALfloat* value1, ALfloat* value2, ALfloat* value3);
526 AL_API void AL_APIENTRY alGetSource3i( ALuint sid, ALenum param, ALint* value1, ALint* value2, ALint* value3);
602 AL_API void AL_APIENTRY alBuffer3f( ALuint bid, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3 );
608 AL_API void AL_APIENTRY alBuffer3i( ALuint bid, ALenum param, ALint value1, ALint value2, ALin
[all...]
/macosx-10.10.1/IOKitUser-1050.1.21/IOServiceAuthorizeAgent/storage/
H A Dstorage.m120 CFTypeRef value2;
124 value2 = CFDictionaryGetValue( identifier2, kDADiskDescriptionVolumeUUIDKey );
126 if ( value1 && value2 == 0 )
130 else if ( value1 == 0 && value2 )
137 value2 = CFDictionaryGetValue( identifier2, kDADiskDescriptionVolumeNameKey );
139 if ( value1 && value2 == 0 )
143 else if ( value1 == 0 && value2 )
150 value2 = CFDictionaryGetValue( identifier2, kDADiskDescriptionMediaSizeKey );
152 compare = CFNumberCompare( value2, value1, 0 );
157 value2
[all...]
/macosx-10.10.1/libxml2-26/libxml2/
H A Dpattern.c158 const xmlChar *value2; /* The namespace name */ member in struct:_xmlStepOp
249 if (op->value2 != NULL)
250 xmlFree((xmlChar *) op->value2);
340 * @value2: the second value
349 xmlPatOp op, xmlChar * value, xmlChar * value2)
365 comp->steps[comp->nbStep].value2 = value2;
389 tmp = comp->steps[i].value2;
390 comp->steps[i].value2 = comp->steps[j].value2;
347 xmlPatternAdd(xmlPatParserContextPtr ctxt ATTRIBUTE_UNUSED, xmlPatternPtr comp, xmlPatOp op, xmlChar * value, xmlChar * value2) argument
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dpattern.c155 const xmlChar *value2; /* The namespace name */ member in struct:_xmlStepOp
246 if (op->value2 != NULL)
247 xmlFree((xmlChar *) op->value2);
336 * @value2: the second value
345 xmlPatOp op, xmlChar * value, xmlChar * value2)
361 comp->steps[comp->nbStep].value2 = value2;
385 tmp = comp->steps[i].value2;
386 comp->steps[i].value2 = comp->steps[j].value2;
343 xmlPatternAdd(xmlPatParserContextPtr ctxt ATTRIBUTE_UNUSED, xmlPatternPtr comp, xmlPatOp op, xmlChar * value, xmlChar * value2) argument
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_filedb/
H A DMetaAttribute.h68 virtual bool evaluate(const DbValue *value1, const DbValue *value2, CSSM_DB_OPERATOR op) const = 0;
149 bool evaluate(const DbValue *value1, const DbValue *value2, CSSM_DB_OPERATOR op) const argument
151 return (dynamic_cast<const T *>(value1))->evaluate(*dynamic_cast<const T *>(value2), op);
H A DDbIndex.cpp68 auto_ptr<DbValue> value2(metaAttribute.createValue(*key2, valueOffset2));
70 if (metaAttribute.evaluate(value1.get(), value2.get(), CSSM_DB_LESS_THAN))
73 else if (metaAttribute.evaluate(value2.get(), value1.get(), CSSM_DB_LESS_THAN))
97 auto_ptr<DbValue> value2(metaAttribute.createValue(other.mKeySection.subsection(other.mKeyRange),
100 if (metaAttribute.evaluate(value1.get(), value2.get(), CSSM_DB_LESS_THAN))
103 else if (metaAttribute.evaluate(value2.get(), value1.get(), CSSM_DB_LESS_THAN))
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_filedb/lib/
H A DMetaAttribute.h68 virtual bool evaluate(const DbValue *value1, const DbValue *value2, CSSM_DB_OPERATOR op) const = 0;
149 bool evaluate(const DbValue *value1, const DbValue *value2, CSSM_DB_OPERATOR op) const argument
151 return (dynamic_cast<const T *>(value1))->evaluate(*dynamic_cast<const T *>(value2), op);
H A DDbIndex.cpp68 auto_ptr<DbValue> value2(metaAttribute.createValue(*key2, valueOffset2));
70 if (metaAttribute.evaluate(value1.get(), value2.get(), CSSM_DB_LESS_THAN))
73 else if (metaAttribute.evaluate(value2.get(), value1.get(), CSSM_DB_LESS_THAN))
97 auto_ptr<DbValue> value2(metaAttribute.createValue(other.mKeySection.subsection(other.mKeyRange),
100 if (metaAttribute.evaluate(value1.get(), value2.get(), CSSM_DB_LESS_THAN))
103 else if (metaAttribute.evaluate(value2.get(), value1.get(), CSSM_DB_LESS_THAN))
/macosx-10.10.1/ruby-106/ruby/test/openssl/
H A Dtest_pkcs5.rb93 value2 = OpenSSL::PKCS5.pbkdf2_hmac(p, s, c, dk_len, digest)
94 assert_equal(value1, value2)
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dapachestyle.vim15 " Option value1 value2
16 " Option = value1 value2 #not apache but also allowed
/macosx-10.10.1/ruby-106/ruby/ext/psych/yaml/
H A Dreader.c194 unsigned int value = 0, value2 = 0; local
375 value2 = parser->raw_buffer.pointer[low+2]
380 if ((value2 & 0xFC00) != 0xDC00)
383 parser->offset+2, value2);
387 value = 0x10000 + ((value & 0x3FF) << 10) + (value2 & 0x3FF);
/macosx-10.10.1/libxslt-13/libxslt/libxslt/
H A Dpattern.c89 xmlChar *value2; member in struct:_xsltStepOp
191 if (op->value2 != NULL)
192 xmlFree(op->value2);
286 * @value2: the second value
295 xsltOp op, xmlChar * value, xmlChar * value2, int novar)
309 if (value2)
310 xmlFree(value2);
318 comp->steps[comp->nbStep].value2 = value2;
382 tmp = comp->steps[i].value2;
294 xsltCompMatchAdd(xsltParserContextPtr ctxt, xsltCompMatchPtr comp, xsltOp op, xmlChar * value, xmlChar * value2, int novar) argument
[all...]
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsfont.py10 def matrixEquals(self, value1, value2):
11 self.assertEquals(len(value1), len(value2))
12 for v1, v2 in zip(value1, value2):
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsfont.py10 def matrixEquals(self, value1, value2):
11 self.assertEqual(len(value1), len(value2))
12 for v1, v2 in zip(value1, value2):
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_nsfont.py21 def matrixEquals(self, value1, value2):
22 self.assertEqual(len(value1), len(value2))
23 for v1, v2 in zip(value1, value2):
/macosx-10.10.1/Security-57031.1.35/Security/authd/
H A Dauthtoken.c16 static Boolean AuthTokenEqualCallBack(const void *value1, const void *value2) argument
18 return (*(uint64_t*)value1) == (*(uint64_t*)value2);
93 _auth_token_equal(CFTypeRef value1, CFTypeRef value2) argument
96 auth_token_t auth2 = (auth_token_t)value2;
H A Dcredential.c71 _credential_equal(CFTypeRef value1, CFTypeRef value2) argument
74 credential_t cred2 = (credential_t)value2;
H A Dmechanism.c52 _mechanism_equal(CFTypeRef value1, CFTypeRef value2) argument
55 mechanism_t mech2 = (mechanism_t)value2;
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/math/
H A Dstatistics.tcl241 foreach value1 $data1 value2 $data2 {
242 if { $value1 == {} || $value2 == {} } {
246 set value2 [expr {double($value2)}]
249 set sum2 [expr {$sum2+$value2}]
251 set sumsq2 [expr {$sumsq2+$value2*$value2}]
252 set sumprod [expr {$sumprod+$value1*$value2}]
746 set value2 [lindex $data2 [expr {$idx+$delay}]]
747 if { $value1 != {} && $value2 !
[all...]

Completed in 260 milliseconds

1234