| /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/forward/ |
| move_only3.fail.cpp | 6 // Source Licenses. See LICENSE.TXT for details. 38 move_only source() {return move_only();} function
|
| move_only4.fail.cpp | 6 // Source Licenses. See LICENSE.TXT for details. 41 move_only source() {return move_only();} function
|
| /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/ |
| weak_ptr.pass.cpp | 6 // Source Licenses. See LICENSE.TXT for details. 56 std::weak_ptr<T> source (std::shared_ptr<T> p) { return std::weak_ptr<T>(p); } function 106 std::weak_ptr<A> pA = source(ps);
|
| weak_ptr_Y.pass.cpp | 6 // Source Licenses. See LICENSE.TXT for details. 56 std::weak_ptr<T> source (std::shared_ptr<T> p) { return std::weak_ptr<T>(p); } function 102 std::weak_ptr<A> pA = source(ps);
|
| /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/forward/ |
| forward.pass.cpp | 6 // Source Licenses. See LICENSE.TXT for details. 19 A source() {return A();} function 48 static_assert(sizeof(test(std::forward<A>(source()))) == 4, ""); 51 // static_assert(sizeof(test(std::forward<const A&>(source()))) == 2, ""); 53 static_assert(sizeof(test(std::forward<const A>(source()))) == 8, ""); 64 // static_assert(sizeof(test(std::forward<A>(source()))) == 2, ""); 67 static_assert(sizeof(test(std::forward<const A&>(source()))) == 2, ""); 69 static_assert(sizeof(test(std::forward<const A>(source()))) == 2, "");
|
| move_copy.pass.cpp | 6 // Source Licenses. See LICENSE.TXT for details. 33 A source() {return A();} function
|
| move_only1.fail.cpp | 6 // Source Licenses. See LICENSE.TXT for details. 41 move_only source() {return move_only();} function
|
| move_only2.fail.cpp | 6 // Source Licenses. See LICENSE.TXT for details. 41 move_only source() {return move_only();} function
|
| move_only3.fail.cpp | 6 // Source Licenses. See LICENSE.TXT for details. 38 move_only source() {return move_only();} function
|
| move_only4.fail.cpp | 6 // Source Licenses. See LICENSE.TXT for details. 41 move_only source() {return move_only();} function
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/ |
| mlsrule.py | 36 def expanded_mls_rule_factory(original, source, target): 41 source The source type of the expanded rule. 52 rule.source = source 71 return "{0.ruletype} {0.source} {0.target}:{0.tclass} {0.default};".format(self) 76 def source(self): member in class:MLSRule 77 """The rule's source type/attribute.""" 92 for s, t in itertools.product(self.source.expand(), self.target.expand()): 100 source = Non variable in class:ExpandedMLSRule [all...] |
| rbacrule.py | 39 def expanded_rbac_rule_factory(original, source, target): 44 source The source type of the expanded rule. 57 rule.source = source 76 return "{0.ruletype} {0.source} {0.target};".format(self) 79 return hash("{0.ruletype}|{0.source}|{0.target}".format(self)) 84 def source(self): member in class:RoleAllow 85 """The rule's source role.""" 105 for s, t in itertools.product(self.source.expand(), self.target.expand()) 119 def source(self): member in class:RoleTransition 143 source = None variable in class:ExpandedRoleAllow 152 source = None variable in class:ExpandedRoleTransition [all...] |
| rule.py | 41 return hash("{0.ruletype}|{0.source}|{0.target}|{0.tclass}|{1}|{2}".format( 50 def source(self): member in class:PolicyRule 52 The source for the rule. This should be overridden by
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/ |
| rbacrulequery.py | 38 source The name of the source role/attribute to match. 42 be used on the source role/attribute. 59 source = CriteriaDescriptor("source_regex", "lookup_role") variable in class:RBACRuleQuery 94 self.log.debug("Source: {0.source!r}, indirect: {0.source_indirect}, " 110 # Matching on source role 112 if self.source and not match_indirect_regex( 113 rule.source, 114 self.source, [all...] |
| /external/okhttp/okio/okio/src/test/java/okio/ |
| BufferedSourceTest.java | 45 result.source = buffer; 59 result.source = new RealBufferedSource(buffer); 73 result.source = new RealBufferedSource(new ForwardingSource(buffer) { 92 BufferedSource source; field in class:BufferedSourceTest.Pipe 114 private BufferedSource source; field in class:BufferedSourceTest 119 source = pipe.source; 124 assertEquals(0xab, source.readByte() & 0xff); 125 assertEquals(0xcd, source.readByte() & 0xff); 126 assertTrue(source.exhausted()) [all...] |
| /cts/tests/tests/view/src/android/view/cts/ |
| AbsSavedStateTest.java | 2 * Copyright (C) 2008 The Android Open Source Project 64 Parcel source = Parcel.obtain(); local 65 source.writeParcelable(superState, 0); 66 source.setDataPosition(0); 67 s = new AbsSavedStateImpl(source, AbsSavedStateImpl.class.getClassLoader()); 70 source = Parcel.obtain(); 71 s = new AbsSavedStateImpl(source); 74 source = Parcel.obtain(); 75 source.writeParcelable(superState, 0); 76 source.setDataPosition(0) [all...] |
| View_BaseSavedStateTest.java | 2 * Copyright (C) 2008 The Android Open Source Project 63 Parcel source = Parcel.obtain(); local 64 source.writeParcelable(superState, 0); 65 source.setDataPosition(0); 66 s = new BaseSavedState(source); 70 source = Parcel.obtain(); 71 source.writeParcelable(superState, 0); 72 source.setDataPosition(0); 73 s = new BaseSavedState(source, loader);
|
| /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/ |
| SourceHighlighterTest.java | 46 private SourceNodeImpl source; field in class:SourceHighlighterTest 51 source = new SourceNodeImpl(ElementType.SOURCEFILE, "Foo.java"); 62 sourceHighlighter.render(parent, source, new StringReader(src)); 72 sourceHighlighter.render(parent, source, new StringReader("")); 75 assertEquals("source lang-java linenums", 82 sourceHighlighter.render(parent, source, new StringReader("")); 85 assertEquals("source lang-scala linenums", 92 source.increment(CounterImpl.COUNTER_1_0, CounterImpl.COUNTER_0_0, 1); 93 source.increment(CounterImpl.COUNTER_1_0, CounterImpl.COUNTER_0_0, 2); 94 source.increment(CounterImpl.COUNTER_0_1, CounterImpl.COUNTER_0_0, 2) [all...] |
| /external/okhttp/okio/okio/src/main/java/okio/ |
| GzipSource.java | 24 * A source that uses <a href="http://www.ietf.org/rfc/rfc1952.txt">GZIP</a> to 25 * decompress data read from another source. 27 public final class GzipSource implements Source { 42 * Our source should yield a GZIP header (which we consume directly), followed 46 private final BufferedSource source; field in class:GzipSource 52 * The inflater source takes care of moving data between compressed source and 60 public GzipSource(Source source) { 61 if (source == null) throw new IllegalArgumentException("source == null") [all...] |
| /libcore/ojluni/src/main/java/sun/nio/ch/ |
| MembershipKeyImpl.java | 44 private final InetAddress source; field in class:MembershipKeyImpl 52 // set of source addresses that are blocked 58 InetAddress source) 63 this.source = source; 77 InetAddress source, 82 super(ch, group, interf, source); 96 int source() { method in class:MembershipKeyImpl.Type4 112 InetAddress source, 117 super(ch, group, interf, source); 131 byte[] source() { method in class:MembershipKeyImpl.Type6 [all...] |
| /packages/apps/TV/src/com/android/tv/tuner/source/ |
| TsDataSourceManager.java | 2 * Copyright (C) 2016 The Android Open Source Project 17 package com.android.tv.tuner.source; 85 TsDataSource source = streamer.createDataSource(); local 86 sTsStreamers.put(source, streamer); 87 return source; 97 * @param source to release 99 public void releaseDataSource(TsDataSource source) { 100 if (source instanceof TunerTsStreamer.TunerDataSource) { 102 source, mId, !mIsRecording && mKeepTuneStatus); 103 } else if (source instanceof FileTsStreamer.FileDataSource) [all...] |
| /tools/tradefederation/core/prod-tests/src/com/android/monkey/ |
| AnrReportGenerator.java | 2 * Copyright (C) 2016 The Android Open Source Project 159 InputStreamSource source = new FileInputStreamSource(htmlReport); local 160 logger.testLog("monkey-anr-report", LogDataType.HTML, source); 162 source.cancel();
|
| /external/clang/unittests/Lex/ |
| PPConditionalDirectiveRecordTest.cpp | 5 // This file is distributed under the University of Illinois Open Source 72 const char *source = local 92 llvm::MemoryBuffer::getMemBuffer(source);
|
| /external/deqp/modules/glshared/ |
| glsShaderExecUtil.hpp | 7 * Copyright 2014 The Android Open Source Project 64 std::string source; //!< Source snippet to be executed. member in struct:deqp::gls::ShaderExecUtil::ShaderSpec
|
| /external/flatbuffers/android/jni/ |
| include.mk | 181 # Override the default behavior of local-source-file-path to workaround 184 local-source-file-path=\ 205 # set your source files to be dependent on the generated headers. For example: 222 $(eval $(call local-source-file-path,$(src)): \ 231 $(eval $(call local-source-file-path,$(src)): $(strip $(7)))),)\
|