/external/chromium_org/third_party/tlslite/tlslite/utils/ |
pem.py | 11 """Decode a PEM string into a bytearray of its payload. 76 """Encode a payload bytearray into a PEM string.
|
/external/chromium_org/tools/stats_viewer/ |
OpenDialog.resx | 25 <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
57 mimetype: application/x-microsoft.net.object.bytearray.base64
|
Resources.resx | 25 <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
57 mimetype: application/x-microsoft.net.object.bytearray.base64
|
/external/chromium_org/tools/stats_viewer/Properties/ |
Resources.resx | 25 <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
57 mimetype: application/x-microsoft.net.object.bytearray.base64
|
/external/chromium_org/tools/win/ChromeDebug/ChromeDebug/ |
AttachDialog.resx | 25 <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> 57 mimetype: application/x-microsoft.net.object.bytearray.base64
|
/external/lldb/examples/python/ |
disasm-stress-test.py | 80 ret = bytearray(self.m_byte_width) 105 ret = bytearray(self.m_byte_width)
|
/external/sfntly/cpp/src/sfntly/data/ |
font_data.h | 93 explicit FontData(ByteArray* ba); 107 void Init(ByteArray* ba);
|
/external/chromium_org/third_party/icu/source/tools/genrb/ |
wrtjava.c | 450 uint8_t* byteArray = NULL; 457 byteArray = res->u.fBinaryValue.fData; 471 if (byteArray[byteIterator] < 128) 473 sprintf(byteBuffer, byteDecl, byteArray[byteIterator]); 477 sprintf(byteBuffer, byteDecl, (byteArray[byteIterator]-256));
|
/external/icu/icu4c/source/tools/genrb/ |
wrtjava.c | 445 uint8_t* byteArray = NULL; 452 byteArray = res->u.fBinaryValue.fData; 466 if (byteArray[byteIterator] < 128) 468 sprintf(byteBuffer, byteDecl, byteArray[byteIterator]); 472 sprintf(byteBuffer, byteDecl, (byteArray[byteIterator]-256));
|
/art/runtime/ |
transaction_test.cc | 321 mirror::ByteArray* byteArray = byteArrayField->GetObject(h_klass.Get())->AsByteArray(); 322 ASSERT_TRUE(byteArray != nullptr); 323 ASSERT_EQ(byteArray->GetLength(), 1); 324 ASSERT_EQ(byteArray->GetWithoutChecks(0), 0); 389 byteArray->SetWithoutChecks<true>(0, 1); 402 EXPECT_EQ(byteArray->GetWithoutChecks(0), 0);
|
/frameworks/base/drm/jni/ |
android_drm_DrmManagerClient.cpp | 53 JNIEnv* env, jbyteArray byteArray, int* dataLength); 99 jbyteArray byteArray = (jbyteArray) env->GetObjectField(object, fieldID); 100 return Utility::getByteArrayValue(env, byteArray, dataLength); 105 char* Utility::getByteArrayValue(JNIEnv* env, jbyteArray byteArray, int* dataLength) { 107 if (NULL != byteArray) { 108 jint length = env->GetArrayLength(byteArray); 113 env->GetByteArrayRegion(byteArray, (jint)0, length, (jbyte *) data);
|
/external/chromium_org/third_party/tlslite/patches/ |
status_request.patch | 31 self.server_name = bytearray(0) 69 w2.addVarSeq(bytearray(self.signed_cert_timestamps), 1, 2) 108 + w.addVarSeq(bytearray(self.ocsp_response), 1, 3)
|
/external/chromium_org/tools/clang/scripts/ |
run_tool.py | 204 contents = bytearray(f.read()) 239 contents: A bytearray with the deletion already applied. 240 offset: The offset in the bytearray where the deleted range used to be.
|
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/ |
serialcli.py | 159 data = bytearray() 172 if not isinstance(data, (bytes, bytearray)): 173 raise TypeError('expected %s or bytearray, got %s' % (bytes, type(data)))
|
serialjava.py | 157 read = bytearray() 171 if not isinstance(data, (bytes, bytearray)): 172 raise TypeError('expected %s or bytearray, got %s' % (bytes, type(data)))
|
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/ |
PduPart.java | 155 byte[] byteArray = new byte[mPartData.length]; 156 System.arraycopy(mPartData, 0, byteArray, 0, mPartData.length); 157 return byteArray;
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/ |
CertPathTest.java | 97 * ByteArray streams used.
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
bitmap.py | 138 if type(pixels) is not bytearray: 139 pixels = bytearray(pixels) 223 if type(self._pixels) is not bytearray: 224 self._pixels = bytearray(self._pixels)
|
/external/chromium_org/v8/src/ |
regexp-macro-assembler-irregexp.h | 81 virtual void CheckBitInTable(Handle<ByteArray> table, Label* on_bit_set);
|
/external/lldb/test/python_api/process/ |
TestProcessAPI.py | 240 # Note that the canonical from of the bytearray is little endian. 279 # Now read the memory content. The bytearray should have (byte)1 as the second element. 285 new_bytes = bytearray(content, "ascii") 287 # The bytearray_to_int utility function expects a little endian bytearray.
|
/frameworks/base/core/jni/ |
android_database_CursorWindow.cpp | 183 jbyteArray byteArray = env->NewByteArray(size); 184 if (!byteArray) { 189 env->SetByteArrayRegion(byteArray, 0, size, static_cast<const jbyte*>(value)); 190 return byteArray;
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
longintrepr.h | 25 - PyLong_{As,From}ByteArray require that PyLong_SHIFT be at least 8
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
longintrepr.h | 25 - PyLong_{As,From}ByteArray require that PyLong_SHIFT be at least 8
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
Hex.java | 184 byte[] byteArray = object instanceof String ? ((String) object).getBytes() : (byte[]) object; 185 return encodeHex(byteArray);
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/ |
readable_font_data.cc | 27 ReadableFontData::ReadableFontData(ByteArray* array) 165 int32_t ReadableFontData::CopyTo(ByteArray* ba) {
|