/external/quake/quake/src/WinQuake/ |
view.cpp | 85 float value; local 92 value = cl_rollangle.value; 94 // value *= 6; 96 if (side < cl_rollspeed.value) 97 side = side * value / cl_rollspeed.value; 99 side = value; 117 cycle = cl.time - (int)(cl.time/cl_bobcycle.value)*cl_bobcycle.value; [all...] |
/cts/tools/test-progress-new/src/testprogress2/ |
MethodOriginator.java | 57 + (String)annot.elementValues()[0].value().value(); 61 + (String)annot.elementValues()[0].value().value(); 66 info = (String)annot.elementValues()[0].value().value();
|
/dalvik/dx/src/com/android/dx/dex/code/form/ |
Form11n.java | 47 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant(); local 49 return regs.get(0).regString() + ", " + literalBitsString(value); 55 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant(); local 56 return literalBitsComment(value, 4); 98 int value = local 102 opcodeUnit(insn, makeByte(regs.get(0).getReg(), value & 0xf)));
|
Form21s.java | 47 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant(); local 49 return regs.get(0).regString() + ", " + literalBitsString(value); 55 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant(); local 56 return literalBitsComment(value, 16); 97 int value = local 102 (short) value);
|
/dalvik/libcore/nio/src/main/java/java/nio/ |
MappedByteBufferAdapter.java | 279 public ByteBuffer putChar(char value) { 282 this.wrapped.putChar(value); 288 public ByteBuffer putChar(int index, char value) { 291 this.wrapped.putChar(index, value); 296 public ByteBuffer putDouble(double value) { 299 this.wrapped.putDouble(value); 305 public ByteBuffer putDouble(int index, double value) { 308 this.wrapped.putDouble(index, value); 313 public ByteBuffer putFloat(float value) { 316 this.wrapped.putFloat(value); [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/parsers/ |
SAXParserFactoryImpl.java | 89 public void setFeature(String name, boolean value) throws SAXNotRecognizedException { 98 if (value) { 107 public void setNamespaceAware(boolean value) { 109 setFeature(NAMESPACES, value); 116 public void setValidating(boolean value) { 118 setFeature(VALIDATION, value);
|
/dalvik/libdex/ |
Leb128.c | 24 * Reads an unsigned LEB128 value, updating the given pointer to point 25 * just past the end of the read value and also indicating whether the 26 * value was syntactically valid. The only syntactically *invalid* 46 * Reads a signed LEB128 value, updating the given pointer to point 47 * just past the end of the read value and also indicating whether the 48 * value was syntactically valid. The only syntactically *invalid*
|
/external/bluetooth/glib/tests/refcount/ |
properties2.c | 39 GValue *value, 43 const GValue *value, 116 GValue *value, 126 g_value_set_int (value, test->dummy); 137 const GValue *value, 147 test->dummy = g_value_get_int (value);
|
/external/guava/src/com/google/common/collect/ |
AbstractListMultimap.java | 65 * Stores a key-value pair in the multimap. 68 * @param value value to store in the multimap 71 @Override public boolean put(@Nullable K key, @Nullable V value) { 72 return super.put(key, value); 79 * contain the same values in the same order. If the value orderings disagree,
|
/external/guava/src/com/google/common/primitives/ |
Chars.java | 49 * value. 54 * Returns a hash code for {@code value}; equal to the result of invoking 55 * {@code ((Character) value).hashCode()}. 57 * @param value a primitive {@code char} value 58 * @return a hash code for the value 60 public static int hashCode(char value) { 61 return value; 65 * Returns the {@code char} value that is equal to {@code value}, if possible [all...] |
Shorts.java | 49 * value. 54 * Returns a hash code for {@code value}; equal to the result of invoking 55 * {@code ((Short) value).hashCode()}. 57 * @param value a primitive {@code short} value 58 * @return a hash code for the value 60 public static int hashCode(short value) { 61 return value; 65 * Returns the {@code short} value that is equal to {@code value}, if possible [all...] |
/external/icu4c/data/ |
build.xml | 116 <arg name="--sourcedir" value="${env.CLDR_DIR}/common/main" /> 117 <arg name="--destdir" value="${env.ICU4C_DIR}/source/data/locales"/> 118 <arg name="--specialsdir" value="${env.ICU4C_DIR}/source/data/xml/main"/> 119 <arg name="--supplementaldir" value="${env.CLDR_DIR}/common/supplemental" /> 130 <arg name="-s" value="${env.CLDR_DIR}/common/main" /> 131 <arg name="-d" value="${env.ICU4C_DIR}/source/data/locales"/> 132 <arg name="-p" value="${env.ICU4C_DIR}/source/data/xml/main"/> 133 <arg name="-m" value="${env.CLDR_DIR}/common/supplemental" /> 134 <arg name="-w" value="${env.CLDR_DIR}/common/main" /> 183 <arg name="--sourcedir" value="${env.CLDR_DIR}/common/collation" / [all...] |
/external/ppp/pppd/plugins/radius/ |
dict.c | 50 int value; local 75 if (sscanf(buffer, "%s%s%d", dummystr, namestr, &value) != 3) { 96 vdict->vendorcode = value; 138 error("rc_read_dictionary: invalid value on line %d of dictionary %s", 143 value = atoi (valstr); 196 attr->value = value; 208 else if (strncmp (buffer, "VALUE", 5) == 0) 210 /* Read the VALUE line */ 214 error("rc_read_dictionary: invalid value entry on line %d of dictionary %s" [all...] |
radattr.c | 59 * vp -- linked-list of RADIUS attribute-value pairs 64 * file contains "name value" pairs. 72 char value[2048]; local 83 if (rc_avpair_tostr(vp, name, sizeof(name), value, sizeof(value)) < 0) { 86 fprintf(fp, "%s %s\n", name, value);
|
/external/proguard/src/proguard/optimize/ |
ConstantParameterFilter.java | 26 import proguard.evaluation.value.Value; 71 Value value = StoringInvocationUnit.getMethodParameterValue(programMethod, index); local 72 if (value != null && 73 value.isParticular())
|
/external/qemu/distrib/sdl-1.2.12/src/audio/dma/ |
SDL_dmaaudio.c | 254 int value; local 281 value = format; 282 if ( (ioctl(audio_fd, SNDCTL_DSP_SETFMT, &value) < 0) || 283 (value != format) ) { 289 value = (spec->channels > 1); 291 (value != stereo) ) { 297 value = spec->freq; 298 if ( ioctl(audio_fd, SNDCTL_DSP_SPEED, &value) < 0 ) { 302 spec->freq = value; 313 int value; local [all...] |
/external/skia/include/core/ |
SkReader32.h | 58 int32_t value = *(const int32_t*)fCurr; local 59 fCurr += sizeof(value); 61 return value; 66 SkScalar value = *(const SkScalar*)fCurr; local 67 fCurr += sizeof(value); 69 return value;
|
/external/skia/src/views/ |
SkProgressView.cpp | 32 void SkProgressView::setValue(U16CPU value) 34 if (fValue != value) 43 x = (SkScalar)(value << 8); 46 fValue = SkToU16(value); 73 U16CPU value = SkMax32(0, SkMin32(fValue, fMax)); local 74 percent = SkFixedDiv(value, fMax);
|
/external/srec/shared/src/ |
CommandLine.c | 23 LCHAR* key, LCHAR* value, size_t* len) 31 /* got value */ 47 LSTRCPY(value, *argv); 58 LSTRCPY(value, L("")); 65 /* Handle case where last argument is a key with no value */ 69 LSTRCPY(value, L(""));
|
/external/srec/srec/EventLog/include/ |
SR_EventLogImpl.h | 76 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_Token(SR_EventLog* self, const LCHAR* token, const LCHAR *value); 78 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_TokenInt(SR_EventLog* self, const LCHAR* token, int value); 80 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_TokenUint16_t(SR_EventLog* self, const LCHAR* token, asr_uint16_t value); 82 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_TokenSize_t(SR_EventLog* self, const LCHAR* token, size_t value); 84 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_TokenBool(SR_EventLog* self, const LCHAR* token, ESR_BOOL value); 86 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_TokenFloat(SR_EventLog* self, const LCHAR* token, float value);
|
/external/srec/tools/grxmlcompile/ |
hashmap.h | 36 bool insert( T1 const & index, T2 const & value); 40 bool getFirst( T1 *index, T2 *value ); 41 bool getNext( T1 *index, T2 *value ); 42 bool getValue( T1 const & index, T2 *value); //returns value 43 bool getIndex( T2 const & value, T1 *index ); //returns index
|
/external/stlport/stlport/stl/config/ |
_watcom.h | 112 value [eax]; 120 value [eax]; 128 value [eax]; 135 value [eax]; 138 long __stl_InterlockedExchange( long *Destination, long Value ); 144 value [eax];
|
/external/v8/test/mjsunit/regress/ |
regress-1178598.js | 32 var value = (function(){ 44 assertEquals(1, value); 49 var value = (function() { 59 assertEquals(42, value); 66 var value = (function() { 88 assertEquals(87, value);
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/ |
15.9.5.3-1-n.js | 27 The valueOf function returns a number, which is this time value. 30 its this value is not a Date object. Therefore it cannot be transferred 54 function MyObject( value ) { 55 this.value = value; 69 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/ |
10.2.3-1.js | 31 { DontDelete }. The caller provides the this value. If the this value 33 null), then the this value is the global object. 72 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "; 78 function MyFunction( value ) { 81 function MyObject( value ) {
|