Searched refs:value (Results 76 - 100 of 8641) sorted by relevance

1234567891011>>

/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DVariableWatchpointSetInlines.h34 inline void VariableWatchpointSet::notifyWrite(VM& vm, JSValue value) argument
36 ASSERT(!!value);
39 m_inferredValue.set(vm, &m_symbolTable, value);
45 if (value == m_inferredValue.get())
/macosx-10.10/Libc-1044.1.2/compat-43/FreeBSD/
H A Dgethostid.c46 int value; local
50 size = sizeof value;
51 if (sysctl(mib, 2, &value, &size, NULL, 0) == -1)
53 return (value);
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DCallbackFunction.cpp34 bool checkFunctionOnlyCallback(JSC::ExecState* exec, JSC::JSValue value, CallbackAllowedValueFlags acceptedValues) argument
36 if (value.isUndefined() && (acceptedValues & CallbackAllowUndefined))
39 if (value.isNull() && (acceptedValues & CallbackAllowNull))
43 if (getCallData(value, callData) == JSC::CallTypeNone) {
H A DJSElementCustom.h34 ALWAYS_INLINE JSElement* jsElementCast(JSC::JSValue value) argument
36 if (UNLIKELY(!value.isCell()))
38 return value.asCell()->type() >= JSElementType ? JSC::jsCast<JSElement*>(value) : nullptr;
H A DJSAudioTrackCustom.cpp43 void JSAudioTrack::setKind(ExecState* exec, JSValue value) argument
46 const String& nativeValue(value.isEmpty() ? String() : value.toString(exec)->value(exec));
52 UNUSED_PARAM(value);
56 void JSAudioTrack::setLanguage(ExecState* exec, JSValue value) argument
59 const String& nativeValue(value.isEmpty() ? String() : value.toString(exec)->value(exec));
65 UNUSED_PARAM(value);
[all...]
H A DJSTextTrackCustom.cpp44 void JSTextTrack::setKind(ExecState* exec, JSValue value) argument
48 const String& nativeValue(value.isEmpty() ? String() : value.toString(exec)->value(exec));
53 UNUSED_PARAM(value);
58 void JSTextTrack::setLanguage(ExecState* exec, JSValue value) argument
62 const String& nativeValue(value.isEmpty() ? String() : value.toString(exec)->value(exec));
67 UNUSED_PARAM(value);
[all...]
H A DJSVideoTrackCustom.cpp43 void JSVideoTrack::setKind(ExecState* exec, JSValue value) argument
47 const String& nativeValue(value.isEmpty() ? String() : value.toString(exec)->value(exec));
52 UNUSED_PARAM(value);
57 void JSVideoTrack::setLanguage(ExecState* exec, JSValue value) argument
61 const String& nativeValue(value.isEmpty() ? String() : value.toString(exec)->value(exec));
66 UNUSED_PARAM(value);
[all...]
/macosx-10.10/WebCore-7600.1.25/html/
H A DURLInputType.cpp46 bool URLInputType::typeMismatchFor(const String& value) const
48 return !value.isEmpty() && !URL(URL(), value).isValid();
53 return typeMismatchFor(element().value());
/macosx-10.10/cups-408/cups/ppdc/
H A Dppdc-variable.cxx19 // ppdcVariable::set_value() - Set the value of a variable.
40 value = new ppdcString(v);
53 value->release();
58 // 'ppdcVariable::set_value()' - Set the value of a variable.
64 value->release();
65 value = new ppdcString(v);
/macosx-10.10/ksh-23/ksh/src/lib/libast/include/
H A Dnamval.h27 * common name-value struct support
36 int value; member in struct:__anon9334
/macosx-10.10/postfix-255/postfix/src/util/
H A Dnvtable.c12 /* char *value;
20 /* NVTABLE_INFO *nvtable_update(table, key, value)
23 /* const char *value;
51 /* of a unique string-valued lookup key and a string value.
56 /* nvtable_update() stores or updates a (key, value) pair in the specified
58 /* value are copied.
60 /* nvtable_find() returns the value that was stored under the given key,
62 /* a null value from a non-existent value, use nvtable_locate().
109 /* nvtable_update - update or enter (key, value) pai
111 nvtable_update(NVTABLE * table, const char *key, const char *value) argument
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/Statements/
H A Ddowhile-003.js30 function DoWhileObject( value, iterations, endvalue ) {
31 this.value = value;
40 object.value = --object.value;
44 } while( object.value );
55 "object.value",
57 Number( object.value )
/macosx-10.10/Libc-1044.1.2/stdlib/
H A Dl64a.c18 l64a(value)
19 long value;
24 int value = v; local
31 if (value < 0) {
37 for (i = 0; value != 0 && i < 6; i++) {
38 digit = value & 0x3f;
49 value >>= 6;
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DIndexedDatabaseEntryDataGridNode.js46 var value = this._entry[columnIdentifier];
48 if (value instanceof WebInspector.RemoteObject) {
49 switch (value.type) {
52 var propertiesSection = new WebInspector.ObjectPropertiesSection(value, value.description);
57 return "\"" + value.description + "\"";
60 return value.description;
/macosx-10.10/llvmCore-3425.0.34/bindings/ocaml/bitwriter/
H A Dbitwriter_ocaml.c27 CAMLprim value llvm_write_bitcode_file(value M, value Path) {
33 CAMLprim value llvm_write_bitcode_to_fd(value U, value M, value FD) {
/macosx-10.10/ICU-531.30/icuSources/layout/
H A DLESwaps.h25 #define SWAPW(value) LESwaps::swapWord((le_uint16)(value))
33 #define SWAPL(value) LESwaps::swapLong((le_uint32)(value))
48 * Reads a big-endian 16-bit word and returns a native-endian value.
51 * @param value - the word to be byte swapped
57 static le_uint16 swapWord(le_uint16 value) argument
63 return value;
65 // Reads a big-endian value on any platform.
66 const le_uint8 *p = reinterpret_cast<const le_uint8 *>(&value);
81 swapLong(le_uint32 value) argument
[all...]
/macosx-10.10/CPANInternal-159.1/Class-DBI-v3.0.17/lib/Class/DBI/Relationship/
H A DHasA.pm36 defined(my $value = $self->_attrs($col)) or return;
40 return if ref $value and $value->isa($a_class);
44 my ($inflator, $value, $want_class, $obj) = @_;
47 ? $inflator->($value, $obj)
48 : $want_class->$inflator($value);
54 $value = $get_new_value->($meths{'inflate'}, $value, $a_class, $self);
55 return $self->_attribute_store($col, $value)
56 if ref $value
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/stress/
H A Dfloat32array-out-of-bounds.js1 function make(value) {
3 result[0] = value;
13 function test(value) {
14 var result = foo(make(value), 0);
15 if (result != value)
/macosx-10.10/Libc-1044.1.2/gen/FreeBSD/
H A Dgetpagesize.c53 static int value; local
56 if (!value) {
59 size = sizeof value;
60 if (sysctl(mib, 2, &value, &size, NULL, 0) == -1)
63 return (value);
/macosx-10.10/ICU-531.30/icuSources/layoutex/
H A DLXUtilities.cpp17 le_int8 LXUtilities::highBit(le_int32 value) argument
19 if (value <= 0) {
25 if (value >= 1 << 16) {
26 value >>= 16;
30 if (value >= 1 << 8) {
31 value >>= 8;
35 if (value >= 1 << 4) {
36 value >>= 4;
40 if (value >= 1 << 2) {
41 value >>
53 search(le_int32 value, const le_int32 array[], le_int32 count) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/filters/
H A DFEColorMatrix.h59 static inline void calculateSaturateComponents(float* components, float value);
60 static inline void calculateHueRotateComponents(float* components, float value);
69 inline void FEColorMatrix::calculateSaturateComponents(float* components, float value) argument
71 components[0] = (0.213 + 0.787 * value);
72 components[1] = (0.715 - 0.715 * value);
73 components[2] = (0.072 - 0.072 * value);
74 components[3] = (0.213 - 0.213 * value);
75 components[4] = (0.715 + 0.285 * value);
76 components[5] = (0.072 - 0.072 * value);
77 components[6] = (0.213 - 0.213 * value);
82 calculateHueRotateComponents(float* components, float value) argument
[all...]
/macosx-10.10/llvmCore-3425.0.34/bindings/ocaml/transforms/ipo/
H A Dipo_ocaml.c23 CAMLprim value llvm_add_argument_promotion(LLVMPassManagerRef PM) {
29 CAMLprim value llvm_add_constant_merge(LLVMPassManagerRef PM) {
35 CAMLprim value llvm_add_dead_arg_elimination(LLVMPassManagerRef PM) {
41 CAMLprim value llvm_add_function_attrs(LLVMPassManagerRef PM) {
47 CAMLprim value llvm_add_function_inlining(LLVMPassManagerRef PM) {
53 CAMLprim value llvm_add_always_inliner_pass(LLVMPassManagerRef PM) {
59 CAMLprim value llvm_add_global_dce(LLVMPassManagerRef PM) {
65 CAMLprim value llvm_add_global_optimizer(LLVMPassManagerRef PM) {
71 CAMLprim value llvm_add_ipc_propagation(LLVMPassManagerRef PM) {
77 CAMLprim value llvm_add_prune_e
[all...]
/macosx-10.10/dyld-353.2.1/launch-cache/
H A DCacheFileAbstraction.hpp36 void set_magic(const char* value) INLINE { memcpy(fields.magic, value, 16); }
39 void set_mappingOffset(uint32_t value) INLINE { E::set32(fields.mappingOffset, value); }
42 void set_mappingCount(uint32_t value) INLINE { E::set32(fields.mappingCount, value); }
45 void set_imagesOffset(uint32_t value) INLINE { E::set32(fields.imagesOffset, value); }
48 void set_imagesCount(uint32_t value) INLINE { E::set32(fields.imagesCount, value); }
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_6/Array/
H A Dregress-304828.js45 var value; variable
49 value = '123';
53 actual = Array.prototype.join.call(value);
62 value = '123';
66 actual = Array.prototype.reverse.call(value) + '';
75 value = 'cba';
79 actual = Array.prototype.sort.call(value) + '';
88 value = 'abc';
92 actual = Array.prototype.push.call(value, 'd', 'e', 'f');
99 reportCompare('abc', value, summar
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/bfd/
H A Delf32-cr16c.c187 long value; local
221 value = bfd_get_8 (abfd, (char *) data + octets);
225 value = sword;
228 value = bfd_get_32 (abfd, (bfd_byte *) data + octets);
239 value = bfd_get_8 (abfd, (char *) data + octets);
240 left_val = value & 0xF;
241 value = (value & 0xF0) >> 4;
242 value++;
243 value <<
[all...]

Completed in 382 milliseconds

1234567891011>>