Searched refs:value (Results 201 - 225 of 8641) sorted by relevance

1234567891011>>

/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Expressions/
H A D11.2.1-2.js54 7. Return a value of type Reference whose base object is Result(5) and
88 PROPERTY[i].value,
108 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
113 function MyObject( value ) {
114 this.value = value;
115 this.stringValue = value +"";
116 this.numberValue = Number(value);
119 function Property( object, value, string, number ) {
121 this.string = String(value);
[all...]
H A D11.2.1-3-n.js54 7. Return a value of type Reference whose base object is Result(5) and
84 PROPERTY[i].value,
104 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
109 function MyObject( value ) {
110 this.value = value;
111 this.stringValue = value +"";
112 this.numberValue = Number(value);
115 function Property( object, value, string, number ) {
117 this.string = String(value);
[all...]
H A D11.2.1-4-n.js54 7. Return a value of type Reference whose base object is Result(5) and
84 PROPERTY[i].value,
104 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
109 function MyObject( value ) {
110 this.value = value;
111 this.stringValue = value +"";
112 this.numberValue = Number(value);
115 function Property( object, value, string, number ) {
117 this.string = String(value);
[all...]
H A D11.2.1-5.js54 7. Return a value of type Reference whose base object is Result(5) and
88 PROPERTY[i].value,
108 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
113 function MyObject( value ) {
114 this.value = value;
115 this.stringValue = value +"";
116 this.numberValue = Number(value);
119 function Property( object, value, string, number ) {
121 this.string = String(value);
[all...]
H A D11.6.2-1.js59 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
68 // tests for boolean primitive, boolean object, Object object, a "MyObject" whose value is
69 // a boolean primitive and a boolean object, and "MyValuelessObject", where the value is
117 // tests for number primitive, number object, Object object, a "MyObject" whose value is
118 // a number primitive and a number object, and "MyValuelessObject", where the value is
178 function MyProtolessObject( value ) {
179 this.valueOf = new Function( "return this.value" );
181 this.value = value;
183 function MyValuelessObject(value) {
[all...]
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSXSLTProcessorCustom.cpp53 String namespaceURI = exec->uncheckedArgument(0).toString(exec)->value(exec);
54 String localName = exec->uncheckedArgument(1).toString(exec)->value(exec);
55 String value = exec->uncheckedArgument(2).toString(exec)->value(exec); local
56 impl().setParameter(namespaceURI, localName, value);
64 String namespaceURI = exec->uncheckedArgument(0).toString(exec)->value(exec);
65 String localName = exec->uncheckedArgument(1).toString(exec)->value(exec);
66 String value = impl().getParameter(namespaceURI, localName); local
67 return jsStringOrUndefined(exec, value);
74 String namespaceURI = exec->uncheckedArgument(0).toString(exec)->value(exe
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Dxstormy16-ibld.c82 unsigned long value,
99 x = (x & ~(mask << shift)) | ((value & mask) << shift);
109 WORD_OFFSET is the offset in bits from the start of the insn of the value.
110 WORD_LENGTH is the length of the word in bits in which the value resides.
124 long value,
137 /* If LENGTH is zero, this operand doesn't contribute to the value. */
159 if ((value > 0 && (unsigned long) value > maxval)
160 || value < minval)
165 value, minva
80 insert_1(CGEN_CPU_DESC cd, unsigned long value, int start, int length, int word_length, unsigned char *bufp) argument
122 insert_normal(CGEN_CPU_DESC cd, long value, unsigned int attrs, unsigned int word_offset, unsigned int start, unsigned int length, unsigned int word_length, unsigned int total_length, CGEN_INSN_BYTES_PTR buffer) argument
247 unsigned long value; local
295 put_insn_int_value(CGEN_CPU_DESC cd ATTRIBUTE_UNUSED, CGEN_INSN_BYTES_PTR buf, int length, int insn_length, CGEN_INSN_INT value) argument
434 long value, mask; local
608 long value = fields->f_hmem8; local
642 long value = fields->f_rel12; local
649 long value = fields->f_rel12a; local
656 long value = fields->f_rel8_2; local
663 long value = fields->f_rel8_4; local
749 long value; local
784 long value; local
792 long value; local
800 long value; local
808 long value; local
851 int value; local
943 bfd_vma value; local
1039 xstormy16_cgen_set_int_operand(CGEN_CPU_DESC cd ATTRIBUTE_UNUSED, int opindex, CGEN_FIELDS * fields, int value) argument
1128 xstormy16_cgen_set_vma_operand(CGEN_CPU_DESC cd ATTRIBUTE_UNUSED, int opindex, CGEN_FIELDS * fields, bfd_vma value) argument
[all...]
/macosx-10.10/swig-12/Source/Preprocessor/
H A Dexpr.c20 long value; member in struct:__anon12673
69 long op_token = stack[sp - 1].value;
74 errmsg = "Right-hand side is not value";
90 errmsg = "Left-hand side of binary operator is not a value";
100 switch (stack[sp - 1].value) {
102 stack[sp - 2].value = (Strcmp(stack[sp - 2].svalue, stack[sp].svalue) == 0);
108 stack[sp - 2].value = (Strcmp(stack[sp - 2].svalue, stack[sp].svalue) != 0);
121 stack[sp - 2].value = stack[sp - 2].value * stack[sp].value;
[all...]
/macosx-10.10/Libc-1044.1.2/regex/TRE/lib/
H A Dtre-stack.h32 /* Each tre_stack_push_*(tre_stack_t *s, <type> value) function pushes
33 `value' on top of stack `s'. Returns REG_ESPACE if out of memory.
38 type value)
53 #define STACK_PUSH(s, typetag, value) \
56 status = tre_stack_push_ ## typetag(s, value); \
60 #define STACK_PUSHX(s, typetag, value) \
62 status = tre_stack_push_ ## typetag(s, value); \
67 #define STACK_PUSHR(s, typetag, value) \
70 _status = tre_stack_push_ ## typetag(s, value); \
/macosx-10.10/WTF-7600.1.24/wtf/
H A DAtomics.cpp87 int64_t value = *addend + step; local
88 *addend = value;
91 return value;
96 int64_t __sync_add_and_fetch_8(int64_t volatile* addend, int64_t value) argument
98 return atomicStep(addend, value);
101 int64_t __sync_sub_and_fetch_8(int64_t volatile* addend, int64_t value) argument
103 return atomicStep(addend, -value);
/macosx-10.10/bind9-45.101/bind9/lib/isc/win32/
H A Dresource.c38 isc_resource_setlimit(isc_resource_t resource, isc_resourcevalue_t value) { argument
46 if (value == ISC_RESOURCE_UNLIMITED)
49 rlim_value = min(value, WIN32_MAX_OPEN_FILES);
60 isc_resource_getlimit(isc_resource_t resource, isc_resourcevalue_t *value) { argument
65 *value = WIN32_MAX_OPEN_FILES;
70 isc_resource_getcurlimit(isc_resource_t resource, isc_resourcevalue_t *value) { argument
71 return (isc_resource_getlimit(resource, value));
/macosx-10.10/ntp-92/lib/isc/win32/
H A Dresource.c38 isc_resource_setlimit(isc_resource_t resource, isc_resourcevalue_t value) { argument
46 if (value == ISC_RESOURCE_UNLIMITED)
49 rlim_value = min(value, WIN32_MAX_OPEN_FILES);
60 isc_resource_getlimit(isc_resource_t resource, isc_resourcevalue_t *value) { argument
65 *value = WIN32_MAX_OPEN_FILES;
70 isc_resource_getcurlimit(isc_resource_t resource, isc_resourcevalue_t *value) { argument
71 return (isc_resource_getlimit(resource, value));
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDEventData.h224 IOFixed x; // This quantity is used in conjunction with Y Tilt to represent the tilt away from normal of a transducer, such as a stylus. The X Tilt value represents the plane angle between the Y-Z plane and the plane containing the transducer axis and the Y axis. A positive X Tilt is to the right.
225 IOFixed y; // This value represents the angle between the X-Z and transducer-X planes. A positive Y Tilt is toward the user.
391 #define IOHIDEventValueFloat(value, isFixed) (isFixed ? value : value>>16)
392 #define IOHIDEventValueFixed(value, isFixed) (isFixed ? value : value<<16)
396 #define IOHIDEventValueFloat(value, isFixed) (isFixed ? value
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/asn1/
H A Da_mbstr.c65 int (*rfunc)(unsigned long value, void *in), void *arg);
66 static int in_utf8(unsigned long value, void *arg);
67 static int out_utf8(unsigned long value, void *arg);
68 static int type_str(unsigned long value, void *arg);
69 static int cpy_asc(unsigned long value, void *arg);
70 static int cpy_bmp(unsigned long value, void *arg);
71 static int cpy_univ(unsigned long value, void *arg);
72 static int cpy_utf8(unsigned long value, void *arg);
73 static int is_printable(unsigned long value);
246 /* This function traverses a string and passes the value o
250 traverse_string(const unsigned char *p, int len, int inform, int (*rfunc)(unsigned long value, void *in), void *arg) argument
253 unsigned long value; local
287 in_utf8(unsigned long value, void *arg) argument
297 out_utf8(unsigned long value, void *arg) argument
309 type_str(unsigned long value, void *arg) argument
328 cpy_asc(unsigned long value, void *arg) argument
340 cpy_bmp(unsigned long value, void *arg) argument
353 cpy_univ(unsigned long value, void *arg) argument
368 cpy_utf8(unsigned long value, void *arg) argument
380 is_printable(unsigned long value) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/accessibility/atk/
H A DWebKitAccessibleInterfaceValue.cpp33 static AccessibilityObject* core(AtkValue* value) argument
35 if (!WEBKIT_IS_ACCESSIBLE(value))
38 return webkitAccessibleGetAccessibilityObject(WEBKIT_ACCESSIBLE(value));
47 // Check value against range limits
48 double value; local
49 value = std::max(static_cast<double>(coreObject->minValueForRange()), newValue);
50 value = std::min(static_cast<double>(coreObject->maxValueForRange()), newValue);
52 coreObject->setValue(String::number(value));
62 // range between minimum and maximum values. Implicit value of step should be one or larger.
68 static void webkitAccessibleGetValueAndText(AtkValue* value, gdoubl argument
83 webkitAccessibleGetIncrement(AtkValue* value) argument
95 webkitAccessibleSetValue(AtkValue* value, const gdouble newValue) argument
103 webkitAccessibleGetRange(AtkValue* value) argument
118 webkitAccessibleValueGetCurrentValue(AtkValue* value, GValue* gValue) argument
128 webkitAccessibleValueGetMaximumValue(AtkValue* value, GValue* gValue) argument
138 webkitAccessibleValueGetMinimumValue(AtkValue* value, GValue* gValue) argument
148 webkitAccessibleValueSetCurrentValue(AtkValue* value, const GValue* gValue) argument
176 webkitAccessibleValueGetMinimumIncrement(AtkValue* value, GValue* gValue) argument
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/ftl/
H A DFTLValueFormat.cpp36 ValueFormat format, AssemblyHelpers& jit, GPRReg value, GPRReg scratch1, GPRReg scratch2)
40 jit.zeroExtend32ToPtr(value, value);
41 jit.or64(GPRInfo::tagTypeNumberRegister, value);
46 jit.rshift64(AssemblyHelpers::TrustedImm32(JSValue::int52ShiftAmount), value); local
48 jit.boxInt52(value, value, scratch1, FPRInfo::fpRegT0);
55 jit.boxInt52(value, value, scratch1, FPRInfo::fpRegT0);
61 jit.zeroExtend32ToPtr(value, valu
35 reboxAccordingToFormat( ValueFormat format, AssemblyHelpers& jit, GPRReg value, GPRReg scratch1, GPRReg scratch2) argument
62 jit.or32(MacroAssembler::TrustedImm32(ValueFalse), value); local
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Statements/
H A D12.6.3-4.js41 for the property name and W for the value.
44 GetPropertyName(V) for the property name and W for the value.
47 9. If Result(8) is a value completion, change C to be "normal completion
48 after value V" where V is the value carried by Result(8).
85 for ( value in o ) {
86 result += o[value];
90 "for ( value in o ) { result += o[value]",
94 var value variable
105 var value = 0; variable
138 var ob = { value:"hello" }; property in class:ob
[all...]
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c/
H A Dconfig.c45 const char *value; member in struct:var
98 PRE(var->value == NULL);
103 var->value = val;
105 var->value = var->default_value;
107 var->value = var->default_value;
109 POST(var->value != NULL);
139 const char *value; local
146 value = NULL;
147 for (var = vars; value == NULL && var->name != NULL; var++)
149 value
[all...]
/macosx-10.10/ruby-106/ruby/test/rubygems/
H A Dtest_gem_silent_ui.rb13 value = nil
16 value = @sui.ask 'Problem?'
23 assert_nil value, 'No value'
27 value = nil
30 value = @sui.ask_for_password 'Problem?'
37 assert_nil value, 'No value'
41 value = nil
55 value
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djmorecfg.h47 /* Representation of a single sample (pixel element value).
61 #define GETJSAMPLE(value) ((int) (value))
67 #define GETJSAMPLE(value) ((int) (value))
69 #define GETJSAMPLE(value) ((int) (value) & 0xFF)
86 #define GETJSAMPLE(value) ((int) (value))
95 * This should be a signed value o
[all...]
/macosx-10.10/Security-57031.1.35/Security/utilities/src/
H A Dder_number.c56 long long value = 0; local
60 value = -1; // Negative integers fill with 1s so we end up negative.
67 value <<= 8;
68 value |= *payload_byte;
72 *number = CFNumberCreate(allocator, kCFNumberLongLongType, &value);
83 static inline uint8_t byte_of(size_t byteNumber, long long value) argument
85 return value >> (8 * (byteNumber - 1));
88 static inline size_t bytes_when_encoded(long long value) argument
92 uint8_t first_byte = byte_of(bytes_encoded, value);
98 } while (bytes_encoded > 1 && (byte_of(bytes_encoded, value)
109 long long value; local
119 long long value; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/utilities/utilities/
H A Dder_number.c56 long long value = 0; local
60 value = -1; // Negative integers fill with 1s so we end up negative.
67 value <<= 8;
68 value |= *payload_byte;
72 *number = CFNumberCreate(allocator, kCFNumberLongLongType, &value);
83 static inline uint8_t byte_of(size_t byteNumber, long long value) argument
85 return value >> (8 * (byteNumber - 1));
88 static inline size_t bytes_when_encoded(long long value) argument
92 uint8_t first_byte = byte_of(bytes_encoded, value);
98 } while (bytes_encoded > 1 && (byte_of(bytes_encoded, value)
109 long long value; local
119 long long value; local
[all...]
/macosx-10.10/bc-21/bc/dc/
H A Dstring.c61 /* return a duplicate of the string in the passed value */
68 dc_dup_str DC_DECLARG((value))
69 dc_str value DC_DECLEND
73 ++value->s_refs;
74 result.v.string = value;
79 /* free an instance of a dc_str value */
81 dc_free_str DC_DECLARG((value))
82 dc_str *value DC_DECLEND
84 struct dc_string *string = *value;
92 /* Output a dc_str value
105 dc_free_str(&value); variable
[all...]
/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Dlib_tgoto.c78 int *value = param; local
108 *value %= 100;
112 *value %= 1000;
115 *value += UChar(*++string);
123 if (*value == 0) {
125 *value += 1;
128 *value = 0200; /* tputs will treat this as \0 */
131 result[used++] = (char) *value++;
146 if (*value > string[1])
147 *value
[all...]
/macosx-10.10/ruby-106/ruby/lib/rss/
H A Dconverter.rb29 def convert(value)
30 if value.is_a?(String) and value.respond_to?(:encode)
31 value.encode(@to_encoding)
33 value
39 def convert(value)
40 if value.kind_of?(String)
41 #{yield('value')}
43 value
53 def_convert(depth+1) do |value|
[all...]

Completed in 415 milliseconds

1234567891011>>