HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 76 - 100 of 1699) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_future2.py 3 from __future__ import nested_scopes; import string namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_future2.py 3 from __future__ import nested_scopes; import string namespace
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
CrcFunction.java 17 package com.google.clearsilver.jsilver.functions.string;
28 * Returns the CRC-32 of a string.
33 * @param args 1 string expression
34 * @return CRC-32 of string as number value
37 String string = args[0].asString(); local
43 b = string.getBytes("UTF-8");
SliceFunction.java 17 package com.google.clearsilver.jsilver.functions.string;
28 * Returns the string slice starting at start and ending at end, similar to the Python slice
34 * @param args 1 string values then 2 numeric values (start and end).
35 * @return Sliced string
41 String string = stringValue.asString(); local
44 int length = string.length();
63 return literalValue(string.substring(start, end), stringValue.getEscapeMode(), stringValue
  /bionic/libc/tools/
check-symbols.py 6 import string namespace
  /cts/suite/audio_quality/lib/src/audio/
AudioProtocol.cpp 192 android::String8* string = reinterpret_cast<android::String8*>(param->mExtra); local
193 string->setTo(infoString.get(), len);
  /development/testrunner/
am_instrument_parser.py 22 import string namespace
30 result (string): Raw output of "am instrument"
73 result (string): Raw output of "am instrument"
91 line = line.strip(string.whitespace)
94 key = re_result.search(line).group(1).strip(string.whitespace)
97 val = re_result.search(line).group(2).strip(string.whitespace)
107 val = re_code.search(line).group(1).strip(string.whitespace)
130 result_block_string (string): Is a single "block" of output. A single
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
DirectoryString.java 19 private ASN1String string; field in class:DirectoryString
67 DERT61String string)
69 this.string = string;
73 DERPrintableString string)
75 this.string = string;
79 DERUniversalString string)
81 this.string = string;
    [all...]
  /external/chromium_org/base/strings/
nullable_string16.h 21 NullableString16(const string16& string, bool is_null)
22 : string_(string), is_null_(is_null) {
25 const string16& string() const { return string_; } function in class:base::NullableString16
34 return a.is_null() == b.is_null() && a.string() == b.string();
  /external/chromium_org/components/policy/core/common/
mac_util.cc 7 #include <string>
27 const std::string string = base::SysCFStringRefToUTF8(cf_key); local
29 string, converted.release());
73 if (CFStringRef string = CFCast<CFStringRef>(property)) {
75 base::Value::CreateStringValue(base::SysCFStringRefToUTF8(string)));
  /external/chromium_org/content/child/npapi/
npruntime_util.cc 15 const NPUTF8* string; local
18 WebBindings::extractIdentifierData(identifier, string, number, is_string);
24 return pickle->WriteData(string, strlen(string) + 1);
  /external/chromium_org/sdch/open-vcdiff/src/
jsonwriter.h 22 #include <string>
34 // * Each ADD is represented by a single JSON string containing
38 // * Each RUN is represented by a JSON string containing the data to add,
58 // Writes the header to the output string.
65 // string. The output string is not null-terminated.
76 typedef std::string string; typedef in class:open_vcdiff::JSONCodeTableWriter
78 // Escape the input data to conform with the JSON string spec
79 // and add it to the 'out' string
    [all...]
jsonwriter_test.cc 29 typedef std::string string; typedef in class:open_vcdiff::__anon14642::JSONWriterTest
39 string out_;
40 OutputString<string> output_string_;
127 string out2;
128 OutputString<string> output_string2(&out2);
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-filepath.h 43 #include "gtest/internal/gtest-string.h"
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
77 const std::string& string() const { return pathname_; } function in class:testing::internal::FilePath
114 // the name, otherwise return the name string unmodified.
200 std::string pathname_;
  /external/chromium_org/third_party/WebKit/public/platform/
WebSerializedOrigin.h 25 WebSerializedOrigin(const url::Origin& origin) : m_string(WebString::fromUTF8(origin.string())) { }
29 const WebString& string() const function in class:blink::WebSerializedOrigin
  /external/chromium_org/third_party/android_testrunner/
