Searched refs:value (Results 226 - 250 of 8718) sorted by relevance

1234567891011>>

/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/ntlm/
H A Dinquire_sec_context_by_oid.c58 gss_buffer_desc value; local
65 value.length = ctx->sessionkey.length;
66 value.value = ctx->sessionkey.data;
69 &value,
81 gss_buffer_desc value; local
89 value.length = sizeof(num);
90 value.value = #
93 &value,
[all...]
/macosx-10.9.5/OpenSSH-186/osslshim/ossl-asn1/
H A Dcs-a-type.c75 if ((a->value.ptr != NULL) || (a->type == V_ASN1_NULL))
81 void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value) argument
83 if (a->value.ptr != NULL)
89 a->value.ptr=value;
92 int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value) argument
94 if (!value || (type == V_ASN1_BOOLEAN))
96 void *p = (void *)value;
102 odup = OBJ_dup(value);
110 sdup = ASN1_STRING_dup((ASN1_STRING *)value);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSDOMFormDataCustom.cpp44 static HTMLFormElement* toHTMLFormElement(JSC::JSValue value) argument
46 return value.inherits(&JSHTMLFormElement::s_info) ? static_cast<HTMLFormElement*>(jsCast<JSHTMLFormElement*>(asObject(value))->impl()) : 0;
63 String name = exec->argument(0).toString(exec)->value(exec);
64 JSValue value = exec->argument(1); local
65 if (value.inherits(&JSBlob::s_info)) {
68 filename = exec->argument(2).toString(exec)->value(exec);
69 impl()->append(name, toBlob(value), filename);
71 impl()->append(name, value.toString(exec)->value(exe
[all...]
H A DArrayValue.cpp41 ArrayValue::ArrayValue(JSC::ExecState* exec, JSC::JSValue value) argument
44 if (!value.isUndefinedOrNull() && isJSArray(value))
45 m_value = value;
70 bool ArrayValue::get(size_t index, Dictionary& value) const
79 value = Dictionary(m_exec, indexedValue);
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebNSDictionaryExtras.h34 - (NSString *)_webkit_stringForKey:(id)key; // Returns nil if the value is not an NSString.
35 - (NSArray *)_webkit_arrayForKey:(id)key; // Returns nil if the value is not an NSArray.
42 - (void)_webkit_setInt:(int)value forKey:(id)key;
43 - (void)_webkit_setFloat:(float)value forKey:(id)key;
44 - (void)_webkit_setBool:(BOOL)value forKey:(id)key;
45 - (void)_webkit_setLongLong:(long long)value forKey:(id)key;
46 - (void)_webkit_setUnsignedLongLong:(unsigned long long)value forKey:(id)key;
/macosx-10.9.5/ncurses-42/ncurses/ncurses/tinfo/
H A DMKcodes.awk29 function large_item(value) {
31 offset = offset + length(value) + 1;
39 bigstr = bigstr sprintf("\"%s\\0\" ", value);
40 bigcol = bigcol + length(value) + 5;
48 function small_item(value) {
49 return sprintf("\t\t\"%s\",\n", value);
52 function print_strings(name,value) {
54 print value
60 function print_offsets(name,value) {
62 printf "%s", value
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/
H A DIDLParser.pm90 value => '$', # Constant value
102 value => '$' # value of token
118 $emptyToken->value("empty");
135 my $value = shift;
137 my $msg = "Next token should be " . $value . ", but " . $token->value() . " at " . $self->{Line};
141 die $msg unless $token->value() eq $value;
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/test/
H A Dspecialtypecodes.m125 -(NSObject*)BOOLArrayOf4In:(BOOL*)value
128 [NSNumber numberWithInt:(int)value[0]],
129 [NSNumber numberWithInt:(int)value[1]],
130 [NSNumber numberWithInt:(int)value[2]],
131 [NSNumber numberWithInt:(int)value[3]],
135 -(void)BOOLArrayOf4Out:(BOOL*)value
139 value[0] = YES;
140 value[1] = NO;
141 value[2] = YES;
142 value[
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/test/
H A Dspecialtypecodes.m125 -(NSObject*)BOOLArrayOf4In:(BOOL*)value
128 [NSNumber numberWithInt:(int)value[0]],
129 [NSNumber numberWithInt:(int)value[1]],
130 [NSNumber numberWithInt:(int)value[2]],
131 [NSNumber numberWithInt:(int)value[3]],
135 -(void)BOOLArrayOf4Out:(BOOL*)value
139 value[0] = YES;
140 value[1] = NO;
141 value[2] = YES;
142 value[
[all...]
/macosx-10.9.5/CF-855.17/
H A DCFBag.h36 typedef const void * (*CFBagRetainCallBack)(CFAllocatorRef allocator, const void *value);
37 typedef void (*CFBagReleaseCallBack)(CFAllocatorRef allocator, const void *value);
38 typedef CFStringRef (*CFBagCopyDescriptionCallBack)(const void *value);
40 typedef CFHashCode (*CFBagHashCallBack)(const void *value);
55 typedef void (*CFBagApplierFunction)(const void *value, void *context);
79 CFIndex CFBagGetCountOfValue(CFBagRef theBag, const void *value);
82 Boolean CFBagContainsValue(CFBagRef theBag, const void *value);
85 const void *CFBagGetValue(CFBagRef theBag, const void *value);
88 Boolean CFBagGetValueIfPresent(CFBagRef theBag, const void *candidate, const void **value);
97 void CFBagAddValue(CFMutableBagRef theBag, const void *value);
[all...]
H A DCFSet.h44 @param value The value to retain.
45 @result The value to store in the set, which is usually the value
47 value if a different value should be stored in the set.
49 typedef const void * (*CFSetRetainCallBack)(CFAllocatorRef allocator, const void *value);
55 @param value The value to release.
57 typedef void (*CFSetReleaseCallBack)(CFAllocatorRef allocator, const void *value);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLLIElement.cpp60 void HTMLLIElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
63 if (value == "a")
65 else if (value == "A")
67 else if (value == "i")
69 else if (value == "I")
71 else if (value == "1")
74 addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, value);
76 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
79 void HTMLLIElement::parseAttribute(const QualifiedName& name, const AtomicString& value) argument
83 parseValue(value);
117 parseValue(const AtomicString& value) argument
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebPreferences.h37 void set##KeyUpper(const Type& value); \
68 void set##KeyUpper(const Type& value); \
89 void updateStringValueForKey(const String& key, const String& value);
90 void updateBoolValueForKey(const String& key, bool value);
91 void updateUInt32ValueForKey(const String& key, uint32_t value);
92 void updateDoubleValueForKey(const String& key, double value);
93 void updateFloatValueForKey(const String& key, float value);
94 void platformUpdateStringValueForKey(const String& key, const String& value);
95 void platformUpdateBoolValueForKey(const String& key, bool value);
96 void platformUpdateUInt32ValueForKey(const String& key, uint32_t value);
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_transform/lib/
H A DSecCollectTransform.cpp73 ^(SecTransformStringOrAttributeRef attribute, CFTypeRef value)
78 if (NULL == value && 0 == len)
83 return value;
87 if (value && isSameType && len > 0)
89 isSameType = CFGetTypeID(CFArrayGetValueAtIndex(allValues, 0)) == CFGetTypeID(value);
92 if (value)
95 if (CFGetTypeID(value) == CFErrorGetTypeID())
98 kSecTransformMetaAttributeValue, value);
100 return value;
105 if (CFGetTypeID(value)
[all...]
/macosx-10.9.5/WebKit-7537.78.2/qt/Api/
H A Dqwebsettings.cpp98 QString family = fontFamilies.value(QWebSettings::StandardFont,
99 global->fontFamilies.value(QWebSettings::StandardFont));
102 family = fontFamilies.value(QWebSettings::FixedFont,
103 global->fontFamilies.value(QWebSettings::FixedFont));
106 family = fontFamilies.value(QWebSettings::SerifFont,
107 global->fontFamilies.value(QWebSettings::SerifFont));
110 family = fontFamilies.value(QWebSettings::SansSerifFont,
111 global->fontFamilies.value(QWebSettings::SansSerifFont));
114 family = fontFamilies.value(QWebSettings::CursiveFont,
115 global->fontFamilies.value(QWebSetting
138 bool value = attributes.value(QWebSettings::AutoLoadImages, local
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/ldapc++/src/
H A DTlsOptions.cpp55 void TlsOptions::setOption( tls_option opt, const std::string& value ) const {
57 this->setOption( opt, value.empty() ? NULL : (void*) value.c_str() );
60 void TlsOptions::setOption( tls_option opt, int value ) const {
62 this->setOption( opt, (void*) &value);
65 void TlsOptions::setOption( tls_option opt, void *value ) const {
66 int ret = ldap_set_option( m_ld, optmap[opt].optval, value);
78 void TlsOptions::getOption( tls_option opt, void* value ) const {
79 int ret = ldap_get_option( m_ld, optmap[opt].optval, value);
91 int value; local
98 char *value; local
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/cpu/
H A Dm32r.opc53 #define CGEN_DIS_HASH(buffer, value) \
60 #define CGEN_DIS_HASH(buffer, value) m32r_cgen_dis_hash (buffer, value)
69 m32r_cgen_dis_hash (const char * buf ATTRIBUTE_UNUSED, CGEN_INSN_INT value)
73 if (value & 0xffff0000) /* 32bit instructions. */
74 value = (value >> 16) & 0xffff;
76 x = (value >> 8) & 0xf0;
81 return x | ((value >> 8) & 0x0f);
84 return x | ((value
[all...]
/macosx-10.9.5/pdisk-9/
H A Dlayout_dump.c72 long value; local
78 value = strlen(entry->name);
79 if (value > max_name) {
80 max_name = value;
97 value = 0;
99 value = value << 8;
100 value |= ((unsigned char *)buffer)[i];
113 value = (((unsigned char *)buffer)[entry->byte_offset]
120 printf("0x%x\n", (unsigned int) value);
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/webrick/
H A Dcookie.rb27 # The cookie value
29 attr_accessor :value
63 # Creates a new cookie with the given +name+ and +value+
65 def initialize(name, value)
67 @value = value
76 # a false value to disable expiration or a Time or HTTP format time string
95 ret << @name << "=" << @value
141 key, value = first_elem.split(/=/, 2)
142 cookie = new(key, HTTPUtils.dequote(value))
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DSVGCSSParser.cpp41 CSSParserValue* value = m_valueList->current(); local
42 if (!value)
45 int id = value->id;
51 /* The comment to the right defines all valid value of these
68 valid_primitive = validUnit(value, FLength | FPercent, SVGAttributeMode);
93 else if (value->unit == CSSPrimitiveValue::CSS_URI) {
94 parsedValue = CSSPrimitiveValue::create(value->string, CSSPrimitiveValue::CSS_URI);
107 valid_primitive = validUnit(value, FNumber | FNonNeg, SVGAttributeMode);
120 case CSSPropertyStrokeOpacity: // <opacity-value> | inherit
124 valid_primitive = (!id && validUnit(value, FNumbe
292 CSSValue* value = m_parsedProperties.last().value(); local
332 CSSParserValue* value = m_valueList->current(); local
[all...]
/macosx-10.9.5/CPANInternal-140/Clone/t/
H A Dtied.pl71 my ($key, $value) = @_;
72 $self->{$key} = $value;
102 my ($idx, $value) = @_;
103 $self->[$idx] = $value;
127 my ($value) = @_;
128 $$self = $value;
/macosx-10.9.5/IOGraphics-471.92.1/tools/
H A Dsetaggro.c28 unsigned long value; local
32 fprintf(stderr, "%s value\n", argv[0]);
43 value = strtol(argv[1], 0, 0);
46 err = IOPMSetAggressiveness( connect, kIOFBLowPowerAggressiveness, value );
47 fprintf(stderr, "IOPMSetAggressiveness(kIOFBLowPowerAggressiveness, %lx) result %x\n", value, err);
49 err = IOPMSetAggressiveness( connect, kIODisplayDimAggressiveness, value );
50 fprintf(stderr, "IOPMSetAggressiveness(kIODisplayDimAggressiveness, %lx) result %x\n", value, err);
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma_2/Statements/
H A Dtry-007.js57 function TryObject( value, fun, exception ) {
58 this.value = value;
62 this.valueOf = function () { return this.value; }
86 (object.exception ? EXCEPTION_STRING +": " + object.value : object.value),
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dtypedvalue.h54 void operator = (const V &value);
66 Value &value() { return mValue; } function in class:Security::TypedValue
68 void operator = (const Value &value) { mValue = value; } argument
79 void GenericValue::operator = (const Value &value) argument
80 { safer_cast<TypedValue<Value> &>(*this) = value; }
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dtypedvalue.h54 void operator = (const V &value);
66 Value &value() { return mValue; } function in class:Security::TypedValue
68 void operator = (const Value &value) { mValue = value; } argument
79 void GenericValue::operator = (const Value &value) argument
80 { safer_cast<TypedValue<Value> &>(*this) = value; }

Completed in 290 milliseconds

1234567891011>>