Searched refs:string (Results 126 - 150 of 11010) sorted by relevance

1234567891011>>

/macosx-10.9.5/vim-53/runtime/autoload/
H A Dphpcomplete.vim23 \ 'synIDattr(synID(line("."), col("."), 0), "name") =~? "string\|comment"')
25 \ 'synIDattr(synID(line("."), col("."), 0), "name") =~? "string\|comment"')
651 " is to go through the looong string looking for
1027 \ 'addcslashes(': 'string str, string charlist | string',
1028 \ 'addslashes(': 'string str | string',
1029 \ 'aggregate(': 'object object, string class_name | void',
1031 \ 'aggregate_methods_by_list(': 'object object, string class_nam
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma_2/String/
H A Dsplit-003.js35 // string is an empty string
36 // if separator is an empty string, split each by character
63 function AddSplitCases( string, separator, str_sep, split_array ) {
66 "( " + string + " ).split(" + str_sep +").constructor == Array",
68 string.split(separator).constructor == Array );
72 "( " + string + " ).split(" + str_sep +").length",
74 string.split(separator).length );
77 var limit = (split_array.length > string.split(separator).length )
78 ? split_array.length : string
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma_3/RegExp/
H A Dregress-191479.js51 var string = ''; variable
60 string = '12 3 45';
62 actualmatch = string.match(pattern);
67 string = '12 3 45';
69 actualmatch = string.match(pattern);
70 expectedmatch = Array(string, '5');
74 string = '12 3 45';
76 actualmatch = string.match(pattern);
81 string = '12 3 45';
83 actualmatch = string
[all...]
H A Dregress-220367-001.js51 var string = ''; variable
60 string = 'a';
62 actualmatch = string.match(pattern);
63 expectedmatch = Array(string, 'a', undefined);
67 string = 'b';
69 actualmatch = string.match(pattern);
70 expectedmatch = Array(string, undefined, 'b');
85 strings[i] = string;
/macosx-10.9.5/Heimdal-323.92.1/base/
H A Dstring.c37 #include <string.h>
63 "string-object",
72 * Create a string object
74 * @param string the string to create, must be an utf8 string
76 * @return string object
80 heim_string_create(const char *string) argument
82 size_t len = strlen(string);
87 memcpy(s, string, le
112 heim_string_copy_utf8(heim_string_t string) argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dputenv.c44 * String points to a string of the form name=value.
51 putenv(const char *string) argument
54 const char *eq = (const char *)strchr(string, '=');
59 len = eq - string;
69 if(strncmp(string, environ[i], len) == 0) {
70 environ[i] = string;
76 environ[i] = string;
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/ldapc++/src/
H A DLDAPModDNRequest.h16 LDAPModDNRequest(const std::string& dn, const std::string& newRDN,
17 bool deleteOld, const std::string& newParentDN,
26 std::string m_dn;
27 std::string m_newRDN;
28 std::string m_newParentDN;
H A DLDAPRebind.h10 #include <string>
23 virtual LDAPRebindAuth* getRebindAuth(const std::string& hostname,
H A DLdifReader.h14 typedef std::list< std::pair<std::string, std::string> > LdifRecord;
40 int getLdifLine(std::string &line);
42 void splitLine(const std::string& line,
43 std::string &type,
44 std::string &value ) const;
46 std::string readIncludeLine( const std::string &line) const;
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/src/
H A DNoViableAltException.cpp25 const ANTLR_USE_NAMESPACE(std)string& fileName_
31 ANTLR_USE_NAMESPACE(std)string NoViableAltException::getMessage() const
36 return string("unexpected end of file");
38 return string("unexpected end of tree");
40 return string("unexpected token: ")+token->getText();
47 return string("unexpected AST node: ")+node->toString();
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/cpp/qt/
H A DWKStringQt.cpp34 WTF::String string(qString);
35 return toCopiedAPI(string);
42 const WTF::String& string = toImpl(stringRef)->string(); local
43 return QString(reinterpret_cast<const QChar*>(string.characters()), string.length());
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-c++/detail/
H A Denv.cpp47 std::string
48 impl::get(const std::string& name)
54 impl::has(const std::string& name)
60 impl::set(const std::string& name, const std::string& val)
68 impl::unset(const std::string& name)
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/NVPTX/
H A DManagedStringPool.h10 // The strings allocated from a managed string pool are owned by the string
11 // pool and will be deleted together with the managed string pool.
20 #include <string>
24 /// ManagedStringPool - The strings allocated from a managed string pool are
25 /// owned by the string pool and will be deleted together with the managed
26 /// string pool.
28 SmallVector<std::string *, 8> Pool;
33 SmallVector<std::string *, 8>::iterator Current = Pool.begin();
40 std::string *getManagedStrin
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/Sparc/
H A DSparcSubtarget.h18 #include <string>
34 SparcSubtarget(const std::string &TT, const std::string &CPU,
35 const std::string &FS, bool is64bit);
41 /// ParseSubtargetFeatures - Parses features string setting specified
46 std::string getDataLayout() const {
53 return std::string(p);
/macosx-10.9.5/swig-10/Lib/chicken/
H A Dstd_string.i7 * SWIG typemaps for std::string
11 #include <string>
15 %naturalvar string;
18 %insert(closprefix) %{ (declare (hide <std-string>)) %}
19 %nodefault string;
20 %rename("std-string") string;
21 class string {
23 ~string() {}
25 %extend string {
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/GlobalObject/
H A D15.1.2.5-2.js25 unescape( string )
31 The unescape function computes a new version of a string value in which
35 When the unescape function is called with one argument string, the
38 1. Call ToString(string).
40 3. Let R be the empty string.
62 18. Let R be a new string value computed by concatenating the previous value
73 var TITLE = "unescape(string)";
104 // three char unicode string. no conversion should occur
120 var string = ToHexString(n);
122 for ( var PAD = (4 - string
[all...]
/macosx-10.9.5/Libc-997.90.3/locale/
H A Drunedepreciated.c26 #include <string.h>
39 __sgetrune(const char *string, size_t n, char const **result) argument
42 size_t converted = mbrtowc(&wc, string, n, NULL);
48 *result = string;
52 *result = string + 1;
59 if (mbrtowc(&wc, string, n, NULL) == (size_t)0)
62 *result = string + i;
67 *result = string + converted;
74 __sputrune(rune_t rune, char *string, size_t n, char **result) argument
81 *result = string;
93 sgetrune(const char *string, size_t n, char const **result) argument
105 sputrune(rune_t rune, char *string, size_t n, char **result) argument
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/
H A Dhistsearch.c47 string. */
54 through subsequent. If ANCHORED is non-zero, the string must
55 appear at the beginning of a history line, otherwise, the string
56 may appear anywhere in the line. If the string is found, then
59 string was found in. Otherwise, nothing is changed, and a -1 is
63 history_search_internal (string, direction, anchored)
64 const char *string;
77 if (string == 0 || *string == '\0')
89 string_len = strlen (string);
[all...]
/macosx-10.9.5/sudo-72/src/
H A Dfnmatch.c43 * number of consecutive slashes within pattern and string will NOT match;
56 * path segment of string, and FNM_CASEFOLD to ignore alpha case.
65 * state of pattern and string (rewinding pattern and string repeatedly).
79 # include <string.h>
145 * Both pattern and string are **char to support pointer increment of arbitrary
151 fnmatch_ch(const char **pattern, const char **string, int flags) argument
153 fnmatch_ch(pattern, string, flags)
155 const char **string;
185 ++*string;
287 fnmatch(const char *pattern, const char *string, int flags) argument
[all...]
/macosx-10.9.5/CPANInternal-140/Pod-WSDL/t/My/
H A DServiceTest.pm5 _IN in $string
7 _RETURN $string
/macosx-10.9.5/CPANInternal-140/Pod-WSDL-0.061/t/My/
H A DServiceTest.pm5 _IN in $string
7 _RETURN $string
/macosx-10.9.5/CPANInternal-140/XML-XPath/XPath/
H A DLocationPath.pm15 my $string;
17 $string .= $self->[$i]->as_string;
18 $string .= "/" if $self->[$i+1];
20 return $string;
25 my $string = "<LocationPath>\n";
28 $string .= $self->[$i]->as_xml;
31 $string .= "</LocationPath>\n";
32 return $string;
/macosx-10.9.5/IOKitUser-907.100.13/kext.subproj/
H A DprintPList_new.c32 static void _indent(CFMutableStringRef string, unsigned indentLevel) argument
37 CFStringAppendCString(string, " ", kCFStringEncodingUTF8);
43 CFMutableStringRef string,
50 CFStringAppendFormat(string, NULL, CFSTR("%s%@%s"), quote, aString, quote);
54 static void _appendCFURL(CFMutableStringRef string, argument
72 CFStringAppendCString(string, pathBuffer, kCFStringEncodingUTF8);
81 CFMutableStringRef string,
117 CFStringAppendCString(string, "\n", kCFStringEncodingUTF8);
121 CFStringAppendCString(string, "{\n", kCFStringEncodingUTF8);
125 _indent(string, indentLeve
42 _appendCFString( CFMutableStringRef string, CFStringRef aString, Boolean withQuotes) argument
80 _appendPlist( CFMutableStringRef string, CFTypeRef plist, CFTypeRef plistRoot, PListStyle style, unsigned indentLevel) argument
227 CFMutableStringRef string = NULL; // must release local
262 CFMutableStringRef string = NULL; // must release local
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSStringRefBSTR.h44 @abstract Creates a JavaScript string from a BSTR.
45 @param string The BSTR to copy into the new JSString.
46 @result A JSString containing string. Ownership follows the Create Rule.
48 JS_EXPORT JSStringRef JSStringCreateWithBSTR(const BSTR string);
52 @abstract Creates a BSTR from a JavaScript string.
53 @param string The JSString to copy into the new BSTR.
54 @result A BSTR containing string. Ownership follows the Create Rule.
56 JS_EXPORT BSTR JSStringCopyBSTR(const JSStringRef string);
H A DJSStringRefCF.h40 @abstract Creates a JavaScript string from a CFString.
43 @param string The CFString to copy into the new JSString.
44 @result A JSString containing string. Ownership follows the Create Rule.
46 JS_EXPORT JSStringRef JSStringCreateWithCFString(CFStringRef string);
49 @abstract Creates a CFString from a JavaScript string.
51 @param string The JSString to copy into the new CFString.
52 @result A CFString containing string. Ownership follows the Create Rule.
54 JS_EXPORT CFStringRef JSStringCopyCFString(CFAllocatorRef alloc, JSStringRef string);

Completed in 367 milliseconds

1234567891011>>