HomeSort by relevance Sort by last modified time
    Searched refs:value2 (Results 51 - 75 of 149) sorted by null

1 23 4 5 6

  /frameworks/compile/mclinker/unittests/
LEB128Test.cpp 463 uint64_t value2 = value * value; local
477 encode_size = leb128::encode<uint64_t>(result, value2);
479 ASSERT_EQ(leb128::decode<uint64_t>(buffer, decode_size), value2); local
  /external/chromium/webkit/glue/
webkitclient_impl.cc 436 const WebString& value2) {
443 values.push_back(value2);
  /device/lge/mako/camera/mm-camera-interface/
mm_omx_jpeg_encoder.c 218 void waitForEvent(int event, int value1, int value2 ){
220 ALOGV("%s:Waiting for:event=%d, value1=%d, value2=%d",
221 __func__, event, value1, value2);
223 expectedValue1 == value1 && expectedValue2 == value2)) {
227 ALOGV("%s:After cond_wait:event=%d, value1=%d, value2=%d",
228 __func__, event, value1, value2);
  /external/apache-http/src/org/apache/commons/codec/language/
DoubleMetaphone.java 222 * @param value2 The right-hand side of the encoded {@link String#equals(Object)}.
227 public boolean isDoubleMetaphoneEqual(String value1, String value2) {
228 return isDoubleMetaphoneEqual(value1, value2, false);
236 * @param value2 The right-hand side of the encoded {@link String#equals(Object)}.
242 String value2,
245 (value2, alternate));
    [all...]
  /external/chromium/base/
values_unittest.cc 309 DictionaryValue* value2; local
310 ASSERT_TRUE(dict.GetDictionaryWithoutPathExpansion("this", &value2));
311 EXPECT_EQ(value1, value2);
312 EXPECT_EQ(1U, value2->size());
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 695 Type value2 = simplePop(frame); local
698 verifyAssignable(expected, value2);
860 Type value2 = simplePop(frame); local
863 verifyAssignable(Type.INTEGER, value2);
    [all...]
  /hardware/ti/omap4xxx/camera/inc/
BaseCameraAdapter.h 51 virtual status_t sendCommand(CameraCommands operation, int value1 = 0, int value2 = 0, int value3 = 0 );
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UseCompoundDrawableRefactoring.java 414 float value2 = Float.parseFloat(matcher2.group(1)); local
415 return AdtUtils.formatFloatAttribute(value1 + value2) + unit;
  /external/webkit/Source/WebCore/css/
CSSParser.cpp 2916 RefPtr<CSSValue> value2; local
    [all...]
  /external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/
TocUpdator.pm 90 my ($key1, $value1, $key2, $value2, $result);
96 # Value1 differs from value2?
TocGenerator.pm 148 my ($key1, $value1, $key2, $value2, $result);
152 HASH2: while (($key2, $value2) = each %$aHash2) {
156 # Does value1 match criteria of value2?
157 if (defined($value1) && $value1 =~ m/$value2/) {
158 # Yes, value1 matches criteria of value2;
171 # No, value1 didn't match criteria of value2;
    [all...]
  /external/v8/src/arm/
simulator-arm.h 293 void WriteDW(int32_t addr, int32_t value1, int32_t value2);
  /hardware/ti/omap4xxx/camera/
BaseCameraAdapter.cpp 327 status_t BaseCameraAdapter::sendCommand(CameraCommands operation, int value1, int value2, int value3)
753 refTimestamp = ( struct timeval * ) value2;
911 ret = getPictureBufferSize(frame->mLength, value2);
943 ret = getFrameDataSize(frame->mLength, value2);
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/collections/
AbstractHashedMap.java 390 * @param value2 the second value extracted from the entry via <code>getValue()</code>
393 protected boolean isEqualValue(Object value1, Object value2) {
394 return (value1 == value2 || value1.equals(value2));
    [all...]
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalConstructorsTest.java 725 BigInteger value2 = new BigInteger("12334560000"); local
726 BigDecimal big2 = new BigDecimal(value2, 5);
728 big2.unscaledValue().equals(value2
    [all...]
  /external/srec/srec/test/SRecTest/src/
SRecTest.c 2433 char* value2; local
    [all...]
  /external/v8/src/mips/
simulator-mips.cc 577 int32_t value2; local
578 if (GetValue(arg1, &value1) && GetValue(arg2, &value2)) {
580 end = cur + (value2 * Instruction::kInstrSize);
699 int32_t value2; local
700 if (GetValue(arg1, &value1) && GetValue(arg2, &value2)) {
702 end = cur + (value2 * Instruction::kInstrSize);
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
SetsTest.java 474 Integer value2 = new Integer(12357);
476 assertFalse(set.contains(value2));
478 assertTrue(set.add(value2));
    [all...]
  /external/icu4c/test/intltest/
wbnf.cpp 1499 Pick * value2 = new Literal("string2"); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 
  /external/markdown/markdown/
__init__.py 512 following format: "extname(key1=value1,key2=value2)"
  /external/openssh/
servconf.c 721 int cmdline = 0, *intptr, value, value2, n; local
    [all...]
  /external/ping6/
ping6.c 1776 u_int16_t value2; local
    [all...]
  /prebuilts/tools/common/asm-tools/
asm-debug-all-4.0.jar 
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_objects_PhysicsRigidBody.cpp 414 (JNIEnv *env, jobject object, jlong bodyId, jfloat value1, jfloat value2) {
421 body->setDamping(value1, value2);
    [all...]

Completed in 1986 milliseconds

1 23 4 5 6