Searched defs:string (Results 101 - 125 of 687) sorted by relevance

1234567891011>>

/external/freetype/include/freetype/
H A Dftsnames.h72 /* platform_id :: The platform ID for `string'. */
74 /* encoding_id :: The encoding ID for `string'. */
76 /* language_id :: The language ID for `string'. */
78 /* name_id :: An identifier for `string'. */
80 /* string :: The `name' string. Note that its format differs */
84 /* Generally speaking, the string is not */
88 /* string_len :: The length of `string' in bytes. */
105 FT_Byte* string; /* this string i member in struct:FT_SfntName_
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
H A DBaseUrlValidateFunction.java25 * Validates that a given string is either something that looks like a relative URI, or looks like
26 * an absolute URI using one of a set of allowed schemes (http, https, ftp, mailto). If the string
27 * is valid according to these criteria, the string is escaped with an appropriate escaping
28 * function. Otherwise, the string "#" is returned.
30 * Subclasses will apply the necessary escaping function to the string by overriding {@code
51 * appropriate escaping to the input string.
58 * @return true if a given string either looks like a relative URI, or like an absolute URI with
83 * Converts an ASCII string to lowercase. Non-ASCII characters are replaced with '?'.
85 private String toLowerCaseAsciiOnly(String string) { argument
86 char[] ca = string
[all...]
/external/llvm/utils/
H A DDSAextract.py29 import string namespace
99 nodes[0] = string.strip(nodes[0])
100 nodes[1] = string.strip(nodes[1])
/external/llvm/utils/release/
H A DfindRegressions.py2 import re, string, sys, os, time namespace
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAlertInfo.java58 protected String string; field in class:AlertInfo
74 } else if (string != null) {
75 encoding.append(string);
92 * Set the string member
93 * @param string String to set
95 public void setAlertInfo(String string) { argument
96 this.string = string;
110 alertInfoUri = (URI) new GenericURI(string);
123 } else if (this.string !
[all...]
/external/proguard/src/proguard/
H A DDataEntryReaderFactory.java145 * Returns whether the given string ends with the given suffix, ignoring its
148 private static boolean endsWithIgnoreCase(String string, String suffix) argument
150 int stringLength = string.length();
153 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
/external/proguard/src/proguard/util/
H A DListUtil.java63 public static List commaSeparatedList(String string) argument
65 if (string == null)
72 while ((index = skipWhitespace(string, index)) < string.length())
77 if (string.charAt(index) == '\'')
79 // Parse a quoted string.
80 nextIndex = string.indexOf('\'', index + 1);
83 nextIndex = string.length();
86 list.add(string.substring(index + 1, nextIndex));
90 // Parse a non-quoted string
114 skipWhitespace(String string, int index) argument
128 quotedString(String string) argument
[all...]
H A DVariableStringMatcher.java25 * string and then match another given StringMatcher.
53 public boolean matches(String string) argument
55 if (string.length() < minimumLength)
63 if (!isAllowedCharacter(string.charAt(index)))
69 int maximumLength = Math.min(this.maximumLength, string.length());
74 if (nextMatcher.matches(string.substring(index)))
79 if (!isAllowedCharacter(string.charAt(index)))
85 // Check the remaining characters in the string.
86 return nextMatcher.matches(string.substring(maximumLength));
93 * Returns whether the given character is allowed in the variable string
[all...]
/external/quake/quake/src/QW/client/
H A Dcvar.h24 cvar_t variables are used to hold scalar or string variables that can be changed or displayed at the console or prog code as well as accessed directly
34 Cvars must be registered before use, or they will have a 0 value instead of the float interpretation of the string. Generally, all cvar_t declarations should be registered in the apropriate init function before any console commands are executed:
41 It could optionally ask for the value to be looked up for a string name:
59 char *string; member in struct:cvar_s
72 // registers a cvar that allready has the name, string, and optionally the
79 // expands value to a string and calls Cvar_Set
85 // returns an empty string if not defined
/external/quake/quake/src/WinQuake/
H A Dcvar.h24 cvar_t variables are used to hold scalar or string variables that can be changed or displayed at the console or prog code as well as accessed directly
34 Cvars must be registered before use, or they will have a 0 value instead of the float interpretation of the string. Generally, all cvar_t declarations should be registered in the apropriate init function before any console commands are executed:
41 It could optionally ask for the value to be looked up for a string name:
59 char *string; member in struct:cvar_s
72 // registers a cvar that allready has the name, string, and optionally the
79 // expands value to a string and calls Cvar_Set
85 // returns an empty string if not defined
/external/skia/src/animator/
H A DSkDisplayInput.cpp31 SK_MEMBER(string, String)
40 SkDisplayable* SkInput::contains(const SkString& string) { argument
41 return string.equals(name) ? this : NULL;
53 SkScalarIsNaN(fFloat) == false || string.size() > 0;
H A DSkPaintParts.cpp105 SkString string; local
106 SkDump::GetEnumString(SkType_FontStyle, style, &string);
107 SkDebugf("style=\"%s\" />\n", string.c_str());
/external/srtp/test/
H A Dgetopt_s.c56 getopt_check_character(char c, const char *string) { argument
59 while (*string != 0) {
63 if (*string++ == c) {
64 if (*string == ':') {
81 char *string; local
83 /* move 'string' on to next argument */
85 string = argv[optind_s];
87 if (string == NULL)
88 return '?'; /* NULL argument string */
90 if (string[
[all...]
/external/stlport/test/unit/
H A Dcopy_test.cpp42 char string[23] = "A string to be copied."; local
44 copy(string, string + 23, result);
45 CPPUNIT_ASSERT(!strncmp(string, result, 23));
/external/webkit/Source/JavaScriptCore/runtime/
H A DStringObjectThatMasqueradesAsUndefined.h33 static StringObjectThatMasqueradesAsUndefined* create(ExecState* exec, const UString& string) argument
36 createStructure(exec->globalData(), exec->lexicalGlobalObject()->stringPrototype()), string);
40 StringObjectThatMasqueradesAsUndefined(ExecState* exec, Structure* structure, const UString& string) argument
41 : StringObject(exec, structure, string)
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
H A Dperlstress-001.js51 * By contrast, in Perl, unmatched captures hold the empty string.
55 string = '.';
56 actualmatch = string.match(pattern);
74 * - In ECMA, ^ matches only the empty string before the first character
76 * - In ECMA, $ matches only the empty string at end of input (unless multiline)
94 var string = ''; variable
106 string = 'abc';
107 actualmatch = string.match(pattern);
113 string = 'xabcy';
114 actualmatch = string
[all...]
H A Dperlstress-002.js66 var string = ''; variable
78 string = 'xbc';
79 actualmatch = string.match(pattern);
85 string = 'axc';
86 actualmatch = string.match(pattern);
92 string = 'abx';
93 actualmatch = string.match(pattern);
99 string = 'abc';
100 actualmatch = string.match(pattern);
106 string
[all...]
H A Dregress-105972.js36 var string = ''; variable
46 * It should match the whole string. The reason:
50 * to match till the end of the string. So the simplest match must
55 string = 'Hello World';
56 actualmatch = string.match(pattern);
57 expectedmatch = Array(string);
62 * Leave off the '$' condition - here we expect the empty string.
64 * the string, so the non-greedy operator *? doesn't try to...
68 string = 'Hello World';
69 actualmatch = string
[all...]
H A Dregress-169497.js52 var string = ''; variable
69 string = sHTML;
71 actualmatch = string.match(pattern);
86 strings[i] = string;
H A Dregress-31316.js36 var string = ''; variable
46 string = '<p>Some<br />test</p>';
47 actualmatch = string.match(pattern);
61 strings[i] = string;
H A Dregress-57572.js37 var string = ''; variable
47 string = 'Test this';
48 actualmatch = string.match(pattern);
49 expectedmatch = Array(string, 'Test', ' this'); //single space in front of 'this'
54 string= 'Test this';
55 actualmatch = string.match(pattern);
56 expectedmatch = Array(string, 'Test', 'this'); //NO space in front of 'this'
61 string = 'Stupid phrase, with six - (short) words';
62 actualmatch = string.match(pattern);
63 expectedmatch = Array(string, 'Stupi
[all...]
H A Dregress-67773.js37 var string = ''; variable
47 string = 'AAABBB AAABBB '; //single space at middle and at end -
48 actualmatch = string.match(pattern);
53 string = 'AAABBB BBB'; //single space in the middle
54 actualmatch = string.match(pattern);
55 expectedmatch = Array(string, 'AAABBB', cnSingleSpace, 'BBB');
59 string = 'AAABBB AAABBB'; //single space in the middle
60 actualmatch = string.match(pattern);
67 string = 'AABAAB';
68 actualmatch = string
[all...]
H A Dregress-72964.js36 var string = ''; variable
45 // 4 low Unicode chars = Latin1; whole string should match
47 string = '\u00BF\u00CD\u00BB\u00A7';
48 actualmatch = string.match(pattern);
49 expectedmatch = Array(string);
52 // Now put a space in the middle; first half of string should match
54 string = '\u00BF\u00CD \u00BB\u00A7';
55 actualmatch = string.match(pattern);
60 // 4 high Unicode chars = non-Latin1; whole string should match
62 string
[all...]
H A Dregress-87231.js29 * string = 'A';
48 var string = ''; variable
58 string = 'AAA';
59 actualmatch = string.match(pattern);
64 string = 'AA';
65 actualmatch = string.match(pattern);
70 string = 'A';
71 actualmatch = string.match(pattern);
81 string = strL + 'AAA' + strR;
82 actualmatch = string
[all...]
/external/webkit/Source/WebCore/bindings/v8/
H A DNPV8Object.h67 const NPUTF8* string; member in union:WebCore::PrivateIdentifier::__anon11749

Completed in 834 milliseconds

1234567891011>>