/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
textwrap.py | 28 __all__ = ['TextWrapper', 'wrap', 'fill', 'dedent'] 43 the wrap() and fill() methods; the other methods are just there for 166 Split the text to wrap into indivisible chunks. Chunks are 246 Wrap a sequence of text chunks and return a list of lines of 316 def wrap(self, text): member in class:TextWrapper 317 """wrap(text : string) -> [string] 338 return "\n".join(self.wrap(text)) 343 def wrap(text, width=70, **kwargs): function 344 """Wrap a single paragraph of text, returning a list of wrapped lines. 354 return w.wrap(text [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
textwrap.py | 28 __all__ = ['TextWrapper', 'wrap', 'fill', 'dedent'] 43 the wrap() and fill() methods; the other methods are just there for 166 Split the text to wrap into indivisible chunks. Chunks are 246 Wrap a sequence of text chunks and return a list of lines of 316 def wrap(self, text): member in class:TextWrapper 317 """wrap(text : string) -> [string] 338 return "\n".join(self.wrap(text)) 343 def wrap(text, width=70, **kwargs): function 344 """Wrap a single paragraph of text, returning a list of wrapped lines. 354 return w.wrap(text [all...] |
/libcore/crypto/src/main/java/org/conscrypt/ |
SSLSocketImpl.java | 553 output.write(alertProtocol.wrap()); 644 // warning alert occurred during wrap or unwrap 647 output.write(alertProtocol.wrap()); 683 output.write(recordProtocol.wrap(ContentType.APPLICATION_DATA, 687 output.write(recordProtocol.wrap( 695 recordProtocol.wrap(ContentType.APPLICATION_DATA, 711 * message from another peer. Each of this stages (wrap/unwrap) change 735 output.write(handshakeProtocol.wrap()); 774 // warning alert occurred during wrap or unwrap 777 output.write(alertProtocol.wrap()); [all...] |
AlertProtocol.java | 132 // record protocol to be used to wrap the alerts 266 protected byte[] wrap() { method in class:AlertProtocol 267 byte[] res = recordProtocol.wrap(ContentType.ALERT, alert, 0, 2);
|
/cts/tools/dex-tools/src/dex/reader/ |
DexBuffer.java | 45 initialize(ByteBuffer.wrap(bytes)); 54 initialize(ByteBuffer.wrap(bytes));
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
DESedeWrapEngine.java | 19 * Wrap keys according to 20 * <A HREF="http://www.ietf.org/internet-drafts/draft-ietf-smime-key-wrap-01.txt"> 21 * draft-ietf-smime-key-wrap-01.txt</A>. 26 * <li>if you are using this to wrap triple-des keys you need to set the 93 // Hm, we have no IV but we want to wrap ?!? 133 * Method wrap 140 public byte[] wrap(byte[] in, int inOff, int inLen) method in class:DESedeWrapEngine 305 * Some key wrap algorithms make use of the Key Checksum defined
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
Functional.h | 40 // A FunctionWrapper is a class template that can wrap a function pointer or a member function pointer and 328 static StorageType wrap(const T& value) { return value; } function in struct:WTF::ParamStorageTraits 335 static StorageType wrap(PassRefPtr<T> value) { return value; } function in struct:WTF::ParamStorageTraits 342 static StorageType wrap(RefPtr<T> value) { return value.release(); } function in struct:WTF::ParamStorageTraits 351 static StorageType wrap(const RetainPtr<T>& value) { return value; } function in struct:WTF::ParamStorageTraits 394 , m_p1(ParamStorageTraits<P1>::wrap(p1)) 413 , m_p1(ParamStorageTraits<P1>::wrap(p1)) 414 , m_p2(ParamStorageTraits<P2>::wrap(p2)) 434 , m_p1(ParamStorageTraits<P1>::wrap(p1)) 435 , m_p2(ParamStorageTraits<P2>::wrap(p2) [all...] |
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/ |
p3-0x.cpp | 150 class wrap class in namespace:rdar13473493 163 void test(wrap<int (*)(int)> w) { 164 w(5); // expected-error{{no matching function for call to object of type 'wrap<int (*)(int)>'}}
|
/external/clang/test/SemaTemplate/ |
instantiate-exception-spec-cxx11.cpp | 66 struct wrap { struct in namespace:core_19754_example 68 void irrelevant(wrap &p) noexcept(is_movable<T>::value); 80 wrap<typename T::base> base; 85 wrap<typename T::base> base;
|
/external/guava/guava-tests/test/com/google/common/base/ |
EquivalenceTest.java | 67 LENGTH_EQUIVALENCE.wrap("hello"), 68 LENGTH_EQUIVALENCE.wrap("hello"), 69 LENGTH_EQUIVALENCE.wrap("world")) 71 LENGTH_EQUIVALENCE.wrap("hi"), 72 LENGTH_EQUIVALENCE.wrap("yo")) 74 LENGTH_EQUIVALENCE.wrap(null), 75 LENGTH_EQUIVALENCE.wrap(null)) 76 .addEqualityGroup(Equivalences.equals().wrap("hello")) 77 .addEqualityGroup(Equivalences.equals().wrap(null)) 83 SerializableTester.reserializeAndAssert(LENGTH_EQUIVALENCE.wrap("hello")) [all...] |
/external/llvm/lib/Object/ |
Object.cpp | 26 inline LLVMObjectFileRef wrap(const ObjectFile *OF) { function 35 wrap(const section_iterator *SI) { function 45 wrap(const symbol_iterator *SI) { function 55 wrap(const relocation_iterator *SI) { function 62 return wrap(ObjectFile::createObjectFile(unwrap(MemBuf))); 72 return wrap(new section_iterator(SI)); 99 return wrap(new symbol_iterator(SI)); 157 return wrap(new relocation_iterator(SI)); 223 return wrap(new symbol_iterator(ret));
|
/external/llvm/lib/Target/ |
TargetMachineC.cpp | 35 inline LLVMTargetDataRef wrap(const DataLayout *P) { function 43 inline LLVMTargetLibraryInfoRef wrap(const TargetLibraryInfo *P) { function 54 inline LLVMTargetMachineRef wrap(const TargetMachine *P) { function 58 inline LLVMTargetRef wrap(const Target * P) { function 64 return wrap(target); 67 return wrap(unwrap(T)->getNext()); 128 return wrap(unwrap(T)->createTargetMachine(Triple, CPU, Features, opt, RM, 139 return wrap(target); 158 return wrap(unwrap(T)->getDataLayout());
|
/external/llvm/lib/Transforms/IPO/ |
PassManagerBuilder.cpp | 384 inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) { function 390 return wrap(PMB);
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
Amf0Track.java | 55 samples.add(ByteBuffer.wrap(bytes));
|
/external/smack/src/org/apache/qpid/management/common/sasl/ |
PlainSaslClient.java | 122 public byte[] wrap(byte[] outgoing, int offset, int len) throws SaslException method in class:PlainSaslClient
|
/external/smack/src/org/xbill/DNS/ |
UDPClient.java | 114 channel.write(ByteBuffer.wrap(data)); 130 long ret = channel.read(ByteBuffer.wrap(temp));
|
/frameworks/base/core/tests/coretests/src/android/text/ |
SpannedTest.java | 68 s.setSpan(CharacterStyle.wrap(mark), 3, 7, 72 s.setSpan(CharacterStyle.wrap(new TypefaceSpan("mono")), 8, 9,
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
SimpleFrame.java | 114 setGenericObjectValue(ByteBuffer.wrap(buffer.array(), offset, length));
|
/frameworks/compile/mclinker/tools/mcld/ |
main.cpp | 147 OptWrapList("wrap", 149 llvm::cl::desc("Use a wrap function fo symbol."), 239 llvm::cl::list<std::string>::iterator wrap, wrap_end = OptWrapList.end(); local 240 for (wrap = OptWrapList.begin(); wrap != wrap_end; ++wrap) { 241 config->addWrap(*wrap);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/ |
WrappedCharBufferTest2.java | 28 buf = CharBuffer.wrap(TEST_STRING); 41 CharBuffer.wrap(str, -1, 0); 47 CharBuffer.wrap(str, 21, 21); 53 CharBuffer.wrap(str, 2, 1); 59 CharBuffer.wrap(str, 0, 21); 65 CharBuffer.wrap((String)null, -1, 21);
|
/libcore/luni/src/main/java/java/nio/ |
FloatBuffer.java | 29 * <li>{@link #wrap(float[]) Wrap} an existing float array to create a new 58 * {@code wrap(array, 0, array.length)}. 64 public static FloatBuffer wrap(float[] array) { method in class:FloatBuffer 65 return wrap(array, 0, array.length); 88 public static FloatBuffer wrap(float[] array, int start, int floatCount) { method in class:FloatBuffer
|
IntBuffer.java | 29 * <li>{@link #wrap(int[]) Wrap} an existing int array to create a new buffer;</li> 56 * {@code wrap(array, 0, array.length)}. 62 public static IntBuffer wrap(int[] array) { method in class:IntBuffer 63 return wrap(array, 0, array.length); 84 public static IntBuffer wrap(int[] array, int start, int intCount) { method in class:IntBuffer
|
LongBuffer.java | 29 * <li>{@link #wrap(long[]) Wrap} an existing long array to create a new 58 * {@code wrap(array, 0, array.length)}. 64 public static LongBuffer wrap(long[] array) { method in class:LongBuffer 65 return wrap(array, 0, array.length); 86 public static LongBuffer wrap(long[] array, int start, int longCount) { method in class:LongBuffer
|
ShortBuffer.java | 29 * <li>{@link #wrap(short[]) Wrap} an existing short array to create a new 58 * {@code wrap(array, 0, array.length)}. 64 public static ShortBuffer wrap(short[] array) { method in class:ShortBuffer 65 return wrap(array, 0, array.length); 86 public static ShortBuffer wrap(short[] array, int start, int shortCount) { method in class:ShortBuffer
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLEngine.java | 78 * called by {@code wrap} or {@code unwrap} if the initial handshake has not 359 public abstract SSLEngineResult wrap(ByteBuffer[] srcs, int offset, int length, ByteBuffer dst) method in class:SSLEngine 434 public SSLEngineResult wrap(ByteBuffer[] srcs, ByteBuffer dst) throws SSLException { method in class:SSLEngine 438 return wrap(srcs, 0, srcs.length, dst); 461 public SSLEngineResult wrap(ByteBuffer src, ByteBuffer dst) throws SSLException { method in class:SSLEngine 462 return wrap(new ByteBuffer[] { src }, 0, 1, dst);
|