/external/webkit/WebCore/inspector/front-end/ |
Callback.js | 38 wrap: function(callback) 55 WebInspector.Callback.wrap = WebInspector.Callback._INSTANCE.wrap.bind(WebInspector.Callback._INSTANCE);
|
DOMStorage.js | 59 var callId = WebInspector.Callback.wrap(callback); 65 var callId = WebInspector.Callback.wrap(callback); 71 var callId = WebInspector.Callback.wrap(callback);
|
/frameworks/base/core/java/android/text/style/ |
CharacterStyle.java | 32 * regions, you can use this method to wrap it with a new object that 36 public static CharacterStyle wrap(CharacterStyle cs) { method in class:CharacterStyle 46 * that were generated by {@link #wrap}, returns the underlying
|
/dalvik/libcore/luni/src/test/java/java/nio/charset/ |
CharsetDecoderTest.java | 34 ByteBuffer inBuffer = ByteBuffer.wrap(arr, 0, arr.length).slice(); 50 ByteBuffer inBuffer = ByteBuffer.wrap(arr, offset, arr.length - offset).slice(); 66 CharBuffer outBuffer = decoder.decode(ByteBuffer.wrap(arr, offset, arr.length - offset)); 83 return encoder.encode(CharBuffer.wrap(SAMPLE_STRING)).array();
|
/external/clearsilver/man/man3/ |
cgiwrap_putenv.3 | 14 cgiwrap_putenv - wrap the putenv call
|
filter_wait.3 | 14 filter_wait - wrap waitpid to decode the exitcode and why
|
/external/webkit/WebCore/wml/ |
WMLPElement.cpp | 70 if (m_mode == "wrap") 83 // the line-wrap mode of the previous paragraph in the text flow of 84 // a card. The default mode for the first paragraph in a card is wrap. 105 if (lastMode.isEmpty() || lastMode == "wrap") // Default value, do nothing.
|
/frameworks/base/opengl/java/android/opengl/ |
GLDebugHelper.java | 34 * Wrap an existing GL interface in a new GL interface that adds support for 79 public static GL wrap(GL gl, int configFlags, Writer log) { method in class:GLDebugHelper 92 * Wrap an existing EGL interface in a new EGL interface that adds 100 public static EGL wrap(EGL egl, int configFlags, Writer log) { method in class:GLDebugHelper
|
/dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/ |
ISOCharsetEncoderTest.java | 123 return CharBuffer.wrap("\ud800 buffer"); 127 return CharBuffer.wrap("\ud800\udc00 buffer"); 162 encoder.encode(CharBuffer.wrap("\ud800\udc00")); 168 assertTrue(encoder.encode(CharBuffer.wrap("\ud800"), out, true) 174 .wrap("\ud800"), out, false)); 175 assertTrue(encoder.encode(CharBuffer.wrap("\udc00"), out, true)
|
AbstractCharsetEncoderTestCase.java | 144 encoder.encode(CharBuffer.wrap("aaa")); 146 encoder.encode(CharBuffer.wrap("aaa"), ByteBuffer.allocate(3), false); 148 encoder.encode(CharBuffer.wrap("aaa"), ByteBuffer.allocate(3), true); 165 CharBuffer in = CharBuffer.wrap("aaa"); 221 CharBuffer in = CharBuffer.wrap("aaa"); 242 encoder.encode(CharBuffer.wrap("testCanEncodeIllegalState2"), 249 encoder.encode(CharBuffer.wrap("testCanEncodeIllegalState3"), 256 encoder.encode(CharBuffer.wrap("testCanEncodeIllegalState4"), 292 CharBuffer in = CharBuffer.wrap("aaa"); 304 encoder.encode(CharBuffer.wrap("testCanEncodeIllegalState2") [all...] |
AbstractCharsetDecoderTestCase.java | 240 ByteBuffer in = ByteBuffer.wrap(getUnibytes()); 331 ByteBuffer in = ByteBuffer.wrap(gb); 374 in = ByteBuffer.wrap(unibytes); 387 in = ByteBuffer.wrap(getUnibytes()); 497 .wrap(new byte[] { 114, 117, 110, 116, 105, 109, 101 }); 504 return ByteBuffer.wrap(ba); 511 return ByteBuffer.wrap(ba); 531 ByteBuffer in = ByteBuffer.wrap(new byte[] { 12, 12 }); 558 decoder.decode(ByteBuffer.wrap(gb)); 560 decoder.decode(ByteBuffer.wrap(gb), CharBuffer.allocate(3), false) [all...] |
/external/emma/core/java12/com/vladium/emma/ |
EMMAProperties.java | 104 public static IProperties wrap (final Properties properties) method in class:EMMAProperties 108 return IProperties.Factory.wrap (properties, ReportProperties.REPORT_PROPERTY_MAPPER); 138 final IProperties systemRedirects = wrap (Property.getSystemPropertyRedirects (EMMAProperties.SYSTEM_PROPERTY_REDIRECTS)); 139 final IProperties appDefaults = wrap (Property.getProperties (appName + "_default.properties", loader)); 147 systemFile = wrap (Property.getLazyPropertiesFromFile (file)); 149 final IProperties system = wrap (Property.getSystemProperties (appName)); 150 final IProperties userOverrides = wrap (Property.getProperties (appName + ".properties", loader));
|
/cts/tools/host/src/res/ |
cts_result.css | 232 white-space: pre-wrap; /* css-3 */ 233 white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ 234 white-space: -pre-wrap; /* Opera 4-6 */ 235 white-space: -o-pre-wrap; /* Opera 7 */ 236 word-wrap: break-word; /* Internet Explorer 5.5+ */
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/ |
AESWrapEngine.java | 12 * an implementation of the AES Key Wrapper from the NIST Key Wrap 15 * For further details see: <a href="http://csrc.nist.gov/encryption/kms/key-wrap.pdf">http://csrc.nist.gov/encryption/kms/key-wrap.pdf</a>. 54 public byte[] wrap( method in class:AESWrapEngine 68 throw new DataLengthException("wrap data must be a multiple of 8 bytes");
|
DESedeWrapEngine.java | 15 * Wrap keys according to 16 * <A HREF="http://www.ietf.org/internet-drafts/draft-ietf-smime-key-wrap-01.txt"> 17 * draft-ietf-smime-key-wrap-01.txt</A>. 22 * <li>if you are using this to wrap triple-des keys you need to set the 75 // Hm, we have no IV but we want to wrap ?!? 118 * Method wrap 125 public byte[] wrap(byte[] in, int inOff, int inLen) method in class:DESedeWrapEngine 314 * Some key wrap algorithms make use of the Key Checksum defined
|
/external/guava/src/com/google/common/collect/ |
MutableClassToInstanceMap.java | 73 // TODO: this should eventually use common.primitives.Primitives.wrap() 74 return wrap(type).cast(value); 79 private static <T> Class<T> wrap(Class<T> c) { method in class:MutableClassToInstanceMap
|
/external/webkit/WebKit/mac/WebView/ |
WebDocumentPrivate.h | 69 @method searchFor:direction:caseSensitive:wrap:startInSelection: 74 @param wrapFlag YES to wrap around, NO to avoid wrapping. 78 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag startInSelection:(BOOL)startInSelection;
|
/frameworks/base/core/tests/coretests/src/android/util/ |
DayOfMonthCursorTest.java | 58 // wrap over to previous column, same month 64 // wrap to previous month 88 // wrap to next column, same month
|
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/ |
CharBufferTest.java | 52 buf = CharBuffer.wrap(charscopy); 136 CharBuffer wrapped = CharBuffer.wrap(array, 3, array.length - 3); [all...] |
/packages/apps/Email/src/org/apache/james/mime4j/util/ |
TempFile.java | 36 * <code>TempFile</code>'s responsibility to wrap it.
49 * <code>TempFile</code>'s responsibility to wrap it.
|
/packages/apps/Mms/tests/src/com/android/mms/util/ |
SmileyParserUnitTests.java | 85 IntBuffer intBuf1 = IntBuffer.wrap(intArray1); 86 IntBuffer intBuf2 = IntBuffer.wrap(intArray2);
|
/cts/tests/tests/text/src/android/text/style/cts/ |
MetricAffectingSpanTest.java | 43 CharacterStyle result = CharacterStyle.wrap(metricAffectingSpan);
|
/dalvik/dx/src/com/android/dx/util/ |
Writers.java | 38 * @param writer {@code non-null;} writer to (possibly) wrap
|
/dalvik/libcore/archive/src/main/java/java/util/jar/ |
InitManifest.java | 123 private byte[] wrap(int mark, int pos) { method in class:InitManifest 137 byte[] nameBuffer = wrap(mark, pos - 1); 155 "archive.30", wrap(mark, buf.length))); //$NON-NLS-1$ 210 ByteBuffer bBuf = ByteBuffer.wrap(buf, mark, pos - mark);
|
/dalvik/libcore/json/src/main/java/org/json/ |
JSONException.java | 33 * callers should simply wrap this exception in an unchecked exception and
|