am_instrument_parser.py 22 import string namespace
30 result (string): Raw output of "am instrument"
73 result (string): Raw output of "am instrument"
91 line = line.strip(string.whitespace)
94 key = re_result.search(line).group(1).strip(string.whitespace)
97 val = re_result.search(line).group(2).strip(string.whitespace)
107 val = re_code.search(line).group(1).strip(string.whitespace)
130 result_block_string (string): Is a single "block" of output. A single
  /external/chromium_org/third_party/libsrtp/srtp/test/
getopt_s.c 56 getopt_check_character(char c, const char *string) {
59 while (*string != 0) {
63 if (*string++ == c) {
64 if (*string == ':') {
81 char *string; local
83 /* move 'string' on to next argument */
85 string = argv[optind_s];
87 if (string == NULL)
88 return '?'; /* NULL argument string */
90 if (string[0] != '-'
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
glX_proto_common.py 29 import string namespace
72 parameters = string.join( param.count_parameter_list, "," )
  /external/chromium_org/third_party/skia/tools/lua/
count_reduced_clipstacks.lua 16 function string.starts(String,Start)
17 return string.sub(String,1,string.len(Start))==Start
40 if (string.starts(t.verb, "draw")) then
  /external/chromium_org/tools/
omahaproxy.py 15 import string namespace
  /external/chromium_org/tools/win/sizeviewer/
sizeviewer.py 7 import string namespace
87 f.write(string.Template(template).substitute(
  /external/chromium_org/ui/ozone/
generate_constructor_list.py 53 import string namespace
71 return 'Create' + typename + string.capitalize(platform)
  /external/chromium_org/v8/test/mjsunit/harmony/
string-endswith.js 30 assertEquals(1, String.prototype.endsWith.length);
48 assertThrows("String.prototype.endsWith.call(null, 'test')", TypeError);
49 assertThrows("String.prototype.endsWith.call(null, null)", TypeError);
50 assertThrows("String.prototype.endsWith.call(undefined, undefined)", TypeError);
52 assertThrows("String.prototype.endsWith.apply(null, ['test'])", TypeError);
53 assertThrows("String.prototype.endsWith.apply(null, [null])", TypeError);
54 assertThrows("String.prototype.endsWith.apply(undefined, [undefined])", TypeError);
57 msg: "Empty string", val: ""
83 var s = String(v);
85 assertTrue(String.prototype.endsWith.call(v, v), e.msg)
315 var string = "I\\xF1t\\xEBrn\\xE2ti\\xF4n\\xE0liz\\xE6ti\\xF8n\\u2603\\uD83D\\uDCA9"; variable
    [all...]
string-startswith.js 30 assertEquals(1, String.prototype.startsWith.length);
48 assertThrows("String.prototype.startsWith.call(null, 'test')", TypeError);
49 assertThrows("String.prototype.startsWith.call(null, null)", TypeError);
50 assertThrows("String.prototype.startsWith.call(undefined, undefined)", TypeError);
52 assertThrows("String.prototype.startsWith.apply(null, ['test'])", TypeError);
53 assertThrows("String.prototype.startsWith.apply(null, [null])", TypeError);
54 assertThrows("String.prototype.startsWith.apply(undefined, [undefined])", TypeError);
57 msg: "Empty string", val: ""
83 var s = String(v);
85 assertTrue(String.prototype.startsWith.call(v, v), e.msg)
300 var string = "I\\xF1t\\xEBrn\\xE2ti\\xF4n\\xE0liz\\xE6ti\\xF8n\\u2603\\uD83D\\uDCA9"; variable
    [all...]
  /external/clang/test/CodeGenCXX/
crash.cpp 20 struct string { struct in namespace:PR17476
21 string(const char *__s);
22 string &operator+=(const string &__str);
27 string start("__");

Completed in 461 milliseconds

1 2 34 5 6 7 8 91011>>