HomeSort by relevance Sort by last modified time
    Searched refs:string (Results 2101 - 2125 of 27455) sorted by null

<<81828384858687888990>>

  /external/libcxx/test/input.output/string.streams/istringstream/istringstream.cons/
Android.mk 17 test_makefile := external/libcxx/test/input.output/string.streams/istringstream/istringstream.cons/Android.mk
19 test_name := input.output/string.streams/istringstream/istringstream.cons/default
23 test_name := input.output/string.streams/istringstream/istringstream.cons/string
24 test_src := string.pass.cpp
27 test_name := input.output/string.streams/istringstream/istringstream.cons/move
  /external/libcxx/test/input.output/string.streams/ostringstream/ostringstream.cons/
Android.mk 17 test_makefile := external/libcxx/test/input.output/string.streams/ostringstream/ostringstream.cons/Android.mk
19 test_name := input.output/string.streams/ostringstream/ostringstream.cons/default
23 test_name := input.output/string.streams/ostringstream/ostringstream.cons/string
24 test_src := string.pass.cpp
27 test_name := input.output/string.streams/ostringstream/ostringstream.cons/move
  /external/libcxx/test/input.output/string.streams/stringbuf/stringbuf.cons/
Android.mk 17 test_makefile := external/libcxx/test/input.output/string.streams/stringbuf/stringbuf.cons/Android.mk
19 test_name := input.output/string.streams/stringbuf/stringbuf.cons/default
23 test_name := input.output/string.streams/stringbuf/stringbuf.cons/string
24 test_src := string.pass.cpp
27 test_name := input.output/string.streams/stringbuf/stringbuf.cons/move
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/
main.cpp 1 #include <string>
10 typedef std::list<std::string> string_list;
31 (text_list.push_back(std::string("goofy")));
32 (text_list.push_back(std::string("is")));
33 (text_list.push_back(std::string("smart")));
35 (text_list.push_back(std::string("!!!"))); // Set second break point at this line.
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/
main.cpp 2 #include <string>
5 typedef std::list<std::string> string_list;
26 text_list.push_back(std::string("goofy")); // Optional break point at this line.
27 text_list.push_back(std::string("is"));
28 text_list.push_back(std::string("smart"));
30 text_list.push_back(std::string("!!!"));
  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 18 #include <string>
28 std::string Name; // The name of the LLVM function "llvm.bswap.i32"
29 std::string EnumName; // The name of the enum "bswap_i32"
30 std::string GCCBuiltinName;// Name of the corresponding GCC builtin, or "".
31 std::string MSBuiltinName; // Name of the corresponding MS builtin, or "".
32 std::string TargetPrefix; // Target prefix, e.g. "ppc" for t-s intrinsics.
  /external/ltrace/testsuite/ltrace.main/
parameters.conf 3 void func_string(string[10])
4 int func_strlen(+string[retval])
5 int func_arg0(+string[arg0])
6 void func_strfixed(string[4])
8 void func_stringp(string*)
18 void func_struct(struct(int,int,int,array(struct(int,int),elt2)*,array(struct(int,int),3),string[elt3])*)
19 void func_work(+string);
20 void func_call(+string, string);
21 struct(float,char,char) func_struct_2(int, struct(string(array(char, 6)),float), double)
    [all...]
  /external/oprofile/libutil++/
file_manip.cpp 33 bool copy_file(string const & source, string const & destination)
79 bool is_directory(string const & dirname)
86 bool is_files_identical(string const & file1, string const & file2)
100 string const op_realpath(string const & name)
105 return string(tmp);
109 bool op_file_readable(string const & file)
116 list<string> * file_list = (list<string> *)name_list
    [all...]
  /external/chromium_org/net/cookies/
