Searched refs:value1 (Results 26 - 47 of 47) sorted by relevance

12

/external/webkit/Source/JavaScriptCore/runtime/
H A DLookup.cpp49 entry->initialize(identifier, values[i].attributes, values[i].value1, values[i].value2
/external/bluetooth/glib/gobject/
H A Dgparam.c715 * @value1: a #GValue of correct type for @pspec
718 * Compares @value1 with @value2 according to @pspec, and return -1, 0 or +1,
719 * if @value1 is found to be less than, equal to or greater than @value2,
726 const GValue *value1,
731 /* param_values_cmp() effectively does: value1 - value2
733 * -1) value1 < value2
734 * 0) value1 == value2
735 * 1) value1 > value2
738 g_return_val_if_fail (G_IS_VALUE (value1), 0);
740 g_return_val_if_fail (PSPEC_APPLIES_TO_VALUE (pspec, value1),
725 g_param_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
1345 default_values_cmp(GParamSpec *pspec, const GValue *value1, const GValue *value2) argument
[all...]
/external/proguard/src/proguard/evaluation/
H A DStack.java490 Value value1 = values[currentSize - 1].category1Value();
494 values[currentSize - 2] = value1;
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_codec_unittest.cc184 scoped_ptr<Value> value1(EncodeHelper(model1.get(), &enc_checksum1));
185 EXPECT_TRUE(value1.get() != NULL);
/external/icu4c/test/cintltst/
H A Dtrie2test.c1378 uint32_t value1, value2; local
1379 value1=UTRIE_GET16_FROM_LEAD(&trie1_16, lead);
1381 if(value1!=value2) {
1384 name, (long)value2, (long)value1, (long)lead);
1397 uint32_t value1, value2; local
1398 value1=UTRIE_GET32_FROM_LEAD(&trie1_32, lead);
1400 if(value1!=value2) {
1403 name, (long)value2, (long)value1, (long)lead);
/external/javassist/src/main/javassist/bytecode/analysis/
H A DExecutor.java696 Type value1 = simplePop(frame);
699 verifyAssignable(expected, value1);
700 simplePush(value1, frame);
861 Type value1 = simplePop(frame);
864 verifyAssignable(expected, value1);
865 simplePush(value1, frame);
/external/collada/src/dae/
H A DdaeElement.cpp605 string value1, value2; local
614 elt1.getAttribute(i, value1);
616 if (value1 != value2)
621 elt1.getCharData(value1);
623 if (value1 != value2)
/external/chromium/webkit/glue/
H A Dwebkitclient_impl.cc435 const WebString& value1,
442 values.push_back(value1);
/external/apache-http/src/org/apache/commons/codec/language/
H A DDoubleMetaphone.java221 * @param value1 The left-hand side of the encoded {@link String#equals(Object)}.
227 public boolean isDoubleMetaphoneEqual(String value1, String value2) { argument
228 return isDoubleMetaphoneEqual(value1, value2, false);
235 * @param value1 The left-hand side of the encoded {@link String#equals(Object)}.
241 public boolean isDoubleMetaphoneEqual(String value1, argument
244 return doubleMetaphone(value1, alternate).equals(doubleMetaphone
/external/libvpx/examples/includes/HTML-Toc-0.91/
H A DTocGenerator.pm148 my ($key1, $value1, $key2, $value2, $result);
154 # Get value1
155 $value1 = $aHash1->{$key2};
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;
/external/v8/src/arm/
H A Dsimulator-arm.cc457 int32_t value1; local
459 if (GetValue(arg1, &value1) && GetValue(arg2, &value2)) {
460 cur = reinterpret_cast<byte*>(value1);
1205 void Simulator::WriteDW(int32_t addr, int32_t value1, int32_t value2) { argument
1208 *ptr++ = value1;
1214 *ptr++ = value1;
2051 int32_t value1 = get_register(rd); local
2053 WriteDW(addr, value1, value2);
H A Dsimulator-arm.h274 void WriteDW(int32_t addr, int32_t value1, int32_t value2);
/external/chromium/base/
H A Dvalues_unittest.cc307 Value* value1; local
308 EXPECT_TRUE(dict.Get("this", &value1));
311 EXPECT_EQ(value1, value2);
/external/icu4c/i18n/
H A Ducol_sit.cpp143 ActionFunction(CollatorSpec *spec, uint32_t value1, const char* string,
233 _processVariableTop(CollatorSpec *spec, uint32_t value1, const char* string, UErrorCode *status) argument
237 if(!value1) {
/external/v8/src/mips/
H A Dsimulator-mips.cc524 int32_t value1; local
526 if (GetValue(arg1, &value1) && GetValue(arg2, &value2)) {
527 cur = reinterpret_cast<byte_*>(value1);
587 int32_t value1; local
589 if (GetValue(arg1, &value1) && GetValue(arg2, &value2)) {
590 cur = reinterpret_cast<byte_*>(value1);
/external/webkit/Source/WebCore/css/
H A DCSSParser.cpp2864 void CSSParser::parseFillPosition(CSSParserValueList* valueList, RefPtr<CSSValue>& value1, RefPtr<CSSValue>& value2) argument
2872 value1 = parseFillPositionComponent(valueList, cumulativeFlags, value1Flag);
2873 if (!value1)
2891 value1.clear();
2905 value1.swap(value2);
2908 void CSSParser::parseFillRepeat(RefPtr<CSSValue>& value1, RefPtr<CSSValue>& value2) argument
2915 value1 = primitiveValueCache()->createIdentifierValue(CSSValueRepeat);
2922 value1 = primitiveValueCache()->createIdentifierValue(CSSValueNoRepeat);
2928 value1 = primitiveValueCache()->createIdentifierValue(id);
2930 value1
3238 parseTransformOriginShorthand(RefPtr<CSSValue>& value1, RefPtr<CSSValue>& value2, RefPtr<CSSValue>& value3) argument
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DTreeMapExtendTest.java3410 Integer value1, value2;
3422 value1 = (Integer) entryArray[i - 1].getValue();
3424 assertTrue(value1 > value2);
3425 assertTrue(comparator.compare(value1, value2) < 0);
3439 value1 = (Integer) entryArray[i - 1].getValue();
3441 assertTrue(value1 > value2);
3442 assertTrue(comparator.compare(value1, value2) < 0);
3456 value1 = (Integer) entryArray[i - 1].getValue();
3458 assertTrue(value1 > value2);
3459 assertTrue(comparator.compare(value1, value
[all...]
/external/webkit/Tools/DumpRenderTree/win/
H A DDumpRenderTree.cpp1080 static Boolean pthreadEqualCallback(const void* value1, const void* value2) argument
1082 return (Boolean)pthread_equal(*(pthread_t*)value1, *(pthread_t*)value2);
/external/libxml2/
H A Drelaxng.c628 * @value1: the first value
637 const xmlChar * value1,
2553 * @value1: the first value
2564 const xmlChar * value1,
2573 if ((type == NULL) || (value1 == NULL) || (value2 == NULL))
2581 ret = xmlSchemaValPredefTypeNode(typ, value1, &res1, ctxt1);
2666 * @value1: the first value
2677 const xmlChar * value1,
2686 ret = xmlStrEqual(value1, value2);
2688 if (!xmlStrEqual(value1, value
2562 xmlRelaxNGSchemaTypeCompare(void *data ATTRIBUTE_UNUSED, const xmlChar * type, const xmlChar * value1, xmlNodePtr ctxt1, void *comp1, const xmlChar * value2, xmlNodePtr ctxt2) argument
2675 xmlRelaxNGDefaultTypeCompare(void *data ATTRIBUTE_UNUSED, const xmlChar * type, const xmlChar * value1, xmlNodePtr ctxt1 ATTRIBUTE_UNUSED, void *comp1 ATTRIBUTE_UNUSED, const xmlChar * value2, xmlNodePtr ctxt2 ATTRIBUTE_UNUSED) argument
[all...]
/external/webkit/Source/WebCore/bindings/scripts/
H A DCodeGeneratorJS.pm2636 my $value1 = shift;
2721 push(@implContent, " { \"$key\", @$specials[$i], (intptr_t)" . $targetType . "(@$value1[$i]), (intptr_t)@$value2[$i] THUNK_GENERATOR(0) },\n");
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/evaluation/Stack.class Stack.java package proguard ...
/external/v8/test/cctest/
H A Dtest-api.cc219 v8::Handle<Value> value1 = CompileRun("Fun1(4) == '';"); local
220 CHECK(value1->IsTrue());

Completed in 504 milliseconds

12