Searched refs:length (Results 226 - 250 of 12159) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dhelpers.h43 // Generates a (cryptographically) random string of the given length.
46 std::string CreateRandomString(size_t length);
48 // Generates a (cryptographically) random string of the given length.
51 bool CreateRandomString(size_t length, std::string* str);
53 // Generates a (cryptographically) random string of the given length,
56 bool CreateRandomString(size_t length, const std::string& table,
/external/chromium_org/third_party/skia/src/utils/
H A DSkBase64.h24 Error decode(const char* src, size_t length);
31 static size_t Encode(const void* src, size_t length, void* dest, const char* encode = NULL);
37 Error decode(const void* srcPtr, size_t length, bool writeDestination);
/external/chromium_org/tools/telemetry/telemetry/page/actions/
H A Dmedia_action.js17 if (media.length > 0) {
21 if (media.length > 0) {
33 for (var i = 0; i < mediaElements.length; i++) {
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A Dprototype_length.js25 shouldBe("Object.prototype.length","undefined");
26 shouldBe("Function.prototype.length","0");
27 shouldBe("Array.prototype.length","0");
28 shouldBe("String.prototype.length","0");
29 shouldBe("Boolean.prototype.length","undefined");
30 shouldBe("Number.prototype.length","undefined");
31 shouldBe("Date.prototype.length","undefined");
32 shouldBe("RegExp.prototype.length","undefined");
33 shouldBe("Error.prototype.length","undefined");
36 Array.prototype.length
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DAnimation.java51 * The length of the animation.
53 private float length; field in class:Animation
66 * Creates a new <code>Animation</code> with the given name and length.
69 * @param length Length in seconds of the animation.
71 public Animation(String name, float length) { argument
73 this.length = length;
85 * Returns the length in seconds of this animation
87 * @return the length in seconds of this animation
90 return length;
[all...]
/external/kernel-headers/original/linux/usb/
H A Df_mtp.h24 /* length of packet, including this header */
25 uint32_t length; member in struct:mtp_data_header
42 int64_t length; member in struct:mtp_file_range
55 size_t length; member in struct:mtp_event
/external/qemu/android/utils/
H A Dsetenv.c10 size_t length = strlen(name) + strlen(value) + 2; local
11 char *string = malloc(length);
12 snprintf(string, length, "%s=%s", name, value);
/external/skia/src/utils/
H A DSkBase64.h24 Error decode(const char* src, size_t length);
31 static size_t Encode(const void* src, size_t length, void* dest, const char* encode = NULL);
37 Error decode(const void* srcPtr, size_t length, bool writeDestination);
/external/tcpdump/
H A Dprint-mpls.c61 mpls_print(const u_char *bp, u_int length) argument
92 ip_print(gndo, p, length - (p - bp));
94 else printf(", IP, length: %u",length);
100 ip6_print(p, length - (p - bp));
102 else printf(", IPv6, length: %u",length);
134 ip_print(gndo, p, length - (p - bp));
136 else printf(", IP, length: %u",length);
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dlocdispnames.cpp55 int32_t length; local
63 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName,
66 result.releaseBuffer(U_SUCCESS(errorCode) ? length : 0);
69 buffer=result.getBuffer(length);
75 length=uloc_getDisplayLanguage(fullName, displayLocale.fullName,
78 result.releaseBuffer(U_SUCCESS(errorCode) ? length : 0);
95 int32_t length; local
103 length=uloc_getDisplayScript(fullName, displayLocale.fullName,
106 result.releaseBuffer(U_SUCCESS(errorCode) ? length : 0);
109 buffer=result.getBuffer(length);
135 int32_t length; local
175 int32_t length; local
215 int32_t length; local
302 int32_t length = 0; local
355 int32_t length; local
436 int32_t length, length2, length3 = 0; local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DICharStream.cs44 string Substring(int start, int length); argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DICharStream.cs46 string Substring( int start, int length );
/external/apache-http/src/org/apache/http/util/
H A DEncodingUtils.java54 * @param length the number of bytes to encode
61 int length,
69 if (charset == null || charset.length() == 0) {
74 return new String(data, offset, length, charset);
76 return new String(data, offset, length);
94 return getString(data, 0, data.length, charset);
111 if (charset == null || charset.length() == 0) {
148 * @param length the number of bytes to encode
151 public static String getAsciiString(final byte[] data, int offset, int length) { argument
158 return new String(data, offset, length, HTT
58 getString( final byte[] data, int offset, int length, String charset ) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXMLStringFactoryImpl.java67 * @param length The number of characters to read from the array.
71 public XMLString newstr(FastStringBuffer fsb, int start, int length) argument
73 return new XStringForFSB(fsb, start, length);
82 * @param length The number of characters to read from the array.
86 public XMLString newstr(char[] string, int start, int length) argument
88 return new XStringForChars(string, start, length);
/external/bluetooth/bluedroid/embdrv/sbc/encoder/include/
H A Dsbc_if.h37 increasing by length until track is finished.
40 length - any
45 int SBC_write(unsigned char *pcm_in, int length, unsigned char *sbc_out);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DStreamUtil.java14 * Find out possible longest length...
17 * @return length calculation or MAX_VALUE.
60 int length)
64 if (length > 127)
67 int val = length;
86 int length = 1;
92 length++;
97 int pos = stack.length;
108 length += stack.length
59 calculateBodyLength( int length) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
H A DISO7816d4Padding.java43 int added = (in.length - inOff);
48 while (inOff < in.length)
63 int count = in.length - 1;
75 return in.length - count;
H A DZeroBytePadding.java42 int added = (in.length - inOff);
44 while (inOff < in.length)
59 int count = in.length;
71 return in.length - count;
/external/chromium_org/base/test/
H A Dtest_file_util_mac.cc22 int64 length; local
23 if (!file_util::GetFileSize(file, &length)) {
30 if (length == 0) {
41 if (msync(const_cast<uint8*>(mapped_file.data()), mapped_file.length(),
/external/chromium_org/content/browser/gamepad/
H A Dgamepad_platform_data_fetcher.cc16 pads->length = 0;
/external/chromium_org/crypto/
H A Drandom.h14 // Fills the given buffer with |length| random bytes of cryptographically
16 // |length| must be positive.
17 CRYPTO_EXPORT void RandBytes(void *bytes, size_t length);
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DFloatPoint3D.cpp32 float tempLength = length();
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextMetrics.cpp51 int length = 0; local
54 m_width = scaledFont.width(run, length, m_glyph.name) / scalingFactor;
57 m_glyph.unicodeString = run.is8Bit() ? String(run.characters8(), length) : String(run.characters16(), length);
60 ASSERT(length >= 0);
61 m_length = static_cast<unsigned>(length);
64 TextRun SVGTextMetrics::constructTextRun(RenderSVGInlineText* text, unsigned position, unsigned length) argument
70 , 0 // length, will be set below if non-zero.
77 if (length) {
79 run.setText(text->characters8() + position, length);
98 measureCharacterRange(RenderSVGInlineText* text, unsigned position, unsigned length) argument
104 SVGTextMetrics(RenderSVGInlineText* text, unsigned position, unsigned length, float width, const String& glyphName) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElementInstanceList.cpp37 unsigned SVGElementInstanceList::length() const function in class:WebCore::SVGElementInstanceList
40 unsigned length = 0; local
42 length++;
43 return length;
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileWriterBase.h45 void initialize(PassOwnPtr<AsyncFileWriter>, long long length);
51 long long length() const function in class:WebCore::FileWriterBase
69 void setLength(long long length) argument
71 m_length = length;

Completed in 806 milliseconds

1234567891011>>