HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 901 - 925 of 1323) sorted by null

<<31323334353637383940>>

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptSource.js 58 * @return {string}
62 // We don't use String(obj) because it could be overriden.
68 * @return {string}
109 /** @type {!Object.<number, string>} */
111 /** @type {!Object.<string, Array.<number>>} */
113 /** @type {!Object.<string, Object>} */
118 * @type {Object.<string, boolean>}
125 string: true
141 * @param {string} groupName
171 * @param {Array.<string>|string|boolean} column
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineTextBox.cpp 508 // truncated string i.e. |Hello|CBA| -> |...lo|CBA|
655 StringView string; local
657 string = textRenderer()->text().createView();
658 if (static_cast<unsigned>(length) != string.length() || m_start)
659 string.narrow(m_start, length);
662 combinedText->getStringToRender(m_start, string, length);
667 TextRun textRun = constructTextRun(styleToUse, font, string, maximumLength, hasHyphen() ? &charactersWithHyphen : 0);
840 StringView string = textRenderer()->text().createView(); local
1496 StringView string = textRenderer->text().createView(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/
PluginObject.cpp 35 #include <string.h>
651 NPUTF8* string = browser->utf8fromidentifier(identifiers[i]); local
653 if (!string)
657 STRINGZ_TO_NPVARIANT(string, args[0]);
661 browser->memfree(string);
777 static char* toCString(const NPString& string)
779 char* result = static_cast<char*>(malloc(string.UTF8Length + 1));
780 memcpy(result, string.UTF8Characters, string.UTF8Length);
781 result[string.UTF8Length] = '\0'
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.cpp 72 void addStringForStats(StringImpl* string)
75 liveStrings().add(string);
78 void removeStringForStats(StringImpl* string)
81 liveStrings().remove(string);
84 static void fillWithSnippet(const StringImpl* string, Vector<char>& snippet)
89 size_t expectedLength = std::min(string->length(), kMaxSnippetLength);
96 for (i = 0; i < string->length() && i < kMaxSnippetLength; ++i) {
97 UChar c = (*string)[i];
103 if (i < string->length()) {
111 static bool isUnnecessarilyWide(const StringImpl* string)
190 StringImpl* string = static_cast<StringImpl*>(*iter); local
297 StringImpl* string = static_cast<StringImpl*>(partitionAllocGeneric(Partitions::getBufferPartition(), size)); local
315 StringImpl* string = static_cast<StringImpl*>(partitionAllocGeneric(Partitions::getBufferPartition(), size)); local
335 StringImpl* string = static_cast<StringImpl*>(partitionReallocGeneric(Partitions::getBufferPartition(), originalString.leakRef(), size)); local
355 StringImpl* string = static_cast<StringImpl*>(partitionReallocGeneric(Partitions::getBufferPartition(), originalString.leakRef(), size)); local
430 RefPtr<StringImpl> string = createUninitialized(length, data); local
441 RefPtr<StringImpl> string = createUninitialized(length, data); local
452 RefPtr<StringImpl> string = createUninitialized(length, data); local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
cpp.py 44 import string namespace
75 'stdiostream.h', 'streambuf.h', 'stream.h', 'strfile.h', 'string',
128 """Matches the string with the pattern, caching the compiled regexp."""
135 """Searches the string for the pattern, caching the compiled regexp."""
156 """Returns the string with replacement done.
172 s: The string on which to do the replacements.
264 """Splits a string into two parts up to first unmatched ')'.
267 s: a string which is a substring of line after '('
339 The empty string if the header is in the right order, or an
732 """Does line terminate so, that the next symbol is in string constant
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py 407 """Encodes an object to a string in some encoding, or to Unicode.
430 the string in DEFAULT_OUTPUT_ENCODING. That encoding needs to be
442 """text.string gives you text. This is for backwards
443 compatibility for Navigable*String, but for CData* it lets you
444 get the string without the CData wrapper."""
445 if attr == 'string':
557 def setString(self, string):
558 """Replace the contents of the tag with a string"""
560 self.append(string)
562 string = property(getString, setString variable in class:Tag
1969 import string namespace
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
creststn.c 24 #include "string.h"
83 * Convert an integer, positive or negative, to a character string radix 10.
105 /* Reverse the string */
453 log_err("Genrb produced a string larger than expected\n");
487 log_err("Empty string returned invalid value\n");
494 /* This test reads the string "abc\u0000def" from the bundle */
495 /* if everything is working correctly, the size of this string */
498 strcpy(action, "getting and testing of string with embeded zero");
593 log_err("Did not get the expected string for testescape\n");
630 log_err("genrb failed to unescape string\n")
1594 const UChar* string = NULL; local
2110 const UChar *string = NULL, *sequence = NULL; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
ssearch.cpp 43 #include <string.h>
685 OrderList(UCollator *coll, const UnicodeString &string, int32_t stringOffset = 0);
710 OrderList::OrderList(UCollator *coll, const UnicodeString &string, int32_t stringOffset)
714 UCollationElements *elems = ucol_openElements(coll, string.getBuffer(), string.length(), &status);
1045 static UnicodeString &escape(const UnicodeString &string, UnicodeString &buffer)
1047 for(int32_t i = 0; i < string.length(); i += 1) {
1048 UChar32 ch = string.char32At(i);
1824 const UnicodeString *string = NULL; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-port.h 47 // GTEST_HAS_GLOBAL_STRING - Define it to 1/0 to indicate that ::string
49 // ::string, which is different to std::string).
50 // GTEST_HAS_GLOBAL_WSTRING - Define it to 1/0 to indicate that ::string
163 // string.
166 // string.
184 // StringFromGTestEnv() - parses a string environment variable.
190 #include <string.h>
198 #include <string> // NOLINT
333 // The user told us that ::std::string isn't available
754 typedef ::string string; typedef in namespace:testing::internal
756 typedef ::std::string string; typedef in namespace:testing::internal
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
kssl.c 71 #include <string.h>
803 *kstring(char *string)
807 return ((string == NULL)? null: string);
936 /* Set kssl_err error info when reason text is a simple string
1655 char **string; local
    [all...]
ssltest.c 151 #include <string.h>
229 char *string; member in struct:app_verify_arg
308 static const char rnd_seed[] = "string to make the random number generator think it has entropy";
    [all...]
  /external/chromium_org/tools/symsrc/
pefile.py 34 import string namespace
495 self.string = None
499 """Get the RVA of the string."""
505 """Return the escaped ASCII representation of the string."""
508 if char in string.printable:
513 if self.string:
514 return ''.join([convert_char(c) for c in self.string])
520 """Make this instance None, to express it's no known string type."""
527 self.string = self.pe.get_string_u_at_rva(
535 Such RVA could indicate the natural end of the string and will be checke
    [all...]
  /external/chromium_org/v8/src/
ic.cc 195 Handle<String> name,
248 String* string = String::cast(*object); local
249 // Check there's the right string value or wrapper in the receiver slot.
250 ASSERT(string == args[0] || string == JSValue::cast(args[0])->value());
256 if (index < 0 || index >= string->length()) {
273 Handle<String> name) {
356 void IC::TryRemoveInvalidHandlers(Handle<Map> map, Handle<String> name)
886 String* string = String::cast(JSValue::cast(*object)->value()); local
    [all...]
serialize.cc 1739 ExternalAsciiString* string = ExternalAsciiString::cast(source); local
    [all...]
  /external/chromium_org/v8/test/cctest/
test-heap.cc 83 static void CheckOddball(Isolate* isolate, Object* obj, const char* string) {
89 CHECK(String::cast(print_string)->IsUtf8EqualTo(CStrVector(string)));
93 static void CheckSmi(Isolate* isolate, int value, const char* string) {
98 CHECK(String::cast(print_string)->IsUtf8EqualTo(CStrVector(string)));
102 static void CheckNumber(Isolate* isolate, double value, const char* string) {
109 CHECK(String::cast(print_string)->IsUtf8EqualTo(CStrVector(string)));
209 Handle<String> s = factory->NewStringFromAscii(CStrVector("fisk hest "))
347 Handle<String> string = factory->NewStringFromAscii(CStrVector(name)); local
    [all...]
  /external/clang/bindings/python/clang/
cindex.py 19 * string results are returned as Python strings, not CXString objects.
346 """The string name of the category for this diagnostic."""
776 # A string literal.
884 # ObjCStringLiteral, used for Objective-C string literals i.e. "foo".
1781 def string(self): member in class:CompletionChunk
1889 def string(self): member in class:CodeCompletionResult
    [all...]
  /external/clang/test/Analysis/
malloc.c 1049 char * string = malloc(sizeof(char)*10);
1050 passConstPtr(string);
1180 char * string = malloc(sizeof(char)*10);
1181 string += 1;
1182 int length = strlen(string); // expected-warning {{Potential leak of memory pointed to by 'string'}}
1186 char * string = malloc(sizeof(char)*10);
1187 string += 1;
1188 int length = strlen(string);
1189 free(string); // expected-warning {{Argument to free() is offset by 1 byte from the start of memory allocated (…)
1048 char * string = malloc(sizeof(char)*10); local
1179 char * string = malloc(sizeof(char)*10); local
1185 char * string = malloc(sizeof(char)*10); local
1192 char * string = malloc(sizeof(char)*10); local
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/stock/
ProxyBuilderTest.java 36 public String simpleMethod() {
48 private final String argument;
50 public ConstructorTakesArguments(String arg) {
54 public String method() {
61 .constructorArgTypes(String.class)
95 public String foo() {
105 public String nonFinalMethod() {
109 public final String finalMethod() {
121 private String result() {
131 String result()
296 private final String string; field in class:ProxyBuilderTest.TwoConstructors
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-bcel.jar 
  /external/gtest/include/gtest/internal/
gtest-port.h 47 // GTEST_HAS_GLOBAL_STRING - Define it to 1/0 to indicate that ::string
49 // ::string, which is different to std::string).
50 // GTEST_HAS_GLOBAL_WSTRING - Define it to 1/0 to indicate that ::string
163 // string.
166 // string.
184 // StringFromGTestEnv() - parses a string environment variable.
190 #include <string.h>
198 #include <string> // NOLINT
332 // The user told us that ::std::string isn't available
772 typedef ::string string; typedef in namespace:testing::internal
774 typedef ::std::string string; typedef in namespace:testing::internal
    [all...]
  /external/icu4c/test/cintltst/
creststn.c 24 #include "string.h"
83 * Convert an integer, positive or negative, to a character string radix 10.
105 /* Reverse the string */
453 log_err("Genrb produced a string larger than expected\n");
487 log_err("Empty string returned invalid value\n");
494 /* This test reads the string "abc\u0000def" from the bundle */
495 /* if everything is working correctly, the size of this string */
498 strcpy(action, "getting and testing of string with embeded zero");
593 log_err("Did not get the expected string for testescape\n");
630 log_err("genrb failed to unescape string\n")
1600 const UChar* string = NULL; local
2116 const UChar *string = NULL, *sequence = NULL; local
    [all...]
  /external/icu4c/test/intltest/
ssearch.cpp 334 OrderList(UCollator *coll, const UnicodeString &string, int32_t stringOffset = 0);
359 OrderList::OrderList(UCollator *coll, const UnicodeString &string, int32_t stringOffset)
363 UCollationElements *elems = ucol_openElements(coll, string.getBuffer(), string.length(), &status);
693 static UnicodeString &escape(const UnicodeString &string, UnicodeString &buffer)
695 for(int32_t i = 0; i < string.length(); i += 1) {
696 UChar32 ch = string.char32At(i);
813 // searchTime() A quick and dirty performance test for string search.
1122 const UnicodeString *string = NULL; local
    [all...]
  /external/kernel-headers/original/linux/
usb.h 77 char *string; /* iInterface string, if present */ member in struct:usb_host_interface
198 * @string: pointer to the cached version of the iConfiguration string, if
236 char *string; /* iConfiguration string, if present */ member in struct:usb_host_config
358 char *product; /* iProduct string, if present */
359 char *manufacturer; /* iManufacturer string, if present */
360 char *serial; /* iSerialNumber string, if present */
435 * @buf: where to put the string
    [all...]
  /external/libmtp/src/
ptp-pack.c 106 uint16_t string[PTP_MAXSTRLEN+1]; local
117 /* copy to string[] to ensure correct alignment for iconv(3) */
118 memcpy(string, &data[offset+1], length * sizeof(string[0]));
119 string[length] = 0x0000U; /* be paranoid! add a terminator. */
123 src = (char *)string;
124 srclen = length * sizeof(string[0]);
160 ptp_pack_string(PTPParams *params, char *string, unsigned char* data, uint16_t offset, uint8_t *len)
165 size_t convlen = strlen(string);
173 char *stringp = string;
    [all...]
  /external/libvpx/libvpx/tools/
cpplint.py 85 import string namespace
205 'runtime/string',
260 'stdiostream.h', 'streambuf.h', 'stream.h', 'strfile.h', 'string',
409 """Matches the string with the pattern, caching the compiled regexp."""
419 """Searches the string for the pattern, caching the compiled regexp."""
506 The empty string if the header is in the right order, or an
559 self.errors_by_category = {} # string to int dict storing error counts
587 filters: A string of comma-separated filters (eg "+whitespace/indent").
667 filters: A string of comma-separated filters (eg "whitespace/indent").
865 category: A string used to describe the "category" this bu
    [all...]

Completed in 1153 milliseconds

<<31323334353637383940>>