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

1 2 3 4 5 6 78 91011>>

  /external/libxml2/doc/
queries.py 9 import string namespace
77 if string.find(str, "'") != -1 or \
78 string.find(str, '"') != -1 or \
79 string.find(str, "\\") != -1 or \
80 string.find(str, " ") != -1 or \
81 string.find(str, "\t") != -1 or \
82 string.find(str, "\n") != -1 or \
83 string.find(str, "\r") != -1:
  /external/libxml2/python/tests/
reader2.py 7 import string namespace
  /external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
COFF_i386.s 24 pushl string
50 .global string
52 string: label
  /external/llvm/utils/
DSAextract.py 29 import string namespace
99 nodes[0] = string.strip(nodes[0])
100 nodes[1] = string.strip(nodes[1])
  /external/llvm/utils/release/
findRegressions-nightly.py 2 import re, string, sys, os, time namespace
findRegressions-simple.py 2 import re, string, sys, os, time, math namespace
52 print test[fname][string.replace(n, '-success', '')]
  /external/mesa3d/src/mapi/glapi/gen/
extension_helper.py 30 import sys, getopt, string namespace
172 print '#if %s' % (string.join(condition, " || "))
257 condition_string = string.join(condition, " || ")
remap_helper.py 29 import sys, getopt, string namespace
52 # spec is terminated by an empty string
85 # output string pool
  /external/pdfium/third_party/freetype/include/freetype/
ftsnames.h 72 /* 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 */
82 /* be a Pascal String, a UTF-16 one, etc. */
84 /* Generally speaking, the string is not */
88 /* string_len :: The length of `string' in bytes. */
105 FT_Byte* string; /* this string is *not* null-terminated! * member in struct:FT_SfntName_
    [all...]
  /external/proguard/src/proguard/gui/splash/
TypeWriterString.java 24 * This VariableString produces a String that grows linearly with respect to its
32 private final String string; field in class:TypeWriterString
36 private String cachedString;
41 * @param string the basic String.
44 public TypeWriterString(String string, Timing timing)
46 this.string = string;
    [all...]
  /external/proguard/src/proguard/util/
ClassNameParser.java 60 public StringMatcher parse(String regularExpression)
74 // string, optionally preceded by any type.
88 // remainder of the string.
98 // remainder of the string.
112 // remainder of the string.
126 // remainder of the string.
140 // remainder of the string.
196 public static void main(String[] args)
205 String string = args[index] local
    [all...]
FileNameParser.java 40 public StringMatcher parse(String regularExpression)
52 // remainder of the string.
66 // remainder of the string.
80 // remainder of the string.
102 public static void main(String[] args)
111 String string = args[index]; local
112 System.out.print("String ["+string+"]");
ListUtil.java 35 * Creates a comma-separated String from the given List of String objects.
37 public static String commaSeparatedString(List list, boolean quoteStrings)
53 String string = (String)list.get(index); local
57 string = quotedString(string);
60 buffer.append(string);
68 * Creates a List of String objects from the given comma-separated String
175 String string = commaSeparatedString(list, true); local
    [all...]
NameParser.java 39 public StringMatcher parse(String regularExpression)
51 // remainder of the string.
65 // remainder of the string.
87 public static void main(String[] args)
96 String string = args[index]; local
97 System.out.print("String ["+string+"]");
  /external/selinux/policycoreutils/gui/
mappingsPage.py 19 import string namespace
  /external/skia/src/animator/
SkPaintPart.cpp 73 SK_MEMBER(fontName, String),
95 SkString string; local
96 SkDump::GetEnumString(SkType_FontStyle, style, &string);
97 SkDebugf("style=\"%s\" />\n", string.c_str());
  /external/skia/src/gpu/batches/
GrClearBatch.h 34 SkString string; variable
35 string.printf("Color: 0x%08x, Rect [L: %d, T: %d, R: %d, B: %d], RT: %d",
38 return string;
90 SkString string; variable
91 string.printf("Rect [L: %d, T: %d, R: %d, B: %d], IC: %d, RT: 0x%p",
94 return string;
GrDrawBatch.h 72 SkString string; variable
73 string.appendf("RT: %d\n", this->renderTargetUniqueID());
74 string.append("ColorStages:\n");
76 string.appendf("\t\t%s\n\t\t%s\n",
80 string.append("CoverageStages:\n");
82 string.appendf("\t\t%s\n\t\t%s\n",
86 string.appendf("XP: %s\n", this->pipeline()->getXferProcessor().name());
87 return string;
GrDrawPathBatch.cpp 15 SkString string; local
16 string.printf("PATH: 0x%p", fPath.get());
17 return string;
33 SkString string; local
34 string.printf("RANGE: 0x%p COUNTS: [", fPathRange.get());
36 string.appendf("%d, ", iter.get()->fInstanceData->count());
38 string.remove(string.size() - 2, 2);
39 string.append("]");
40 return string;
    [all...]
GrStencilPathBatch.h 37 SkString string; variable
38 string.printf("PATH: 0x%p, AA:%d", fPath.get(), fUseHWAA);
39 return string;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderStringReference.java 40 @Nonnull final String string; field in class:BuilderStringReference
43 BuilderStringReference(@Nonnull String string) {
44 this.string = string;
47 @Nonnull @Override public String getString() {
48 return string;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
StringPool.java 42 public void intern(@Nonnull CharSequence string) {
43 internedItems.put(string.toString(), 0);
46 public void internNullable(@Nullable CharSequence string) {
47 if (string != null) {
48 intern(string);
  /external/v8/build/android/gyp/
java_google_api_keys.py 11 import string namespace
35 template = string.Template("""
52 constant_template = string.Template(
53 ' public static final String ${NAME} = "${VALUE}";')
  /external/v8/test/cctest/
test-conversions.cc 369 auto string = isolate->factory()->NewStringFromAsciiChecked(chars); local
370 CHECK_EQ(expected, IsSpecialIndex(isolate->unicode_cache(), *string));
  /external/v8/test/cctest/wasm/
test-wasm-function-name-table.cc 59 MaybeHandle<String> string = GetWasmFunctionNameFromTable( local
62 CHECK(string.ToHandleChecked()->IsUtf8EqualTo(name));
64 CHECK(string.is_null());

Completed in 1452 milliseconds

1 2 3 4 5 6 78 91011>>