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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-320922.js 30 var string = "hello world"; variable
33 %_OneByteSeqStringSetChar(string, 0, 0x48);
36 assertEquals(expected, string);
38 assertEquals(expected, string);
  /external/clang/test/CodeGenCXX/
template-dependent-bind-temporary.cpp 4 struct string { struct
5 string (const string& );
6 string ();
7 ~string();
10 string operator + (char ch, const string&);
15 string result;
2010-05-11-alwaysinlineinstantiation.cpp 26 typedef basic_string<char> string; typedef
32 string s;
  /external/clang/test/SemaCXX/
conversion-incomplete-type.cpp 3 struct string {}; struct
11 void test(const string& s) {
12 expectStringPiece(s); // expected-error {{no viable conversion from 'const string' to incomplete type 'const StringPiece'}}
19 static void test(const string& s) {
20 expectStringPiece(s); // expected-error {{no viable conversion from 'const string' to incomplete type 'const StringPiece'}}
PR9461.cpp 7 typedef basic_string<char> string; typedef
27 {string a;}
29 struct runtime_error{runtime_error(string);};
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stringfwd.h 0 // String support -*- C++ -*-
56 typedef basic_string<char> string; typedef
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stringfwd.h 0 // String support -*- C++ -*-
56 typedef basic_string<char> string; typedef
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stringfwd.h 0 // String support -*- C++ -*-
56 typedef basic_string<char> string; typedef
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stringfwd.h 0 // String support -*- C++ -*-
56 typedef basic_string<char> string; typedef
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stringfwd.h 0 // String support -*- C++ -*-
56 typedef basic_string<char> string; typedef
  /build/tools/
compare_fileslist.py 18 import cgi, os, string, sys namespace
39 lines = map(string.split, lines)
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Proxy_I1.java 27 String string(String s) throws Support_Proxy_ParentException, LinkageError; method in interface:Support_Proxy_I1
Support_Proxy_I2.java 26 String string(String s) throws Support_Proxy_SubException, Error; method in interface:Support_Proxy_I2
  /external/chromium/base/
nullable_string16.h 18 NullableString16(const string16& string, bool is_null)
19 : string_(string), is_null_(is_null) {
22 const string16& string() const { return string_; } function in class:NullableString16
  /external/chromium/sdch/open-vcdiff/src/
varint_bigendian.h 40 #include <string>
77 typedef std::string string; typedef in class:open_vcdiff::VarintBE
108 static void AppendToString(SignedIntegerType value, string* s);
  /external/chromium_org/content/common/indexed_db/
indexed_db_key_path.cc 17 IndexedDBKeyPath::IndexedDBKeyPath(const base::string16& string)
18 : type_(WebIDBKeyPathTypeString), string_(string) {}
30 const base::string16& IndexedDBKeyPath::string() const { function in class:content::IndexedDBKeyPath
  /external/chromium_org/ppapi/tests/
test_pdf.cc 20 void TestPDF::RunTests(const std::string& filter) {
25 std::string TestPDF::TestGetLocalizedString() {
26 pp::Var string = pp::PDF::GetLocalizedString(instance_, local
28 ASSERT_TRUE(string.is_string());
30 string.AsString());
34 std::string TestPDF::TestGetResourceImage() {
  /external/chromium_org/sdch/open-vcdiff/src/
varint_bigendian.h 40 #include <string>
77 typedef std::string string; typedef in class:open_vcdiff::VarintBE
108 static void AppendToString(SignedIntegerType value, string* s);
  /external/chromium_org/third_party/WebKit/Source/wtf/testing/
WTFTestHelpersTest.cpp 39 #include <string>
45 CString toCStringThroughPrinter(const String& string)
48 output << string; local
49 const std::string& result = output.str();
58 EXPECT_EQ(CString("\"\\u0000\\u0001\\u0002\\u0003\\u0004\\u0005\\u0006\\u0007\""), toCStringThroughPrinter(String("\x00\x01\x02\x03\x04\x05\x06\x07", 8)));
59 EXPECT_EQ(CString("\"\\u0008\\t\\n\\u000B\\u000C\\r\\u000E\\u000F\""), toCStringThroughPrinter(String("\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F", 8)));
60 EXPECT_EQ(CString("\"\\u0010\\u0011\\u0012\\u0013\\u0014\\u0015\\u0016\\u0017\""), toCStringThroughPrinter(String("\x10\x11\x12\x13\x14\x15\x16\x17", 8)));
61 EXPECT_EQ(CString("\"\\u0018\\u0019\\u001A\\u001B\\u001C\\u001D\\u001E\\u001F\""), toCStringThroughPrinter(String("\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F", 8)));
64 EXPECT_EQ(CString("<null>"), toCStringThroughPrinter(String()));
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
mesadef.py 39 import string namespace
206 if offset >= 0 and string.find(name, "unused") == -1:
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
utils.h 36 const char * string; member in struct:dri_debug_control
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayInput.h 27 SkString string; member in class:SkInput
  /external/clang/test/SemaTemplate/
delegating-constructors.cpp 5 class string class in namespace:PR10457
7 string(const char* str, unsigned);
11 string(const char (&str)[N]) function in class:PR10457::string
12 : string(str) {} // expected-error{{constructor for 'string<6>' creates a delegation cycle}}
16 string s("hello");
  /external/mesa3d/src/mapi/glapi/gen/
mesadef.py 39 import string namespace
206 if offset >= 0 and string.find(name, "unused") == -1:
  /external/mesa3d/src/mesa/drivers/dri/common/
utils.h 36 const char * string; member in struct:dri_debug_control

Completed in 808 milliseconds

12 3 4 5 6 7 8 91011>>