Searched defs:result (Results 276 - 300 of 7853) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_rwlock_destroy.c46 int result = 0, result1 = 0, result2 = 0; local
62 if ((result = pthread_mutex_lock (&(rwl->mtxExclusiveAccess))) != 0)
64 return result;
67 if ((result =
71 return result;
81 result = pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted));
89 if ((result =
93 return result;
96 if ((result =
99 return result;
[all...]
H A Dpthread_setcancelstate.c83 int result = 0; local
123 return (result);
H A Dpthread_setcanceltype.c83 int result = 0; local
124 return (result);
H A Dpthread_spin_init.c46 int result = 0; local
98 result = pthread_mutexattr_init (&ma);
100 if (0 == result)
103 result = pthread_mutex_init (&(s->u.mutex), &ma);
104 if (0 == result)
112 if (0 == result)
122 return (result);
H A Dptw32_getprocessors.c60 int result = 0; local
85 result = EAGAIN;
90 return (result);
H A Dsem_getvalue.c89 int result = 0; local
91 if ((result = pthread_mutex_lock(&s->lock)) == 0)
107 return result;
H A Dsem_init.c85 int result = 0; local
94 result = EPERM;
98 result = EINVAL;
106 result = ENOMEM;
126 result = ENOSPC;
141 result = ENOSPC;
149 result = ENOSPC;
152 if (result != 0)
159 if (result != 0)
161 errno = result;
[all...]
H A Dsem_post_multiple.c79 int result = 0; local
85 result = EINVAL;
87 else if ((result = pthread_mutex_lock (&s->lock)) == 0)
94 result = EINVAL;
123 result = EINVAL;
129 result = ERANGE;
134 if (result != 0)
136 errno = result;
H A Dsem_wait.c113 int result = 0; local
120 result = EINVAL;
124 if ((result = pthread_mutex_lock (&s->lock)) == 0)
147 result = pthreadCancelableWait (s->sem);
149 pthread_cleanup_pop(result);
156 if (!result && pthread_mutex_lock (&s->lock) == 0)
179 if (result != 0)
181 errno = result;
/external/chromium_org/net/websockets/
H A Dwebsocket_deflate_predictor_impl_test.cc22 Result result = predictor.Predict(frames, 0); local
24 EXPECT_EQ(WebSocketDeflatePredictor::DEFLATE, result);
/external/chromium_org/ppapi/cpp/
H A Dcore.cc15 int32_t result) {
18 result);
13 CallOnMainThread(int32_t delay_in_milliseconds, const CompletionCallback& callback, int32_t result) argument
/external/chromium_org/printing/
H A Dprinting_test.h27 BOOL result = ::GetDefaultPrinter(printer_name, &size); local
28 if (result == 0) {
/external/chromium_org/remoting/client/plugin/
H A Dpepper_module.cc16 pp::Instance* result = new ChromotingInstance(instance); variable
17 return result;
/external/chromium_org/sql/test/
H A Dpaths.cc16 bool PathProvider(int key, base::FilePath* result) { argument
35 *result = cur;
/external/chromium_org/sync/util/
H A Dget_session_name_win.cc20 std::string result; local
21 bool conversion_successful = base::WideToUTF8(computer_name, size, &result);
23 return result;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8XSLTProcessorCustom.cpp67 String result = impl->getParameter(namespaceURI, localName); local
68 if (result.isNull())
71 v8SetReturnValueString(info, result, info.GetIsolate());
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableLengthTest.cpp51 Length result = Length(CalculationValue::create(PixelsAndPercent(2, 10), ValueRangeAll)); local
52 EXPECT_TRUE(result == create(calc, 5)->length(2, ValueRangeAll));
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSFontValue.cpp33 StringBuilder result; local
36 result.append(style->cssText());
38 if (!result.isEmpty())
39 result.append(' ');
40 result.append(variant->cssText());
43 if (!result.isEmpty())
44 result.append(' ');
45 result.append(weight->cssText());
48 if (!result.isEmpty())
49 result
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDimensionTest.cpp53 Vector<HTMLDimension> result = parseListOfDimensions(String("")); local
54 ASSERT_EQ(Vector<HTMLDimension>(), result); local
59 Vector<HTMLDimension> result = parseListOfDimensions(String(" \t")); local
60 ASSERT_EQ(1U, result.size());
61 ASSERT_EQ(HTMLDimension(0, HTMLDimension::Relative), result[0]);
66 Vector<HTMLDimension> result = parseListOfDimensions(String(" \t%")); local
67 ASSERT_EQ(1U, result.size());
68 ASSERT_EQ(HTMLDimension(0, HTMLDimension::Percentage), result[0]);
73 Vector<HTMLDimension> result = parseListOfDimensions(String("\t *")); local
74 ASSERT_EQ(1U, result
80 Vector<HTMLDimension> result = parseListOfDimensions(String("10")); local
88 Vector<HTMLDimension> result = parseListOfDimensions(String("50 %")); local
96 Vector<HTMLDimension> result = parseListOfDimensions(String("25*")); local
104 Vector<HTMLDimension> result = parseListOfDimensions(String("10.054")); local
112 Vector<HTMLDimension> result = parseListOfDimensions(String("\\t \\t 10")); local
120 Vector<HTMLDimension> result = parseListOfDimensions(String(" \\r25*")); local
128 Vector<HTMLDimension> result = parseListOfDimensions(String("\\n 25%")); local
136 Vector<HTMLDimension> result = parseListOfDimensions(String("10.054%")); local
144 Vector<HTMLDimension> result = parseListOfDimensions(String("10.054*")); local
152 Vector<HTMLDimension> result = parseListOfDimensions(String("1\\n0 .025%")); local
160 Vector<HTMLDimension> result = parseListOfDimensions(String("1\\n0 .025%")); local
168 Vector<HTMLDimension> result = parseListOfDimensions(String("1\\n0 .025*")); local
176 Vector<HTMLDimension> result = parseListOfDimensions(String("10. 0 25%")); local
184 Vector<HTMLDimension> result = parseListOfDimensions(String("10.05\\r25%")); local
192 Vector<HTMLDimension> result = parseListOfDimensions(String("10,")); local
200 Vector<HTMLDimension> result = parseListOfDimensions(String("10*,25 %")); local
209 Vector<HTMLDimension> result = parseListOfDimensions(String("10 * ,\\t25 , 10.05\\n5%")); local
219 Vector<HTMLDimension> result = parseListOfDimensions(String("2*,,8.%")); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DCounterDirectives.cpp38 OwnPtr<CounterDirectiveMap> result = adoptPtr(new CounterDirectiveMap); local
39 *result = counterDirectives;
40 return result.release();
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIOutputMap.cpp20 MIDIOutput* result = get(id); local
21 if (result)
22 return ScriptValue(scriptState, toV8(result, scriptState->context()->Global(), scriptState->isolate()));
/external/chromium_org/third_party/WebKit/Source/platform/
H A DContentDecryptionModuleResult.h25 WebContentDecryptionModuleResult result() function in class:blink::ContentDecryptionModuleResult
H A DCryptoResult.h52 WebCryptoResult result() function in class:blink::CryptoResult
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebTextCheckingResult.cpp40 TextCheckingResult result; local
41 result.decoration = static_cast<TextDecorationType>(decoration);
42 result.location = location;
43 result.length = length;
44 result.replacement = replacement;
45 result.hash = hash;
46 if (result.decoration == TextDecorationTypeGrammar) {
51 result.details.append(detail);
54 return result;
/external/chromium_org/third_party/WebKit/Source/wtf/testing/
H A DWTFTestHelpersTest.cpp49 const std::string& result = output.str(); local
50 return CString(result.data(), result.length());

Completed in 826 milliseconds

<<11121314151617181920>>