HomeSort by relevance Sort by last modified time
    Searched refs:wrap (Results 1 - 25 of 873) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p6-0x.cpp 23 template<typename T = func_type_lvalue> struct wrap { struct
29 using func_type_lvalue = wrap<>::val; // expected-note{{in instantiation of}}
30 using func_type_lvalue = wrap<func_type_lvalue>::val;
31 using func_type_rvalue = wrap<func_type_rvalue>::val; // expected-note{{in instantiation of}}
33 using func_type_lvalue_ptr = wrap<>::ptr;
34 using func_type_lvalue_ptr = wrap<func_type_lvalue>::ptr;
35 using func_type_rvalue_ptr = wrap<func_type_rvalue>::ptr;
37 using func_type_lvalue_ref = wrap<>::ref;
38 using func_type_lvalue_ref = wrap<func_type_lvalue>::ref;
39 using func_type_rvalue_ref = wrap<func_type_rvalue>::ref
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/classes/
Rev.py 76 wrap = '[]'
79 wrap = '()'
82 wrap = ''
85 wrap = '<>'
88 return wrap[:1] + sep.join(outstrs) + wrap[-1:]
  /external/python/cpython2/Demo/classes/
Rev.py 76 wrap = '[]'
79 wrap = '()'
82 wrap = ''
85 wrap = '<>'
88 return wrap[:1] + sep.join(outstrs) + wrap[-1:]
  /external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
ReadableBuffersByteBufferTest.java 25 * ReadableBuffers#wrap(ByteBuffer)}.
31 return ReadableBuffers.wrap(ByteBuffer.wrap(msg.getBytes(UTF_8)));
GzipInflatingBufferTest.java 108 gzipInflatingBuffer.addGzippedBytes(ReadableBuffers.wrap(gzippedData));
119 gzipInflatingBuffer.addGzippedBytes(ReadableBuffers.wrap(gzippedData, 0, initialBytes));
128 ReadableBuffers.wrap(gzippedData, initialBytes, gzippedData.length - initialBytes));
137 gzipInflatingBuffer.addGzippedBytes(ReadableBuffers.wrap(gzippedData));
159 gzipInflatingBuffer.addGzippedBytes(ReadableBuffers.wrap(gzippedData));
160 gzipInflatingBuffer.addGzippedBytes(ReadableBuffers.wrap(gzippedTruncatedData));
161 gzipInflatingBuffer.addGzippedBytes(ReadableBuffers.wrap(gzippedData));
162 gzipInflatingBuffer.addGzippedBytes(ReadableBuffers.wrap(gzippedTruncatedData));
186 gzipInflatingBuffer.addGzippedBytes(ReadableBuffers.wrap(gzippedData));
200 gzipInflatingBuffer.addGzippedBytes(ReadableBuffers.wrap(gzippedData))
    [all...]
