Home
last modified time | relevance | path

Searched refs:returned (Results 1 – 25 of 2299) sorted by relevance

12345678910>>...92

/external/python/oauth2client/tests/contrib/
Dtest_dictionary_storage.py70 returned = storage.get()
72 self.assertIsNotNone(returned)
73 self.assertEqual(returned.access_token, credentials.access_token)
74 self.assertEqual(returned.id_token, credentials.id_token)
75 self.assertEqual(returned.refresh_token, credentials.refresh_token)
76 self.assertEqual(returned.client_id, credentials.client_id)
85 returned = storage.get()
88 self.assertIsNotNone(returned)
89 self.assertEqual(returned.access_token, credentials.access_token)
90 self.assertEqual(returned.id_token, credentials.id_token)
[all …]
/external/llvm-project/llvm/test/Transforms/SCCP/
Dipsccp-clear-returned.ll2 ; then the "returned" attribute of input arguments
10 %call = call i32 @func_return_undef(i32 returned 1)
12 ; CHECK-NOT: returned
17 define internal i32 @func_return_undef(i32 returned %arg) {
19 ; CHECK-NOT: returned
29 ; want to remove the returned attribute for call sites
32 ; CHECK-NOT: returned
33 define internal i32 @blockaddr_user(i1 %c, i32 returned %d) {
58 ; CHECK-NOT: returned
60 %r = call i32 @blockaddr_user(i1 %c, i32 returned 10)
/external/deqp/framework/egl/
DegluCallLogWrapper.inl13 …m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMes…
23 …m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMes…
38 …m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMes…
48 m_log << TestLog::Message << "// " << returnValue << " returned" << TestLog::EndMessage;
58 m_log << TestLog::Message << "// " << returnValue << " returned" << TestLog::EndMessage;
68 …m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMes…
78 m_log << TestLog::Message << "// " << returnValue << " returned" << TestLog::EndMessage;
88 m_log << TestLog::Message << "// " << returnValue << " returned" << TestLog::EndMessage;
98 m_log << TestLog::Message << "// " << returnValue << " returned" << TestLog::EndMessage;
108 m_log << TestLog::Message << "// " << toHex(returnValue) << " returned" << TestLog::EndMessage;
[all …]
/external/llvm/test/Transforms/DeadArgElim/
Dreturned.ll12 ; do not keep alive the return value of a function with a dead 'returned' argument
15 define internal %Ty* @test2(%Ty* returned %this) {
30 ; keep alive return value of a function if the 'returned' argument is live
31 ; CHECK-LABEL: define internal %Ty* @test4(%Ty* returned %this)
33 define internal %Ty* @test4(%Ty* returned %this) {
38 ; don't do this if 'returned' is on the call site...
51 ; ...instead, drop 'returned' form the call site
53 %5 = call %Ty* @test5(%Ty* returned %this)
/external/python/google-api-python-client/tests/
Dtest__auth.py46 returned = _auth.with_scopes(credentials, mock.sentinel.scopes)
48 self.assertEqual(credentials, returned)
59 returned = _auth.with_scopes(credentials, mock.sentinel.scopes)
61 self.assertNotEqual(credentials, returned)
62 self.assertEqual(returned, credentials.with_scopes.return_value)
101 returned = _auth.with_scopes(credentials, mock.sentinel.scopes)
103 self.assertEqual(credentials, returned)
109 returned = _auth.with_scopes(credentials, mock.sentinel.scopes)
111 self.assertNotEqual(credentials, returned)
112 self.assertEqual(returned, credentials.create_scoped.return_value)
/external/llvm/test/tools/llvm-cov/Inputs/
Dtest_-a_-b.cpp.gcov15 function _ZN1A1BEv called 8589934592 returned 100% blocks executed 100%
19 function _Z7uselessv called 0 returned 0% blocks executed 0%
23 function _Z12more_uselessv called 0 returned 0% blocks executed 0%
29 function _Z3foov called 2 returned 100% blocks executed 100%
36 function _Z3barv called 0 returned 0% blocks executed 0%
43 function _Z6assignii called 8 returned 100% blocks executed 100%
49 function _Z15initialize_gridv called 2 returned 100% blocks executed 100%
69 function main called 2 returned 100% blocks executed 94%
Dtest_-a_-b_-u.cpp.gcov15 function _ZN1A1BEv called 8589934592 returned 100% blocks executed 100%
20 function _Z7uselessv called 0 returned 0% blocks executed 0%
25 function _Z12more_uselessv called 0 returned 0% blocks executed 0%
32 function _Z3foov called 2 returned 100% blocks executed 100%
40 function _Z3barv called 0 returned 0% blocks executed 0%
48 function _Z6assignii called 8 returned 100% blocks executed 100%
55 function _Z15initialize_gridv called 2 returned 100% blocks executed 100%
82 function main called 2 returned 100% blocks executed 94%
Dtest_-a_-b_-c_-u.cpp.gcov15 function _ZN1A1BEv called 8589934592 returned 100% blocks executed 100%
20 function _Z7uselessv called 0 returned 0% blocks executed 0%
25 function _Z12more_uselessv called 0 returned 0% blocks executed 0%
32 function _Z3foov called 2 returned 100% blocks executed 100%
40 function _Z3barv called 0 returned 0% blocks executed 0%
48 function _Z6assignii called 8 returned 100% blocks executed 100%
55 function _Z15initialize_gridv called 2 returned 100% blocks executed 100%
82 function main called 2 returned 100% blocks executed 94%
/external/antlr/gunit/src/main/java/org/antlr/gunit/
DgUnitTestResult.java35 private String returned; // AST (toStringTree) or ST (toString) field in gUnitTestResult
48 public gUnitTestResult(boolean success, String output, String returned) { in gUnitTestResult() argument
50 this.returned = returned; in gUnitTestResult()
66 return returned; in getReturned()
/external/llvm-project/llvm/test/Analysis/LazyCallGraph/
Dalias.ll23 define dso_local i8* @foo(i8* %returned) {
24 ret i8* %returned
29 define internal i8* @bar(i8* %returned) {
30 ret i8* %returned
36 define internal i8* @baz(i8* %returned) {
37 ret i8* %returned
/external/llvm-project/llvm/test/Transforms/DeadArgElim/
Dreturned.ll12 ; do not keep alive the return value of a function with a dead 'returned' argument
15 define internal %Ty* @test2(%Ty* returned %this) {
30 ; keep alive return value of a function if the 'returned' argument is live
31 ; CHECK-LABEL: define internal %Ty* @test4(%Ty* returned %this)
33 define internal %Ty* @test4(%Ty* returned %this) {
38 ; don't do this if 'returned' is on the call site...
57 ; ...instead, drop 'returned' form the call site
59 %5 = call %Ty* @test5(%Ty* returned %this)
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/
Drejection_resample_test.py57 returned = []
58 while len(returned) < 4000:
59 returned.append(self.evaluate(get_next()))
61 returned_classes, returned_classes_and_data = zip(*returned)
94 returned = []
97 returned.append(self.evaluate(get_next()))
125 returned = []
128 returned.append(self.evaluate(get_next()))
130 classes, _ = zip(*returned)
/external/llvm-project/llvm/test/Transforms/Attributor/IPConstantProp/
Dpthreads.ll40 …, i8* noalias nofree nonnull readnone align 8 dereferenceable(8) "no-capture-maybe-returned" undef)
42 … nofree noundef nonnull readnone align 8 dereferenceable(1) "no-capture-maybe-returned" [[ALLOC2]])
53 … nofree noundef nonnull readnone align 8 dereferenceable(1) "no-capture-maybe-returned" [[ALLOC2]])
72 ; IS__TUNIT____-SAME: (i8* noalias nofree readnone returned align 536870912 "no-capture-maybe-retur…
78 ; IS__CGSCC____-SAME: (i8* noalias nofree readnone returned align 536870912 "no-capture-maybe-retur…
89 …_-SAME: (i8* noalias nofree nonnull readnone returned align 8 dereferenceable(8) "no-capture-maybe…
95 …_-SAME: (i8* noalias nofree nonnull readnone returned align 8 dereferenceable(8) "no-capture-maybe…
106 …(i8* noalias nofree noundef nonnull readnone returned align 8 dereferenceable(1) "no-capture-maybe…
112 …(i8* noalias nofree noundef nonnull readnone returned align 8 dereferenceable(1) "no-capture-maybe…
123 …(i8* noalias nofree noundef nonnull readnone returned align 8 dereferenceable(1) "no-capture-maybe…
[all …]
Dmultiple_callbacks.ll45 ; IS__TUNIT____-SAME: (i32 returned [[ZERO:%.*]]) [[ATTR0:#.*]] {
51 ; IS__CGSCC____-SAME: (i32 returned [[ZERO:%.*]]) [[ATTR0:#.*]] {
62 ; IS__TUNIT____-SAME: (i32 noundef returned [[UNKNOWN:%.*]]) [[ATTR0]] {
68 ; IS__CGSCC____-SAME: (i32 noundef returned [[UNKNOWN:%.*]]) [[ATTR0]] {
79 ; IS__TUNIT____-SAME: (i32 noundef returned [[UNKNOWN:%.*]]) [[ATTR0]] {
85 ; IS__CGSCC____-SAME: (i32 noundef returned [[UNKNOWN:%.*]]) [[ATTR0]] {
97 ; IS__TUNIT____-SAME: (i32 noundef returned [[UNKNOWN:%.*]]) [[ATTR0]] {
103 ; IS__CGSCC____-SAME: (i32 noundef returned [[UNKNOWN:%.*]]) [[ATTR0]] {
114 ; IS__TUNIT____-SAME: (i32 noundef returned [[UNKNOWN:%.*]]) [[ATTR0]] {
120 ; IS__CGSCC____-SAME: (i32 noundef returned [[UNKNOWN:%.*]]) [[ATTR0]] {
/external/deqp/doc/testspecs/GLES31/
Dfunctional.shaders.atomic_counter.txt52 the shader. Values returned by call to atomicCounterDecrement() are
54 peforming operation. Atomic counter values returned by different atomic
58 calls returned the same value as set initially to the atomic counter.
61 call check that each value returned is unique and all values are in continuous
67 that value returned by atomicCounterIncrement()/atomicCounterDecrement() is
68 between values returned by previous and following call to atomicCounter().
72 was returned by each function. Using these counts we check that there is
77 // Minimum value returned by atomicCounterDecrement() or atomicCounterIncrement()
79 // Maximum value returned by atomicCounterDecrement() or atomicCounterIncrement()
81 // incrementCounts[value] is how many times value was returned by atomicCounterIncrement()
[all …]
/external/cros/system_api/dbus/smbprovider/
Ddirectory_entry.proto80 // ID of the mount returned from Mount().
86 // ID of the mount returned from Mount().
95 // ID of the mount returned from Mount().
104 // ID of the mount returned from Mount().
115 // ID of the mount returned from Mount().
117 // ID of the file returned from OpenFile().
123 // ID of the mount returned from Mount().
125 // ID of the file returned from OpenFile().
135 // ID of the mount returned from Mount().
146 // ID of the mount returned from Mount().
[all …]
/external/llvm-project/llvm/test/CodeGen/X86/
Dreturned-trunc-tail-calls.ll3 declare i32 @ret32(i32 returned)
4 declare i64 @ret64(i64 returned)
11 tail call i32 @ret32(i32 returned %in)
20 tail call i64 @ret64(i64 returned %val)
29 tail call i32 @ret32(i32 returned %small)
33 declare {i32, i8} @take_i32_i8({i32, i8} returned)
46 tail call {i32, i8} @take_i32_i8({i32, i8} returned %callval)
73 tail call i64 @ret64(i64 returned undef)
/external/llvm/test/CodeGen/X86/
Dreturned-trunc-tail-calls.ll3 declare i32 @ret32(i32 returned)
4 declare i64 @ret64(i64 returned)
11 tail call i32 @ret32(i32 returned %in)
20 tail call i64 @ret64(i64 returned %val)
29 tail call i32 @ret32(i32 returned %small)
33 declare {i32, i8} @take_i32_i8({i32, i8} returned)
46 tail call {i32, i8} @take_i32_i8({i32, i8} returned %callval)
73 tail call i64 @ret64(i64 returned undef)
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigpause/
D1-2.c33 static int returned; variable
49 returned = 1; in a_thread_func()
65 if (returned == 1) { in main()
79 if (returned != 1) { in main()
/external/llvm-project/llvm/test/Transforms/Attributor/
Dnocapture-2.ll214 ; CHECK-SAME: (i32* nofree readnone returned dereferenceable_or_null(4) "no-capture-maybe-returned"…
220 …6* noalias nofree readnone dereferenceable_or_null(4) "no-capture-maybe-returned" [[TMP0]]) [[ATTR…
222 …e* noalias nofree readnone dereferenceable_or_null(8) "no-capture-maybe-returned" [[TMP1]]) [[ATTR…
224 …2* noalias nofree readnone dereferenceable_or_null(8) "no-capture-maybe-returned" [[TMP2]]) [[ATTR…
260 ; CHECK-SAME: (double* nofree readnone returned dereferenceable_or_null(8) "no-capture-maybe-return…
266 …2* noalias nofree readnone dereferenceable_or_null(8) "no-capture-maybe-returned" [[TMP0]]) [[ATTR…
268 …e* noalias nofree readnone dereferenceable_or_null(8) "no-capture-maybe-returned" [[TMP1]]) [[ATTR…
270 …6* noalias nofree readnone dereferenceable_or_null(8) "no-capture-maybe-returned" [[TMP2]]) [[ATTR…
306 ; CHECK-SAME: (i16* nofree readnone returned dereferenceable_or_null(4) "no-capture-maybe-returned"…
309 …2* noalias nofree readnone dereferenceable_or_null(4) "no-capture-maybe-returned" [[BC]]) [[ATTR2]]
[all …]
Dreturned.ll7 ; Test cases specifically designed for the "returned" argument attribute.
43 ; IS__TUNIT____-SAME: (i32 returned [[R:%.*]]) [[ATTR0:#.*]] {
49 ; IS__CGSCC____-SAME: (i32 returned [[R:%.*]]) [[ATTR0:#.*]] {
60 ; IS__TUNIT____-SAME: (i32 [[A:%.*]], i32 returned [[R:%.*]], i32 [[B:%.*]]) [[ATTR1:#.*]] {
68 ; IS__CGSCC____-SAME: (i32 [[A:%.*]], i32 returned [[R:%.*]], i32 [[B:%.*]]) [[ATTR1:#.*]] {
83 ; IS__TUNIT____-SAME: (i32 [[A:%.*]], i32 [[B:%.*]], i32 returned [[R:%.*]]) [[ATTR1]] {
120 ; IS__CGSCC____-SAME: (i32 [[A:%.*]], i32 [[B:%.*]], i32 returned [[R:%.*]]) [[ATTR1]] {
342 ; IS__TUNIT____-SAME: (double* nofree readnone returned "no-capture-maybe-returned" [[R:%.*]]) [[AT…
348 ; IS__CGSCC____-SAME: (double* nofree readnone returned "no-capture-maybe-returned" [[R:%.*]]) [[AT…
359 ; IS__TUNIT____-SAME: (double* nofree readnone [[A:%.*]], double* nofree readnone returned [[R:%.*]…
[all …]
/external/llvm-project/llvm/test/CodeGen/WebAssembly/
Dreturned.ll3 ; Test that the "returned" attribute is optimized effectively.
16 declare %class.Apple* @_ZN5AppleC1Ev(%class.Apple* returned)
29 declare i8* @memcpy(i8* returned, i8*, i32)
48 declare i32* @returns_arg(i32* returned)
51 ; "returned" attribute.
58 declare i32 @do_something(i32 returned, i32, double)
74 declare i32 @do_something_else(i32, i32 returned)
/external/llvm/test/CodeGen/ARM/
Dreturned-trunc-tail-calls.ll3 declare i16 @ret16(i16 returned)
4 declare i32 @ret32(i32 returned)
10 tail call i16 @ret16(i16 returned %in)
18 tail call i16 @ret16(i16 returned %in)
22 declare {i32, i8} @take_i32_i8({i32, i8} returned)
35 tail call {i32, i8} @take_i32_i8({i32, i8} returned %callval)
63 tail call i32 @ret32(i32 returned undef)
/external/llvm-project/llvm/test/CodeGen/ARM/
Dreturned-trunc-tail-calls.ll3 declare i16 @ret16(i16 returned)
4 declare i32 @ret32(i32 returned)
10 tail call i16 @ret16(i16 returned %in)
18 tail call i16 @ret16(i16 returned %in)
22 declare {i32, i8} @take_i32_i8({i32, i8} returned)
35 tail call {i32, i8} @take_i32_i8({i32, i8} returned %callval)
63 tail call i32 @ret32(i32 returned undef)
/external/harfbuzz_ng/src/
Dhb-debug.hh262 static inline void _hb_warn_no_return (bool returned) in _hb_warn_no_return() argument
264 if (unlikely (!returned)) { in _hb_warn_no_return()
269 /*static*/ inline void _hb_warn_no_return<hb_empty_t> (bool returned HB_UNUSED) in _hb_warn_no_return()
281 : plevel (plevel_), what (what_), obj (obj_), returned (false) in hb_auto_trace_t()
292 _hb_warn_no_return<ret_t> (returned); in ~hb_auto_trace_t()
293 if (!returned) { in ~hb_auto_trace_t()
304 if (unlikely (returned)) { in ret()
314 returned = true; in ret()
322 bool returned; member

12345678910>>...92