/external/icu4c/i18n/ |
winnmfmt.h | 53 * @param number The value to be formatted. 68 * @param number The value to be formatted. 83 * @param number The value to be formatted. 105 * new value for maximumFractionDigits is less than the current value 107 * the new value. 108 * @param newValue the new value to be set. 117 * new value for minimumFractionDigits exceeds the current value 119 * the new value [all...] |
/external/icu4c/test/intltest/ |
calcasts.h | 49 * @param value expected value 53 UBool checkField(Calendar *cal, UCalendarDateFields field, int32_t value, UErrorCode &status);
|
nmfmtrt.h | 39 void test(NumberFormat *fmt, double value); 40 void test(NumberFormat *fmt, int32_t value); 41 void test(NumberFormat *fmt, const Formattable& value);
|
/external/iptables/extensions/ |
libipt_ULOG.man | 12 Default value is 1. 19 Number of bytes to be copied to userspace. A value of 0 always copies 23 Number of packet to queue inside kernel. Setting this value to, e.g. 10
|
/external/kernel-headers/original/linux/ |
xattr.h | 13 #define XATTR_CREATE 0x1 /* set value, fail if attr already exists */ 14 #define XATTR_REPLACE 0x2 /* set value, fail if attr does not exist */ 49 int generic_setxattr(struct dentry *dentry, const char *name, const void *value, size_t size, int flags);
|
/external/opencore/engines/common/include/ |
pv_engine_types.h | 88 * @param aCmdType The command type value for this command. The value is an engine-specific 32-bit value. 117 * This function returns the stored command type value. 119 * @returns The signed 32-bit command type value for this command. 127 * This function returns the stored command ID value. 129 * @returns The PVCommandId value for this command. 235 * @param aCmdType The command type value for this command. The value is an engine-specific 32-bit value [all...] |
/external/oprofile/daemon/ |
opd_extended.h | 57 * @param value: commandline input option string 61 extern int opd_ext_initialize(char const * value); 80 * Get event struct opd_event from the counter index value.
|
/external/proguard/build/ |
build.xml | 8 <property name = "src" value = "src"/> 9 <property name = "classes" value = "classes"/> 10 <property name = "lib" value = "lib"/> 12 <property name = "ant.jar" value = "${ant.home}/lib/ant.jar"/> 13 <property name = "wtk.jar" value = "${wtk.home}/wtklib/kenv.jar"/> 25 <compilerarg value = "-Xlint:none"/> 49 <compilerarg value = "-Xlint:none"/> 73 <compilerarg value = "-Xlint:none"/> 92 <fail message="Please set the value of the property ant.home in the file build/build.properties, if you want to build the optional ProGuard Ant task."> 106 <compilerarg value = "-Xlint:none"/ [all...] |
/external/proguard/src/proguard/gui/splash/ |
ConstantTiming.java | 34 * Creates a new ConstantTiming with a value of 0. 42 * Creates a new ConstantTiming with a given value. 43 * @param timing the constant value of the timing.
|
/external/qemu/hw/ |
pcmcia.h | 29 void (*attr_write)(void *state, uint32_t address, uint8_t value); 31 void (*common_write)(void *state, uint32_t address, uint16_t value); 33 void (*io_write)(void *state, uint32_t address, uint16_t value);
|
/external/quake/quake/src/QW/client/ |
in_win.c | 679 if (m_filter.value)
693 mouse_x *= sensitivity.value;
694 mouse_y *= sensitivity.value;
697 if ( (in_strafe.state & 1) || (lookstrafe.value && (in_mlook.state & 1) ))
698 cmd->sidemove += m_side.value * mouse_x;
700 cl.viewangles[YAW] -= m_yaw.value * mouse_x;
707 cl.viewangles[PITCH] += m_pitch.value * mouse_y;
716 cmd->upmove -= m_forward.value * mouse_y;
718 cmd->forwardmove -= m_forward.value * mouse_y;
900 if( joy_advanced.value == 0.0) [all...] |
/external/quake/quake/src/WinQuake/ |
in_win.cpp | 683 if (m_filter.value)
697 mouse_x *= sensitivity.value;
698 mouse_y *= sensitivity.value;
701 if ( (in_strafe.state & 1) || (lookstrafe.value && (in_mlook.state & 1) ))
702 cmd->sidemove += m_side.value * mouse_x;
704 cl.viewangles[YAW] -= m_yaw.value * mouse_x;
711 cl.viewangles[PITCH] += m_pitch.value * mouse_y;
720 cmd->upmove -= m_forward.value * mouse_y;
722 cmd->forwardmove -= m_forward.value * mouse_y;
907 if( joy_advanced.value == 0.0) [all...] |
/external/skia/src/animator/ |
SkAnimatorScript2.cpp | 60 boxedValue->value = operand->fS32; 65 boxedValue->value = operand->fScalar; 103 virtual bool getConstValue(const char* name, int len, SkOperand2* value) { 104 return SkAnimatorScript2::MapEnums(fTokens, name, len, &value->fS32); 112 // if any other type, return original value 137 SkScriptValue2 value; local 138 return engine.evaluateScript(&script, &value); 139 SkASSERT(value.fType == fEngine->getReturnType()); 140 *answer = value.fOperand; 208 bool invoke(size_t ref, void* object, SkOperand2* value) { 588 SkScriptValue2 value; local [all...] |
SkDisplayInput.cpp | 48 bool SkInput::getProperty(int index, SkScriptValue* value) const { 51 value->fType = SkType_Boolean; 52 value->fOperand.fS32 = fInt != (int) SK_NaN32 ||
|
SkDisplayNumber.cpp | 42 bool SkDisplayNumber::getProperty(int index, SkScriptValue* value) const { 64 value->fOperand.fScalar = constant; 65 value->fType = SkType_Float;
|
SkDrawText.cpp | 58 bool SkText::getProperty(int index, SkScriptValue* value) const { 60 value->fType = SkType_Int; 61 value->fOperand.fS32 = (int32_t) text.size();
|
/external/skia/src/views/ |
SkStackViewLayout.cpp | 65 ignore its current value but increment the counter for flexChildren 183 const char* value = dom.findAttr(node, attr); local 184 if (value) 185 SkDebugf("unknown attribute %s=\"%s\"\n", attr, value); 194 SkScalar value[4]; local 201 if (dom.findScalars(node, "margin", value, 4)) 204 margin.set(value[0], value[1], value[2], value[3]) [all...] |
/external/srec/tools/grxmlcompile/ |
hashmap.cpp | 51 bool HashMap<T1,T2>::insert( T1 const & index, T2 const & value) 54 pair<typename std::map<T1,T2>::iterator,bool> result = m_Map.insert( make_pair(index, value) ); 86 bool HashMap<T1,T2>::getIndex( T2 const & value, T1 *index ) 88 //do something with all elements having a certain value 91 if (pos->second == value) { 100 bool HashMap<T1,T2>::getFirst( T1 *index, T2 *value ) 105 //do something with all elements having a certain value 109 *value= m_pPos->second; 114 bool HashMap<T1,T2>::getNext( T1 *index, T2 *value ) 123 *value= m_pPos->second [all...] |
/external/v8/src/ |
conversions.h | 38 // integer value is outside the range of type int. 72 // Returns the value (0 .. 15) of a hexadecimal character c. 73 // If c is not a legal hexadecimal character, returns a value < 0. 92 // Converts a string into a double value according to ECMA-262 9.3.1 97 int StringToInt(String* str, int index, int radix, double* value); 98 int StringToInt(const char* str, int index, int radix, double* value); 100 // Converts a double to a string value according to ECMA-262 9.8.1. 103 const char* DoubleToCString(double value, Vector<char> buffer); 111 char* DoubleToFixedCString(double value, int f); 112 char* DoubleToExponentialCString(double value, int f) [all...] |
/external/webkit/JavaScriptCore/assembler/ |
MacroAssemblerCodeRef.h | 71 explicit FunctionPtr(FunctionType* value) 75 : m_value((void*)(value)) 77 : m_value(reinterpret_cast<void*>(value)) 83 void* value() const { return m_value; } function in class:JSC::FunctionPtr 104 explicit ReturnAddressPtr(void* value) 105 : m_value(value) 111 : m_value(function.value()) 116 void* value() const { return m_value; } function in class:JSC::ReturnAddressPtr 132 explicit MacroAssemblerCodePtr(void* value) 135 : m_value(reinterpret_cast<char*>(value) + 1 [all...] |
/external/webkit/JavaScriptCore/runtime/ |
BooleanObject.h | 43 inline BooleanObject* asBooleanObject(JSValue value) 45 ASSERT(asObject(value)->inherits(&BooleanObject::info)); 46 return static_cast<BooleanObject*>(asObject(value));
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/ |
number-001.js | 6 If the radix is the number 10 or not supplied, then this number value is 7 given as an argument to the ToString operator; the resulting string value 14 this value is not a Number object. Therefore it cannot be transferred to
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
try-005.js | 42 function TryToCatch( value, expect ) { 44 result = Eval( value ); 51 "eval( " + value +" )",
|
/external/webkit/WebCore/bindings/v8/ |
V8WorkerContextEventListener.cpp | 80 v8::Handle<v8::Value> jsEvent = toV8(event); 107 v8::Local<v8::Value> returnValue; 118 v8::Handle<v8::Value> parameters[3] = { v8String(message), v8String(url), v8::Integer::New(lineNumber) }; 135 v8::Local<v8::Value> V8WorkerContextEventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event) 140 return v8::Local<v8::Value>(); 142 v8::Handle<v8::Value> parameters[1] = { jsEvent }; 143 v8::Local<v8::Value> result = handlerFunction->Call(receiver, 1, parameters); 159 v8::Handle<v8::Value> value = V8DOMWrapper::convertEventTargetToV8Object(target) local [all...] |
/external/webkit/WebCore/bindings/v8/custom/ |
V8HTMLOptionsCollectionCustom.cpp | 47 v8::Handle<v8::Value> V8HTMLOptionsCollection::removeCallback(const v8::Arguments& args) 55 v8::Handle<v8::Value> V8HTMLOptionsCollection::addCallback(const v8::Arguments& args) 88 v8::Handle<v8::Value> V8HTMLOptionsCollection::lengthAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) 96 void V8HTMLOptionsCollection::lengthAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) 100 double v = value->NumberValue(); 112 imp->setLength(value->Uint32Value(), ec); 117 v8::Handle<v8::Value> V8HTMLOptionsCollection::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info) 129 v8::Handle<v8::Value> V8HTMLOptionsCollection::indexedPropertySetter(uint32_t index, v8::Local<v8::Value> value, const v8::AccessorInfo& info [all...] |