HomeSort by relevance Sort by last modified time
    Searched refs:string (Results 3451 - 3475 of 46739) sorted by null

<<131132133134135136137138139140>>

  /packages/apps/Settings/src/com/android/settings/users/
UserDialogs.java 56 .setPositiveButton(R.string.user_delete_button, onConfirmListener)
57 .setNegativeButton(android.R.string.cancel, null);
59 builder.setTitle(R.string.work_profile_confirm_remove_title);
64 builder.setMessage(R.string.work_profile_confirm_remove_message);
67 builder.setTitle(R.string.user_confirm_remove_self_title);
68 builder.setMessage(R.string.user_confirm_remove_self_message);
70 builder.setTitle(R.string.user_profile_confirm_remove_title);
71 builder.setMessage(R.string.user_profile_confirm_remove_message);
73 builder.setTitle(R.string.user_confirm_remove_title);
74 builder.setMessage(R.string.user_confirm_remove_message)
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/json/
tags.go 11 // tagOptions is the string following a comma in a struct field's "json"
12 // tag, or the empty string. It does not include the leading comma.
13 type tagOptions string
17 func parseTag(tag string) (string, tagOptions) {
26 // string boundary or commas.
27 func (o tagOptions) Contains(optionName string) bool {
31 s := string(o)
33 var next string
  /prebuilts/go/darwin-x86/src/net/
cgo_stub.go 15 func (eai addrinfoErrno) Error() string { return "<nil>" }
19 func cgoLookupHost(ctx context.Context, name string) (addrs []string, err error, completed bool) {
23 func cgoLookupPort(ctx context.Context, network, service string) (port int, err error, completed bool) {
27 func cgoLookupIP(ctx context.Context, name string) (addrs []IPAddr, err error, completed bool) {
31 func cgoLookupCNAME(ctx context.Context, name string) (cname string, err error, completed bool) {
35 func cgoLookupPTR(ctx context.Context, addr string) (ptrs []string, err error, completed bool) {
  /prebuilts/go/linux-x86/src/encoding/json/
tags.go 11 // tagOptions is the string following a comma in a struct field's "json"
12 // tag, or the empty string. It does not include the leading comma.
13 type tagOptions string
17 func parseTag(tag string) (string, tagOptions) {
26 // string boundary or commas.
27 func (o tagOptions) Contains(optionName string) bool {
31 s := string(o)
33 var next string
  /prebuilts/go/linux-x86/src/net/
cgo_stub.go 15 func (eai addrinfoErrno) Error() string { return "<nil>" }
19 func cgoLookupHost(ctx context.Context, name string) (addrs []string, err error, completed bool) {
23 func cgoLookupPort(ctx context.Context, network, service string) (port int, err error, completed bool) {
27 func cgoLookupIP(ctx context.Context, name string) (addrs []IPAddr, err error, completed bool) {
31 func cgoLookupCNAME(ctx context.Context, name string) (cname string, err error, completed bool) {
35 func cgoLookupPTR(ctx context.Context, addr string) (ptrs []string, err error, completed bool) {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
string_util.cc 33 double one_k, std::string* mantissa,
88 std::string ExponentToPrefix(int64_t exponent, bool iec) {
97 return array[index] + std::string("i");
99 return std::string(1, array[index]);
102 std::string ToBinaryStringFullySpecified(double value, double threshold,
104 std::string mantissa;
111 void AppendHumanReadable(int n, std::string* str) {
118 std::string HumanReadableNumber(double n) {
125 std::string StringPrintFImp(const char* msg, va_list args) {
141 if (ret == 0) return std::string{};
    [all...]
  /system/core/init/
descriptors.cpp 36 DescriptorInfo::DescriptorInfo(const std::string& name, const std::string& type, uid_t uid,
37 gid_t gid, int perm, const std::string& context)
52 void DescriptorInfo::CreateAndPublish(const std::string& globalContext) const {
54 const std::string& contextStr = context_.empty() ? globalContext : context_;
59 std::string publishedName = key() + name_;
63 std::string val = std::to_string(fd);
73 SocketInfo::SocketInfo(const std::string& name, const std::string& type, uid_t uid,
74 gid_t gid, int perm, const std::string& context
    [all...]
  /system/extras/simpleperf/
cmd_kmem_test.cpp 37 std::string content;
38 std::vector<std::string> lines;
41 static void KmemReportRawFile(const std::string& perf_data,
42 const std::vector<std::string>& additional_args,
46 std::vector<std::string> args = {"report", "-i", perf_data, "-o",
52 std::vector<std::string> raw_lines =
56 std::string s = android::base::Trim(line);
65 static void KmemReportFile(const std::string& perf_data,
66 const std::vector<std::string>& additional_args,
74 static bool RunKmemRecordCmd(std::vector<std::string> v
    [all...]
  /system/tpm/attestation/common/
crypto_utility_impl.cc 20 #include <string>
42 std::string GetOpenSSLError() {
47 std::string error_string(data, data_len);
52 unsigned char* StringAsOpenSSLBuffer(std::string* s) {
72 std::string* random_data) const {
82 bool CryptoUtilityImpl::CreateSealedKey(std::string* aes_key,
83 std::string* sealed_key) {
95 bool CryptoUtilityImpl::EncryptData(const std::string& data,
96 const std::string& aes_key,
97 const std::string& sealed_key
    [all...]
  /system/tpm/trunks/
resource_manager.h 24 #include <string>
65 void SendCommand(const std::string& command,
68 std::string SendCommandAndWait(const std::string& command) override;
77 std::string parameter_data;
124 std::string* buffer);
149 std::string GetActualContextFromExternalContext(
150 const std::string& external_context);
170 TPM_RC ParseCommand(const std::string& command, MessageInfo* message_info);
176 const std::string& response
    [all...]
  /system/vold/
KeyStorage.cpp 70 static const std::string kStretchPrefix_scrypt = "scrypt ";
81 static bool checkSize(const std::string& kind, size_t actual, size_t expected) {
90 static void hashWithPrefix(char const* prefix, const std::string& tohash, std::string* res) {
97 std::string hashingPrefix = prefix;
106 const std::string& appId, std::string* key) {
130 const KeyAuthentication& auth, const std::string& appId) {
142 static bool readFileToString(const std::string& filename, std::string* result)
    [all...]
  /art/dexlayout/
dex_verify.h 31 std::string* error_msg);
36 std::string* error_msg);
37 bool VerifyId(dex_ir::StringId* orig, dex_ir::StringId* output, std::string* error_msg);
38 bool VerifyId(dex_ir::TypeId* orig, dex_ir::TypeId* output, std::string* error_msg);
39 bool VerifyId(dex_ir::ProtoId* orig, dex_ir::ProtoId* output, std::string* error_msg);
40 bool VerifyId(dex_ir::FieldId* orig, dex_ir::FieldId* output, std::string* error_msg);
41 bool VerifyId(dex_ir::MethodId* orig, dex_ir::MethodId* output, std::string* error_msg);
45 std::string* error_msg);
46 bool VerifyClassDef(dex_ir::ClassDef* orig, dex_ir::ClassDef* output, std::string* error_msg);
52 std::string* error_msg)
    [all...]
  /art/libdexfile/dex/
dex_cache_resolved_classes.h 20 #include <string>
31 DexCacheResolvedClasses(const std::string& dex_location,
32 const std::string& base_location,
58 const std::string& GetDexLocation() const {
62 const std::string& GetBaseLocation() const {
79 const std::string dex_location_;
80 const std::string base_location_;
  /art/tools/veridex/
hidden_api.cc 26 std::string HiddenApi::GetApiMethodName(const DexFile& dex_file, uint32_t method_index) {
36 std::string HiddenApi::GetApiFieldName(const DexFile& dex_file, uint32_t field_index) {
47 void HiddenApi::FillList(const char* filename, std::set<std::string>& entries) {
52 std::string str;
56 if (pos != std::string::npos) {
60 if (pos != std::string::npos) {
65 if (pos != std::string::npos) {
  /bootable/recovery/
mounts.cpp 24 #include <string.h>
27 #include <string>
33 std::string device;
34 std::string mount_point;
35 std::string filesystem;
36 std::string flags;
73 // Intentionally pass the empty string to umount if the caller tries to unmount a volume they
75 std::string mount_point = volume->mount_point;
  /bootable/recovery/otafault/
config.cpp 20 #include <string>
31 static std::map<std::string, bool> should_inject_cache;
33 static std::string get_type_path(const char* io_type) {
49 const std::string type_path = get_type_path(io_type);
64 std::string fault_fname(const char* io_type) {
65 std::string type_path = get_type_path(io_type);
66 std::string fname;
  /bootable/recovery/tests/component/
uncrypt_test.cpp 24 #include <string>
36 static const std::string UNCRYPT_SOCKET = "/dev/socket/uncrypt";
37 static const std::string INIT_SVC_SETUP_BCB = "init.svc.setup-bcb";
38 static const std::string INIT_SVC_CLEAR_BCB = "init.svc.clear-bcb";
39 static const std::string INIT_SVC_UNCRYPT = "init.svc.uncrypt";
49 std::string setup_bcb = android::base::GetProperty(INIT_SVC_SETUP_BCB, "");
50 std::string clear_bcb = android::base::GetProperty(INIT_SVC_CLEAR_BCB, "");
51 std::string uncrypt = android::base::GetProperty(INIT_SVC_UNCRYPT, "");
69 std::string err;
76 std::string err
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
ExceptionExtensions.cs 42 public static string getMessage(Exception e) {
60 public static string getMethodName(StackFrame frame) {
65 public static string getClassName(StackFrame frame) {
75 string trace = e.StackTrace ?? string.Empty;
76 foreach (string line in trace.Split('\n', '\r')) {
77 if (!string.IsNullOrEmpty(line))
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
RewriteCardinalityException.cs 47 private readonly string _elementDescription;
52 public RewriteCardinalityException(string elementDescription)
57 public RewriteCardinalityException(string elementDescription, Exception innerException)
61 public RewriteCardinalityException(string message, string elementDescription)
66 public RewriteCardinalityException(string message, string elementDescription, Exception innerException)
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
RewriteCardinalityException.cs 49 private readonly string _elementDescription;
55 public RewriteCardinalityException(string elementDescription)
61 public RewriteCardinalityException(string elementDescription, Exception innerException)
66 public RewriteCardinalityException(string message, string elementDescription)
72 public RewriteCardinalityException(string message, string elementDescription, Exception innerException)
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ExceptionExtensions.cs 45 public static string getMessage( this Exception e )
65 public static string getMethodName( this StackFrame frame )
71 public static string getClassName( this StackFrame frame )
84 string trace = e.StackTrace ?? string.Empty;
85 foreach ( string line in trace.Split( '\n', '\r' ) )
87 if ( !string.IsNullOrEmpty( line ) )
  /external/brotli/csharp/org/brotli/dec/
Dictionary.cs 32 internal static string GetData()
34 return "timedownlifeleftbackcodedatashowonlysitecityopenjustlikefreeworktextyearoverbodyloveformbookplaylivelinehelphomesidemorewordlongthemviewfindpagedaysfullheadtermeachareafromtruemarkableuponhighdatelandnewsevennextcasebothpostusedmadehandherewhatnameLinkblogsizebaseheldmakemainuser') +holdendswithNewsreadweresigntakehavegameseencallpathwellplusmenufilmpartjointhislistgoodneedwayswestjobsmindalsologorichuseslastteamarmyfoodkingwilleastwardbestfirePageknowaway.pngmovethanloadgiveselfnotemuchfeedmanyrockicononcelookhidediedHomerulehostajaxinfoclublawslesshalfsomesuchzone100%onescareTimeracebluefourweekfacehopegavehardlostwhenparkkeptpassshiproomHTMLplanTypedonesavekeepflaglinksoldfivetookratetownjumpthusdarkcardfilefearstaykillthatfallautoever.comtalkshopvotedeepmoderestturnbornbandfellroseurl(skinrolecomeactsagesmeetgold.jpgitemvaryfeltthensenddropViewcopy1.0\"</a>stopelseliestourpack.gifpastcss?graymean&gt;rideshotlatesaidroadvar feeljohnrickportfast'UA-dead</b>poorbilltypeU.S.woodmust2px;Inforankwidewantwalllead[0];paulwavesure$('#waitmassarmsgoesgainlangpaid!-- lockunitrootwalkfirmwifexml\"songtest20pxkindrowstoolfontmailsafestarmapscorerainflowbabyspansays4px;6px;artsfootrealwikiheatsteptriporg/lakeweaktoldFormcastfansbankveryrunsjulytask1px;goalgrewslowedgeid=\"sets5px;.js?40pxif (soonseatnonetubezerosentreedfactintogiftharm18pxcamehillboldzoomvoideasyringfillpeakinitcost3px;jacktagsbitsrolleditknewnear<!--growJSONdutyNamesaleyou lotspainjazzcoldeyesfishwww.risktabsprev10pxrise25pxBlueding300,ballfordearnwildbox.fairlackverspairjunetechif(!pickevil$(\"#warmlorddoespull,000ideadrawhugespotfundburnhrefcellkeystickhourlossfuel12pxsuitdealRSS\"agedgreyGET\"easeaimsgirlaids8px;navygridtips#999warsladycars); }php?helltallwhomzh:\u00E5*/\r\n 100hall.\n\nA7px;pushchat0px;crew*/</hash75pxflatrare && tellcampontolaidmissskiptentfinemalegetsplot400,\r\n\r\ncoolfeet.php<br>ericmostguidbelldeschairmathatom/img&#82luckcent000;tinygonehtmlselldrugFREEnodenick?id=losenullvastwindRSS wearrelybeensamedukenasacapewishgulfT23:hitsslotgatekickblurthey15px''););\">msiewinsbirdsortbetaseekT18:ordstreemall60pxfarm\u00E2\u0080\u0099sboys[0].');\"POSTbearkids);}}marytend(UK)quadzh:\u00E6-siz----prop');\rliftT19:viceandydebt>RSSpoolneckblowT16:doorevalT17:letsfailoralpollnovacolsgene \u00E2\u0080\u0094softrometillross<h3>pourfadepink<tr>mini)|!(minezh:\u00E8barshear00);milk -->ironfreddiskwentsoilputs/js/holyT22:ISBNT20:adamsees<h2>json', 'contT21: RSSloopasiamoon</p>soulLINEfortcartT14:<h1>80px!--<9px;T04:mike:46ZniceinchYorkricezh:\u00E4'));puremageparatonebond:37Z_of_']);000,zh:\u00E7tankyardbowlbush:56ZJava30px\n|}\n%C3%:34ZjeffEXPIcashvisagolfsnowzh:\u00E9quer.csssickmeatmin.binddellhirepicsrent:36ZHTTP-201fotowolfEND xbox:54ZBODYdick;\n}\nexit:35Zvarsbeat'});diet999;anne}}</[i].Langkm\u00C2\u00B2wiretoysaddssealalex;\n\t}echonine.org005)tonyjewssandlegsroof000) 200winegeardogsbootgarycutstyletemption.xmlcockgang$('.50pxPh.Dmiscalanloandeskmileryanunixdisc);}\ndustclip).\n\n70px-200DVDs7]><tapedemoi++)wageeurophiloptsholeFAQsasin-26TlabspetsURL bulkcook;}\r\nHEAD[0])abbrjuan(198leshtwin</i>sonyguysfuckpipe|-\n!002)ndow[1];[];\nLog salt\r\n\t\tbangtrimbath){\r\n00px\n});ko:\u00ECfeesad>\rs:// [];tollplug(){\n{\r\n .js'200pdualboat.JPG);\n}quot);\n\n');\n\r\n}\r201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037201320122011201020092008200720062005200420032002200120001999199819971996199519941993199219911990198919881987198619851984198319821981198019791978197719761975197419731972197119701969196819671966196519641963196219611960195919581957195619551954195319521951195010001024139400009999comom\u00C3\u00A1sesteestaperotodohacecadaa\u00C3\u00B1obiend\u00C3\u00ADaas\u00C3\u00ADvidacasootroforosolootracualdijosidograntipotemadebealgoqu\u00C3\u00A9estonadatrespococasabajotodasinoaguapuesunosantediceluisellamayozonaamorpisoobraclicellodioshoracasi\u00D0\u00B7\u00D0\u00B0\u00D0\u00BD\u00D0\u00B0\u00D0\u00BE\u00D0\u00BC\u00D1\u0080\u00D0\u00B0\u00D1\u0080\u00D1\u0083\u00D1\u0082\u00D0\u00B0\u00D0\u00BD\u00D0\u00B5\u00D0\u00BF\u00D0\u00BE\u00D0\u00BE\u00D1\u0082\u00D0\u00B8\u00D0\u00B7\u00D0\u00BD\u00D0\u00BE\u00D0\u00B4\u00D0\u00BE\u00D1\u0082\u00D0\u00BE\u00D0\u00B6\u00D0\u00B5\u00D0\u00BE\u00D0\u00BD\u00D0\u00B8\u00D1\u0085\u00D0\u009D\u00D0\u00B0\u00D0\u00B5\u00D0\u00B5\u00D0\u00B1\u00D1\u008B\u00D0\u00BC\u00D1\u008B\u00D0\u0092\u00D1\u008B\u00D1\u0081\u00D0\u00BE\u00D0\u00B2\u00D1\u008B\u00D0\u00B2\u00D0\u00BE\u00D0\u009D\u00D0\u00BE\u00D0\u00BE\u00D0\u00B1\u00D0\u009F\u00D0\u00BE\u00D0\u00BB\u00D0\u00B8\u00D0\u00BD\u00D0\u00B8\u00D0\u00A0\u00D0\u00A4\u00D0\u009D\u00D0\u00B5\u00D0\u009C\u00D1\u008B\u00D1\u0082\u00D1\u008B\u00D0\u009E\u00D0\u00BD\u00D0\u00B8\u00D0\u00BC\u00D0\u00B4\u00D0\u00B0\u00D0\u0097\u00D0\u00B0\u00D0\u0094\u00D0\u00B0\u00D0\u009D\u00D1\u0083\u00D0\u009E\u00D0\u00B1\u00D1\u0082\u00D0\u00B5\u00D0\u0098\u00D0\u00B7\u00D0\u00B5\u00D0\u00B9\u00D0\u00BD\u00D1\u0083\u00D0\u00BC\u00D0\u00BC\u00D0\u00A2\u00D1\u008B\u00D1\u0083\u00D0\u00B6\u00D9\u0081\u00D9\u008A\u00D8\u00A3\u00D9\u0086\u00D9\u0085\u00D8\u00A7\u00D9\u0085\u00D8\u00B9\u00D9\u0083\u00D9\u0084\u00D8\u00A3\u00D9\u0088\u00D8\u00B1\u00D8\u00AF\u00D9\u008A\u00D8\u00A7\u00D9\u0081\u00D9\u0089\u00D9\u0087\u00D9\u0088\u00D9\u0084\u00D9\u0085\u00D9\u0084\u00D9\u0083\u00D8\u00A7\u00D9\u0088\u00D9\u0084\u00D9\u0087\u00D8\u00A8\u00D8\u00B3\u00D8\u00A7\u00D9\u0084\u00D8\u00A5\u00D9\u0086\u00D9\u0087\u00D9\u008A\u00D8\u00A3\u00D9\u008A\u00D9\u0082\u00D8\u00AF\u00D9\u0087\u00D9\u0084\u00D8\u00AB\u00D9\u0085\u00D8\u00A8\u00D9\u0087\u00D9\u0084\u00D9\u0088\u00D9\u0084\u00D9\u008A\u00D8\u00A8\u00D9\u0084\u00D8\u00A7\u00D9\u008A\u00D8\u00A8\u00D9\u0083\u00D8\u00B4\u00D9\u008A\u00D8\u00A7\u00D9\u0085\u00D8\u00A3\u00D9\u0085\u00D9\u0086\u00D8\u00AA\u00D8\u00A8\u00D9\u008A\u00D9\u0084\u00D9\u0086\u00D8\u00AD\u00D8\u00A8\u00D9\u0087\u00D9\u0085\u00D9\u0085\u00D8\u00B4\u00D9\u0088\u00D8\u00B4firstvideolightworldmediawhitecloseblackrightsmallbooksplacemusicfieldorderpointvalueleveltableboardhousegroupworksyearsstatetodaywaterstartstyledeathpowerphonenighterrorinputabouttermstitletoolseventlocaltimeslargewordsgamesshortspacefocusclearmodelblockguideradiosharewomenagainmoneyimagenamesyounglineslatercolorgreenfront&amp;watchforcepricerulesbeginaftervisitissueareasbelowindextotalhourslabelprintpressbuiltlinksspeedstudytradefoundsenseundershownformsrangeaddedstillmovedtakenaboveflashfixedoftenotherviewschecklegalriveritemsquickshapehumanexistgoingmoviethirdbasicpeacestagewidthloginideaswrotepagesusersdrivestorebreaksouthvoicesitesmonthwherebuildwhichearthforumthreesportpartyClicklowerlivesclasslayerentrystoryusagesoundcourtyour birthpopuptypesapplyImagebeinguppernoteseveryshowsmeansextramatchtrackknownearlybegansuperpapernorthlearngivennamedendedTermspartsGroupbrandusingwomanfalsereadyaudiotakeswhile.com/livedcasesdailychildgreatjudgethoseunitsneverbroadcoastcoverapplefilescyclesceneplansclickwritequeenpieceemailframeolderphotolimitcachecivilscaleenterthemetheretouchboundroyalaskedwholesincestock namefaithheartemptyofferscopeownedmightalbumthinkbloodarraymajortrustcanonunioncountvalidstoneStyleLoginhappyoccurleft:freshquitefilmsgradeneedsurbanfightbasishoverauto;route.htmlmixedfinalYour slidetopicbrownalonedrawnsplitreachRightdatesmarchquotegoodsLinksdoubtasyncthumballowchiefyouthnovel10px;serveuntilhandsCheckSpacequeryjamesequaltwice0,000Startpanelsongsroundeightshiftworthpostsleadsweeksavoidthesemilesplanesmartalphaplantmarksratesplaysclaimsalestextsstarswrong</h3>thing.org/multiheardPowerstandtokensolid(thisbringshipsstafftriedcallsfullyfactsagentThis //-->adminegyptEvent15px;Emailtrue\"crossspentblogsbox\">notedleavechinasizesguest</h4>robotheavytrue,sevengrandcrimesignsawaredancephase><!--en_US&#39;200px_namelatinenjoyajax.ationsmithU.S. holdspeterindianav\">chainscorecomesdoingpriorShare1990sromanlistsjapanfallstrialowneragree</h2>abusealertopera\"-//WcardshillsteamsPhototruthclean.php?saintmetallouismeantproofbriefrow\">genretrucklooksValueFrame.net/-->\n<try {\nvar makescostsplainadultquesttrainlaborhelpscausemagicmotortheir250pxleaststepsCountcouldglasssidesfundshotelawardmouthmovesparisgivesdutchtexasfruitnull,||[];top\">\n<!--POST\"ocean<br/>floorspeakdepth sizebankscatchchart20px;aligndealswould50px;url=\"parksmouseMost ...</amongbrainbody none;basedcarrydraftreferpage_home.meterdelaydreamprovejoint</tr>drugs<!-- aprilidealallenexactforthcodeslogicView seemsblankports (200saved_linkgoalsgrantgreekhomesringsrated30px;whoseparse();\" Blocklinuxjonespixel');\">);if(-leftdavidhorseFocusraiseboxesTrackement</em>bar\">.src=toweralt=\"cablehenry24px;setupitalysharpminortastewantsthis.resetwheelgirls/css/100%;clubsstuffbiblevotes 1000korea});\r\nbandsqueue= {};80px;cking{\r\n\t\taheadclockirishlike ratiostatsForm\"yahoo)[0];Aboutfinds</h1>debugtasksURL =cells})();12px;primetellsturns0x600.jpg\"spainbeachtaxesmicroangel--></giftssteve-linkbody.});\n\tmount (199FAQ</rogerfrankClass28px;feeds<h1><scotttests22px;drink) || lewisshall#039; for lovedwaste00px;ja:\u00E3\u0082simon<fontreplymeetsuntercheaptightBrand) != dressclipsroomsonkeymobilmain.Name platefunnytreescom/\"1.jpgwmodeparamSTARTleft idden, 201);\n}\nform.viruschairtransworstPagesitionpatch<!--\no-cacfirmstours,000 asiani++){adobe')[0]id=10both;menu .2.mi.png\"kevincoachChildbruce2.jpgURL)+.jpg|suitesliceharry120\" sweettr>\r\nname=diegopage swiss-->\n\n#fff;\">Log.com\"treatsheet) && 14px;sleepntentfiledja:\u00E3\u0083id=\"cName\"worseshots-box-delta\n&lt;bears:48Z<data-rural</a> spendbakershops= \"\";php\">ction13px;brianhellosize=o=%2F joinmaybe<img img\">, fjsimg\" \")[0]MTopBType\"newlyDanskczechtrailknows</h5>faq\">zh-cn10);\n-1\");type=bluestrulydavis.js';>\r\n<!steel you h2>\r\nform jesus100% menu.\r\n\t\r\nwalesrisksumentddingb-likteachgif\" vegasdanskeestishqipsuomisobredesdeentretodospuedea\u00C3\u00B1osest\u00C3\u00A1tienehastaotrospartedondenuevohacerformamismomejormundoaqu\u00C3\u00ADd\u00C3\u00ADass\u00C3\u00B3loayudafechatodastantomenosdatosotrassitiomuchoahoralugarmayorestoshorastenerantesfotosestaspa\u00C3\u00ADsnuevasaludforosmedioquienmesespoderchileser\u00C3\u00A1vecesdecirjos\u00C3\u00A9estarventagrupohechoellostengoamigocosasnivelgentemismaairesjuliotemashaciafavorjuniolibrepuntobuenoautorabrilbuenatextomarzosaberlistaluegoc\u00C3\u00B3moenerojuegoper\u00C3\u00BAhaberestoynuncamujervalorfueralibrogustaigualvotoscasosgu\u00C3\u00ADapuedosomosavisousteddebennochebuscafaltaeurosseriedichocursoclavecasasle\u00C3\u00B3nplazolargoobrasvistaapoyojuntotratavistocrearcampohemoscincocargopisosordenhacen\u00C3\u00A1readiscopedrocercapuedapapelmenor\u00C3\u00BAtilclarojorgecalleponertardenadiemarcasigueellassiglocochemotosmadreclaserestoni\u00C3\u00B1oquedapasarbancohijosviajepablo\u00C3\u00A9stevienereinodejarfondocanalnorteletracausatomarmanoslunesautosvillavendopesartipostengamarcollevapadreunidovamoszonasambosbandamariaabusomuchasubirriojavivirgradochicaall\u00C3\u00ADjovendichaestantalessalirsuelopesosfinesllamabusco\u00C3\u00A9stalleganegroplazahumorpagarjuntadobleislasbolsaba\u00C3\u00B1ohablalucha\u00C3\u0081readicenjugarnotasvalleall\u00C3\u00A1cargadolorabajoest\u00C3\u00A9gustomentemariofirmacostofichaplatahogarartesleyesaquelmuseobasespocosmitadcielochicomiedoganarsantoetapadebesplayaredessietecortecoreadudasdeseoviejodeseaaguas&quot;domaincommonstatuseventsmastersystemactionbannerremovescrollupdateglobalmediumfilternumberchangeresultpublicscreenchoosenormaltravelissuessourcetargetspringmodulemobileswitchphotosborderregionitselfsocialactivecolumnrecordfollowtitle>eitherlengthfamilyfriendlayoutauthorcreatereviewsummerserverplayedplayerexpandpolicyformatdoublepointsseriespersonlivingdesignmonthsforcesuniqueweightpeopleenergynaturesearchfigurehavingcustomoffsetletterwindowsubmitrendergroupsuploadhealthmethodvideosschoolfutureshadowdebatevaluesObjectothersrightsleaguechromesimplenoticesharedendingseasonreportonlinesquarebuttonimagesenablemovinglatestwinterFranceperiodstrongrepeatLondondetailformeddemandsecurepassedtoggleplacesdevicestaticcitiesstreamyellowattackstreetflighthiddeninfo\">openedusefulvalleycausesleadersecretseconddamagesportsexceptratingsignedthingseffectfieldsstatesofficevisualeditorvolumeReportmuseummoviesparentaccessmostlymother\" id=\"marketgroundchancesurveybeforesymbolmomentspeechmotioninsidematterCenterobjectexistsmiddleEuropegrowthlegacymannerenoughcareeransweroriginportalclientselectrandomclosedtopicscomingfatheroptionsimplyraisedescapechosenchurchdefinereasoncorneroutputmemoryiframepolicemodelsNumberduringoffersstyleskilledlistedcalledsilvermargindeletebetterbrowselimitsGlobalsinglewidgetcenterbudgetnowrapcreditclaimsenginesafetychoicespirit-stylespreadmakingneededrussiapleaseextentScriptbrokenallowschargedividefactormember-basedtheoryconfigaroundworkedhelpedChurchimpactshouldalwayslogo\" bottomlist\">){var prefixorangeHeader.push(couplegardenbridgelaunchReviewtakingvisionlittledatingButtonbeautythemesforgotSearchanchoralmostloadedChangereturnstringreloadMobileincomesupplySourceordersviewed&nbsp;courseAbout island<html cookiename=\"amazonmodernadvicein</a>: The dialoghousesBEGIN MexicostartscentreheightaddingIslandassetsEmpireSchooleffortdirectnearlymanualSelect.\n\nOnejoinedmenu\">PhilipawardshandleimportOfficeregardskillsnationSportsdegreeweekly (e.g.behinddoctorloggedunited</b></beginsplantsassistartistissued300px|canadaagencyschemeremainBrazilsamplelogo\">beyond-scaleacceptservedmarineFootercamera</h1>\n_form\"leavesstress\" />\r\n.gif\" onloadloaderOxfordsistersurvivlistenfemaleDesignsize=\"appealtext\">levelsthankshigherforcedanimalanyoneAfricaagreedrecentPeople<br />wonderpricesturned|| {};main\">inlinesundaywrap\">failedcensusminutebeaconquotes150px|estateremoteemail\"linkedright;signalformal1.htmlsignupprincefloat:.png\" forum.AccesspaperssoundsextendHeightsliderUTF-8\"&amp; Before. WithstudioownersmanageprofitjQueryannualparamsboughtfamousgooglelongeri++) {israelsayingdecidehome\">headerensurebranchpiecesblock;statedtop\"><racingresize--&gt;pacitysexualbureau.jpg\" 10,000obtaintitlesamount, Inc.comedymenu\" lyricstoday.indeedcounty_logo.FamilylookedMarketlse ifPlayerturkey);var forestgivingerrorsDomain}else{insertBlog</footerlogin.fasteragents<body 10px 0pragmafridayjuniordollarplacedcoversplugin5,000 page\">boston.test(avatartested_countforumsschemaindex,filledsharesreaderalert(appearSubmitline\">body\">\n* TheThoughseeingjerseyNews</verifyexpertinjurywidth=CookieSTART across_imagethreadnativepocketbox\">\nSystem DavidcancertablesprovedApril reallydriveritem\">more\">boardscolorscampusfirst || [];media.guitarfinishwidth:showedOther .php\" assumelayerswilsonstoresreliefswedenCustomeasily your String\n\nWhiltaylorclear:resortfrenchthough\") + \"<body>buyingbrandsMembername\">oppingsector5px;\">vsp (…)
    [all...]
  /external/google-breakpad/src/client/solaris/handler/
exception_handler.h 36 #include <string>
43 using std::string;
113 ExceptionHandler(const string &dump_path,
120 string dump_path() const { return dump_path_; }
121 void set_dump_path(const string &dump_path) {
132 static bool WriteMinidump(const string &dump_path,
170 string dump_path_;
172 // c_str() of std::string when crashing may not be safe.
  /external/google-breakpad/src/processor/
binarystream.h 38 #include <string>
51 explicit binarystream(const string &str,
56 : stream_(string(str, size), which) {}
58 binarystream &operator>>(string &str);
65 binarystream &operator<<(const string &str);
74 string str() const { return stream_.str(); }
75 void str(const string &s) { stream_.str(s); }
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/text/
IsEqualIgnoringWhiteSpace.java 10 * Tests if a string is equal to another string, ignoring any changes in whitespace.
12 public class IsEqualIgnoringWhiteSpace extends TypeSafeMatcher<String> {
14 // TODO: Replace String with CharSequence to allow for easy interoperability between
15 // String, StringBuffer, StringBuilder, CharBuffer, etc (joe).
17 private final String string; field in class:IsEqualIgnoringWhiteSpace
19 public IsEqualIgnoringWhiteSpace(String string) {
20 if (string == null)
    [all...]

Completed in 1269 milliseconds

<<131132133134135136137138139140>>