HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 376 - 400 of 2901) sorted by null

<<11121314151617181920>>

  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
UnicodeMapIterator.java 27 * processString(set.string);
39 * processString(set.string);
48 * Value of <tt>codepoint</tt> if the iterator points to a string.
50 * <tt>string</tt> for the current iteration result.
56 * the iterator points to a string.
71 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points
72 * to the current string. If <tt>codepoint != IS_STRING</tt>, the
73 * value of <tt>string</tt> is undefined.
75 public String string; field in class:UnicodeMapIterator
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/
glnames.py 30 import sys, string, struct, re, os.path namespace
    [all...]
  /external/libxml2/
check-xinclude-test-suite.py 5 import string namespace
34 if string.find(str, "error:") >= 0:
88 output = test.xpathEval('string(output)')
157 content = string.strip(test.content)
  /external/libxml2/doc/examples/
index.py 5 import string namespace
55 file = node.xpathEval("string(@file)")
56 info = node.xpathEval("string(info)")
66 lines = string.split(comment, "\n")
76 (it, line) = string.split(line, ":", 1)
120 command=string.replace(test, progname, './' + progname, 1)
  /external/libxml2/doc/
libxml-doc.el 83 ;; string-match of XEmacs when used in completing-read used the
85 ;; c-mode buffer that we had set => so there's a new *-string-match-cs
86 ;; (case sensitive) function which binds case-fold-search and runs string-match
92 ;; - keep (match-string 1) in a variable (libxmldoc-get-list-of-symbols)
126 ;; setting case-fold-search is now done in libxmldoc-string-match-cs
150 (not (libxmldoc-string-match-cs libxmldoc-filter-regexp
165 ;; (if (null (string-match
174 (defun libxmldoc-string-match-cs(regexp str)
175 "This is needed because string-match in XEmacs uses the current-
178 (string-match regexp str))
    [all...]
  /external/mesa3d/src/gallium/tools/trace/
model.py 34 import string namespace
159 if len(node.value) >= 4096 or node.value.strip(string.printable):
  /external/mesa3d/src/mapi/glapi/gen/
glX_proto_recv.py 29 import sys, getopt, string namespace
242 print string.join( list, ",\n" )
typeexpr.py 28 import string, copy namespace
45 def string(self): member in class:type_node
46 """Return string representation of this type_node."""
126 # Replace '*' with ' * ' in type_string. Then, split the string
128 tokens = string.split( string.replace( type_string, "*", " * " ) )
221 def string(self): member in class:type_expression
224 s += t.string()
292 print 'Got "%s" (%u, %u).' % (te.string(), te.get_stack_size(), te.get_element_size())
  /external/nanohttpd/webserver/src/test/java/fi/iki/elonen/
TestCorsHttpServerWithSingleOrigin.java 71 String[] args = {
113 String string = new String(readContents(entity), "UTF-8"); local
118 Assert.assertEquals("<html>\n<head>\n<title>dummy</title>\n</head>\n<body>\n\t<h1>it works</h1>\n</body>\n</html>", string);
TestHttpServer.java 67 String[] args = {
104 String string = new String(readContents(response.getEntity()), "UTF-8"); local
105 Assert.assertEquals("<xml/>", string);
110 string = new String(readContents(response.getEntity()), "UTF-8");
111 Assert.assertEquals("<xml/>", string);
121 String string = new String(readContents(entity), "UTF-8") local
    [all...]
  /external/opencv3/modules/python/src2/
hdr_parser.py 4 import os, sys, re, string, io namespace
345 if aname.endswith("&") or aname.endswith("*") or (aname in ["int", "String", "Mat"]):
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
PluralResourceLoader.java 16 Map<String, PluralRules> plurals = new HashMap<String, PluralRules>();
24 public String getValue(int resourceId, int quantity) {
25 String name = resourceExtractor.getResourceName(resourceId);
30 return p.string;
36 @Override protected void processNode(Node node, String name, boolean isSystem) throws XPathExpressionException {
42 String value = childNode.getTextContent();
43 String quantity = childNode.getAttributes().getNamedItem("quantity").getTextContent();
54 @Override public Object convertRawValue(String rawValue) {
77 final String quantity, string field in class:PluralResourceLoader.Plural
    [all...]
  /external/selinux/policycoreutils/gui/
domainsPage.py 19 import string namespace
loginsPage.py 19 import string namespace
modulesPage.py 19 import string namespace
  /external/selinux/policycoreutils/scripts/
chcat 29 import string namespace
240 new_serange = "%s-%s:%s" % (serange[0], newcat[0], string.join(newcat[1:], ","))
  /external/skia/src/sfnt/
SkOTTable_name.cpp 516 const uint16_t* string = SkTAddOffset<const uint16_t>(stringTable, offset); local
517 SkStringFromUTF16BE(string, length, record.language);
  /external/tinyalsa/
tinymix.c 34 #include <string.h>
109 const char *string; local
114 string = mixer_ctl_get_enum_string(ctl, i);
117 string);
119 printf(" %-s", string);
  /external/v8/build/
gyp_chromium.py 18 import string namespace
85 # use the string '1' here so we have a consistent definition whether
  /external/v8/src/extensions/
externalize-string-extension.cc 5 #include "src/extensions/externalize-string-extension.h"
34 typedef SimpleStringResource<char, v8::String::ExternalOneByteStringResource>
36 typedef SimpleStringResource<uc16, v8::String::ExternalStringResource>
46 v8::Isolate* isolate, v8::Local<v8::String> str) {
47 if (strcmp(*v8::String::Utf8Value(str), "externalizeString") == 0) {
51 DCHECK(strcmp(*v8::String::Utf8Value(str), "isOneByteString") == 0);
62 v8::String::NewFromUtf8(
64 "First parameter to externalizeString() must be a string.",
77 v8::String::NewFromUtf8(
85 Handle<String> string = Utils::OpenHandle(*args[0].As<v8::String>()) local
    [all...]
  /external/v8/test/cctest/heap/
test-compaction.cc 327 // Convert it to a vector to create a string from it.
331 Handle<String> string; local
334 // hence we allocate until we get our string on the aborted page.
336 // the first word in the string. Since the first object definitely
338 string = isolate->factory()
341 } while (Page::FromAddress(string->address()) != to_be_aborted_page);
  /external/v8/tools/gyp/pylib/gyp/
win_tool.py 17 import string namespace
65 """Dispatches a string command to a method."""
124 # specifies the command string, and any additional items will be treated as
198 our_data = our_f.read().translate(None, string.whitespace)
199 assert_data = assert_f.read().translate(None, string.whitespace)
  /frameworks/base/libs/androidfw/tests/data/basic/
R.h 36 namespace string { namespace in namespace:base::R
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/
EditTextTypeActivity.java 37 private static String sSeedText = "";
40 final String string = "hello "; typedefs
42 StringBuilder builder = new StringBuilder(count * string.length());
44 builder.append(string); typedefs
  /packages/apps/Calendar/src/com/android/calendar/
EventRecurrenceFormatter.java 33 private static String[][] mMonthRepeatByDayOfWeekStrs;
35 public static String getRepeatString(Context context, Resources r, EventRecurrence recurrence,
37 String endString = "";
44 final String dateStr = DateUtils.formatDateTime(context,
46 sb.append(r.getString(R.string.endByDate, dateStr));
58 // TODO Implement "Until" portion of string, as well as custom settings
65 return r.getString(R.string.every_weekday) + endString;
67 String string; local
87 string = days.toString()
    [all...]

Completed in 1215 milliseconds

<<11121314151617181920>>