ReadableBuffersArrayTest.java 20 import static io.grpc.internal.ReadableBuffers.wrap;
28 * Tests for the array-backed {@link ReadableBuffer} returned by {@link ReadableBuffers#wrap(byte[],
36 ReadableBuffer buffer = wrap(array, 1, msg.length() - 1);
48 return ReadableBuffers.wrap(msg.getBytes(UTF_8), 0, msg.length());
  /external/libopus/doc/
opus_in_isobmff.css 15 white-space: pre-wrap; /* CSS 2.1 */
16 white-space: -pre-wrap; /* Opera 4-6 */
17 white-space: -o-pre-wrap; /* Opera 7 */
18 white-space: -moz-pre-wrap; /* Mozilla */
19 white-space: -hp-pre-wrap; /* HP Printers */
20 word-wrap : break-word; /* IE 5+ */
  /cts/tests/tests/wrap/src/android/wrap/
WrapActivity.java 17 package android.wrap;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
Wrapper.java 14 public byte[] wrap(byte[] in, int inOff, int inLen); method in interface:Wrapper
  /external/clang/test/SemaTemplate/
dependent-class-member-operator.cpp 7 void wrap() { function
  /external/grpc-grpc/test/core/util/
trickle_endpoint.h 24 grpc_endpoint* grpc_trickle_endpoint_create(grpc_endpoint* wrap,
  /external/python/cpython2/Lib/ctypes/test/
test_as_parameter.py 18 def wrap(self, param): member in class:BasicWrapTestCase
25 result = f(self.wrap(1), self.wrap(u"x"), self.wrap(3), self.wrap(4), self.wrap(5.0), self.wrap(6.0))
41 result = f(self.wrap(pointer(v)))
46 result = f(self.wrap(pointer(v)))
50 result = f(self.wrap(p)
208 wrap = AsParamWrapper variable in class:AsParamWrapperTestCase
221 wrap = AsParamPropertyWrapper variable in class:AsParamPropertyWrapperTestCase
    [all...]
  /external/python/cpython3/Lib/ctypes/test/
test_as_parameter.py 18 def wrap(self, param): member in class:BasicWrapTestCase
25 result = f(self.wrap(1), self.wrap("x"), self.wrap(3), self.wrap(4), self.wrap(5.0), self.wrap(6.0))
41 result = f(self.wrap(pointer(v)))
46 result = f(self.wrap(pointer(v)))
50 result = f(self.wrap(p)
212 wrap = AsParamWrapper variable in class:AsParamWrapperTestCase
225 wrap = AsParamPropertyWrapper variable in class:AsParamPropertyWrapperTestCase
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/bytecode/
InstrumentationConfigurationTest.java 27 assertThat(config.shouldInstrument(wrap("com.google.android.apps.Foo"))).isFalse();
32 assertThat(config.shouldInstrument(wrap("dalvik.system.DexFile"))).isTrue();
37 assertThat(config.shouldInstrument(wrap("java.lang.Object"))).isFalse();
38 assertThat(config.shouldInstrument(wrap("java.lang.String"))).isFalse();
43 assertThat(config.shouldInstrument(wrap("android.content.Intent"))).isTrue();
44 assertThat(config.shouldInstrument(wrap("android.and.now.for.something.completely.different"))).isTrue();
49 assertThat(config.shouldInstrument(wrap("org.apache.http.util.CharArrayBuffer"))).isTrue();
54 assertThat(config.shouldInstrument(wrap("org.kxml2.io.KXmlParser"))).isTrue();
103 assertThat(customConfig.shouldInstrument(wrap(instrumentName))).isTrue();
104 assertThat(customConfig.shouldInstrument(wrap(notInstrumentName))).isFalse()
138 private MutableClass wrap(final String className) { method in class:InstrumentationConfigurationTest
    [all...]
  /external/conscrypt/android/src/main/java/org/conscrypt/
BaseOpenSSLSocketAdapterFactory.java 45 return wrap((OpenSSLSocketImpl) delegate.createSocket());
51 return wrap((OpenSSLSocketImpl) delegate.createSocket(hostname, port));
57 return wrap(
62 return wrap((OpenSSLSocketImpl) delegate.createSocket(address, port));
71 return wrap(
78 return wrap((OpenSSLSocketImpl) delegate.createSocket(s, hostname, port, autoClose));
85 protected abstract Socket wrap(OpenSSLSocketImpl sock) throws IOException; method in class:BaseOpenSSLSocketAdapterFactory
KitKatPlatformOpenSSLSocketAdapterFactory.java 33 protected Socket wrap(OpenSSLSocketImpl socket) throws IOException { method in class:KitKatPlatformOpenSSLSocketAdapterFactory
  /external/libaom/libaom/tools/
wrap-commit-msg.py 38 def wrap(text): function
55 output += wrap(text)
58 output += wrap(text)
  /external/libvpx/libvpx/tools/
wrap-commit-msg.py 36 def wrap(text): function
53 output += wrap(text)
56 output += wrap(text)
  /frameworks/av/media/extractors/mpeg2/
ExtractorBundle.cpp 59 return wrap(new MPEG2TSExtractor(new DataSourceHelper(source)));};
64 return wrap(new MPEG2PSExtractor(new DataSourceHelper(source)));};
  /external/llvm/lib/IR/
Core.cpp 80 return wrap(new LLVMContext());
83 LLVMContextRef LLVMGetGlobalContext() { return wrap(&*GlobalContext); }
136 return wrap(Attribute::get(*unwrap(C), (Attribute::AttrKind)KindID, Val));
153 return wrap(Attribute::get(*unwrap(C), StringRef(K, KLength),
215 return wrap(new Module(ModuleID, *GlobalContext));
220 return wrap(new Module(ModuleID, *unwrap(C)));
303 return wrap(&unwrap(M)->getContext());
357 return wrap(&unwrap(Ty)->getContext());
399 return wrap(IntegerType::get(*unwrap(C), NumBits));
483 return wrap(FunctionType::get(unwrap(ReturnType), Tys, IsVarArg != 0))
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
EquivalenceTest.java 68 LENGTH_EQUIVALENCE.wrap("hello"),
69 LENGTH_EQUIVALENCE.wrap("hello"),
70 LENGTH_EQUIVALENCE.wrap("world"))
72 LENGTH_EQUIVALENCE.wrap("hi"),
73 LENGTH_EQUIVALENCE.wrap("yo"))
75 LENGTH_EQUIVALENCE.wrap(null),
76 LENGTH_EQUIVALENCE.wrap(null))
77 .addEqualityGroup(Equivalence.equals().wrap("hello"))
78 .addEqualityGroup(Equivalence.equals().wrap(null))
84 Wrapper<String> wrapper = LENGTH_EQUIVALENCE.wrap(test)
    [all...]
  /art/test/712-varhandle-invocations/src/
VarHandleUnitTestHelpers.java 57 return getBytesAs_boolean(ByteBuffer.wrap(array), index, order);
61 return getBytesAs_byte(ByteBuffer.wrap(array), index, order);
65 return getBytesAs_char(ByteBuffer.wrap(array), index, order);
69 return getBytesAs_short(ByteBuffer.wrap(array), index, order);
73 return getBytesAs_int(ByteBuffer.wrap(array), index, order);
77 return getBytesAs_long(ByteBuffer.wrap(array), index, order);
81 return getBytesAs_float(ByteBuffer.wrap(array), index, order);
85 return getBytesAs_double(ByteBuffer.wrap(array), index, order);
121 setBytesAs_boolean(ByteBuffer.wrap(array), index, value, order);
125 setBytesAs_byte(ByteBuffer.wrap(array), index, value, order)
    [all...]
  /external/llvm/bindings/go/llvm/
DIBuilderBindings.cpp 26 return wrap(new DIBuilder(*m));
43 return wrap(D->createCompileUnit(Lang, File, Dir, Producer, Optimized, Flags,
50 return wrap(D->createFile(File, Dir));
61 return wrap(LB);
69 return wrap(D->createLexicalBlockFile(unwrap<DILocalScope>(Scope),
79 return wrap(D->createFunction(unwrap<DIScope>(Scope), Name, LinkageName,
92 return wrap(D->createAutoVariable(unwrap<DIScope>(Scope), Name,
102 return wrap(D->createParameterVariable(
113 return wrap(D->createBasicType(Name, SizeInBits, AlignInBits, Encoding));
122 return wrap(D->createPointerType(unwrap<DIType>(PointeeType), SizeInBits
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
inspect_fodder2.py 2 def wrap(foo=None): function
14 @wrap()
15 @wrap(wrap)
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/
Wrapper.java 18 public byte[] wrap(byte[] in, int inOff, int inLen); method in interface:Wrapper

Completed in 2208 milliseconds

1 2 3 4 5 6 7 8 91011>>