parsed_cookie.cc 73 inline bool SeekTo(std::string::const_iterator* it,
74 const std::string::const_iterator& end,
81 inline bool SeekPast(std::string::const_iterator* it,
82 const std::string::const_iterator& end,
87 inline bool SeekBackPast(std::string::const_iterator* it,
88 const std::string::const_iterator& end,
96 bool IsValidToken(const std::string& value) {
101 std::string separators = "()<>@,;:\\\"/[]?={} \t";
102 if (value.find_first_of(separators) != std::string::npos)
106 for (std::string::const_iterator i = value.begin(); i != value.end(); ++i)
    [all...]
  /external/jsoncpp/src/jsontestrunner/
main.cpp 18 static std::string
24 std::string s( buffer );
25 std::string::size_type index = s.find_last_of( "eE" );
26 if ( index != std::string::npos )
28 std::string::size_type hasSign = (s[index+1] == '+' || s[index+1] == '-') ? 1 : 0;
29 std::string::size_type exponentStartIndex = index + 1 + hasSign;
30 std::string normalized = s.substr( 0, exponentStartIndex );
31 std::string::size_type indexDigit = s.find_first_not_of( '0', exponentStartIndex );
32 std::string exponent = "0";
33 if ( indexDigit != std::string::npos ) // There is an exponent different from
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
GrammarRuleAttribute.cs 40 private readonly string _name;
42 public GrammarRuleAttribute(string name) {
46 public string Name {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
GrammarRuleAttribute.cs 42 private readonly string _name;
44 public GrammarRuleAttribute(string name)
49 public string Name
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1OctetString.java 14 byte[] string; field in class:ASN1OctetString
17 * return an Octet String from a tagged object.
42 * return an Octet String from the given object.
62 throw new IllegalArgumentException("failed to construct OCTET STRING from byte[]: " + e.getMessage());
79 * @param string the octets making up the octet string.
82 byte[] string)
84 if (string == null)
86 throw new NullPointerException("string cannot be null");
88 this.string = string
    [all...]
  /external/chromium_org/android_webview/common/
aw_content_client.h 14 std::string GetUserAgent();
19 virtual std::string GetProduct() const OVERRIDE;
20 virtual std::string GetUserAgent() const OVERRIDE;
  /external/chromium_org/base/prefs/
pref_store.h 8 #include <string>
31 virtual void OnPrefValueChanged(const std::string& key) = 0;
52 virtual bool GetValue(const std::string& key,
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_flash_lso_helper.h 8 #include <string>
23 typedef base::Callback<void(const std::vector<std::string>&)>
30 virtual void DeleteFlashLSOsForSite(const std::string& site) = 0;
browsing_data_helper.h 10 #include <string>
34 static bool IsWebScheme(const std::string& scheme);
38 static bool IsExtensionScheme(const std::string& scheme);
mock_browsing_data_quota_helper.h 9 #include <string>
19 virtual void RevokeHostQuota(const std::string& host) OVERRIDE;
21 void AddHost(const std::string& host,
  /external/chromium_org/chrome/browser/chromeos/dbus/
liveness_service_provider.h 8 #include <string>
49 void OnExported(const std::string& interface_name,
50 const std::string& method_name,
screen_lock_service_provider.h 8 #include <string>
38 void OnExported(const std::string& interface_name,
39 const std::string& method_name,
  /external/chromium_org/chrome/browser/chromeos/drive/
resource_entry_conversion.h 8 #include <string>
38 std::string* out_parent_resource_id);
45 std::string* out_parent_resource_id);
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_persistence.h 8 #include <string>
44 void SetUserLRUInputMethodPreferenceForTesting(const std::string& username,
45 const std::string& input_method,
  /external/chromium_org/chrome/browser/chromeos/login/supervised/
supervised_user_test_base.h 7 #include <string>
56 void AddChange(const std::string& mu_id,
57 const std::string& key,
79 void JSEval(const std::string& script);
81 void JSExpectAsync(const std::string& function);
83 void JSSetTextField(const std::string& element_selector,
84 const std::string& value);
88 void FillNewUserData(const std::string& display_name);
89 void StartUserCreation(const std::string& button_id,
90 const std::string& expected_display_name)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/test/
app_window_waiter.h 8 #include <string>
26 const std::string& app_id);
36 std::string app_id_;
  /external/chromium_org/chrome/browser/chromeos/net/
network_portal_detector_test_utils.h 8 #include <string>
22 EnumHistogramChecker(const std::string& histogram, int count,
35 std::string histogram_;

Completed in 1649 milliseconds

<<81828384858687888990>>