Searched refs:value2 (Results 51 - 75 of 151) sorted by relevance

1234567

/external/chromium_org/tools/gyp/tools/
H A Dpretty_vcproj.py249 for (name, value2) in node2.attributes.items():
257 if value1 != value2:
258 node1.setAttribute(name, ';'.join([value1, value2]))
261 node1.setAttribute(name, value2)
287 '[key2=value2]' % argv[0])
/external/nanopb-c/examples/using_union_messages/
H A Ddecode.c83 printf("Got MsgType3: %d %d\n", msg.value1, msg.value2);
/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_unittest.cc158 const std::string value2("value2");
169 put_value = value2;
191 EXPECT_EQ(comparator.Compare(it->Value(), value2), 0);
205 const std::string value2("value2");
223 put_value = value2;
/external/chromium_org/third_party/libxslt/libxslt/
H A Dpattern.c88 xmlChar *value2; member in struct:_xsltStepOp
190 if (op->value2 != NULL)
191 xmlFree(op->value2);
285 * @value2: the second value
294 xsltOp op, xmlChar * value, xmlChar * value2, int novar)
313 comp->steps[comp->nbStep].value2 = value2;
377 tmp = comp->steps[i].value2;
378 comp->steps[i].value2 = comp->steps[j].value2;
293 xsltCompMatchAdd(xsltParserContextPtr ctxt, xsltCompMatchPtr comp, xsltOp op, xmlChar * value, xmlChar * value2, int novar) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTParser.cpp432 int value2; local
433 if (!input.scan(':') || input.scanDigits(value2) != 2)
442 value3 = value2;
443 value2 = value1;
451 if (value2 > 59 || value3 > 59)
455 timeStamp = (value1 * secondsPerHour) + (value2 * secondsPerMinute) + value3 + (value4 * secondsPerMillisecond);
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DWaveShaperDSPKernel.cpp121 double value2 = curveData[index2]; local
123 output = (1.0 - interpolationFactor) * value1 + interpolationFactor * value2;
H A DAudioParamTimeline.cpp302 float value2 = nextEvent ? nextEvent->value() : value1;
319 value = (1 - x) * value1 + x * value2;
324 if (value1 <= 0 || value2 <= 0) {
330 // The value goes exponentially from value1 to value2 in a duration of deltaTime seconds (corresponding to numSampleFrames).
332 float multiplier = powf(value2 / value1, 1 / numSampleFrames);
337 value = value1 * powf(value2 / value1,
/external/chromium_org/win8/metro_driver/
H A Dwinrt_utils_unittest.cc69 void TestCompareProperties(Type value1, Type value2) { argument
79 hr = CreateProperty<Type>(value2, property_2.GetAddressOf());
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DSourceInterpreter.java106 final Value value2)
139 final Value value2,
103 binaryOperation( final AbstractInsnNode insn, final Value value1, final Value value2) argument
136 ternaryOperation( final AbstractInsnNode insn, final Value value1, final Value value2, final Value value3) argument
H A DBasicInterpreter.java227 final Value value2) throws AnalyzerException
299 final Value value2,
224 binaryOperation( final AbstractInsnNode insn, final Value value1, final Value value2) argument
296 ternaryOperation( final AbstractInsnNode insn, final Value value1, final Value value2, final Value value3) argument
/external/protobuf/src/google/protobuf/io/
H A Dprinter.cc128 const char* variable2, const string& value2) {
131 vars[variable2] = value2;
126 Print(const char* text, const char* variable1, const string& value1, const char* variable2, const string& value2) argument
/external/chromium_org/net/cert/
H A Dct_objects_extractor_openssl.cc47 bool StringEqualToCBS(const std::string& value1, const CBS* value2) { argument
48 if (CBS_len(value2) != value1.size())
50 return memcmp(value1.data(), CBS_data(value2), CBS_len(value2)) == 0;
H A Dct_objects_extractor_nss.cc399 bool StringEqualToSECItem(const std::string& value1, const SECItem& value2) { argument
400 if (value1.size() != value2.len)
402 return memcmp(value1.data(), value2.data, value2.len) == 0;
/external/kernel-headers/original/uapi/sound/
H A Dsfnt_info.h202 int value2; /* reserved */ member in struct:snd_emux_misc_mode
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftutil.c529 FT_UInt32 value2; local
538 value2 = value & (value - 1); /* clear lowest bit */
539 if ( value2 == 0 )
542 value = value2;
/external/chromium_org/v8/tools/oom_dump/
H A Doom_dump.cc148 u_int32_t value2 = 0; local
149 CHECK(memory_region->GetMemoryAtAddress(value, &value2));
150 if (value2 == v8::internal::HeapStats::kStartMarker) {
/external/chromium_org/chrome/browser/chromeos/settings/
H A Ddevice_settings_provider_unittest.cc180 base::StringValue value2("dev");
181 provider_->Set(kReleaseChannel, value2);
189 EXPECT_TRUE(value2.Equals(saved_value));
/external/chromium_org/content/test/
H A Dtest_webkit_platform_support.h54 const blink::WebString& value2);
H A Dtest_webkit_platform_support.cc211 const blink::WebString& value2) {
216 return BlinkPlatformImpl::queryLocalizedString(name, value1, value2);
208 queryLocalizedString( blink::WebLocalizedString::Name name, const blink::WebString& value1, const blink::WebString& value2) argument
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
H A Dp3.cpp13 int value2 = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}} member in namespace:test0
/external/clang/test/Analysis/
H A Dtemporaries.cpp69 Derived(int value) : Trivial(value), value2(-value) {}
70 int value2; member in struct:rdar13281951::Derived
/external/proguard/src/proguard/evaluation/
H A DStack.java490 Value value2 = values[currentSize - 2].category1Value();
492 values[currentSize - 1] = value2;
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DObjectHandling.c83 static CYTHON_INLINE int __Pyx_unpack_tuple2(PyObject* tuple, PyObject** value1, PyObject** value2,
94 PyObject *value1 = NULL, *value2 = NULL, *iter = NULL; local
102 value2 = iternext(iter); if (unlikely(!value2)) { index = 1; goto unpacking_failed; }
113 value2 = PySequence_ITEM(tuple, 1);
114 if (unlikely(!value2)) goto bad;
117 value2 = PyTuple_GET_ITEM(tuple, 1);
119 Py_INCREF(value2);
124 *pvalue2 = value2;
132 Py_XDECREF(value2);
[all...]
/external/chromium_org/chrome/browser/task_manager/
H A Dtask_manager.cc66 int ValueCompare(T value1, T value2) { argument
67 if (value1 < value2)
69 if (value1 == value2)
89 T value2; local
91 bool value2_valid = (model->*f)(row2, &value2);
92 return value1_valid && value2_valid ? ValueCompare(value1, value2) :
880 size_t value2;
883 bool value2_valid = GetVideoMemory(row2, &value2, &has_duplicates);
884 return value1_valid && value2_valid ? ValueCompare(value1, value2) :
/external/chromium_org/base/
H A Dcommand_line_unittest.cc249 std::string value2 = "value"; local
260 cl.AppendSwitchASCII(switch2, value2);
267 EXPECT_EQ(value2, cl.GetSwitchValueASCII(switch2));

Completed in 710 milliseconds

1234567