Searched defs:string (Results 276 - 300 of 1253) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/tools/telemetry/telemetry/web_components/
H A Dweb_component.py8 import string namespace
58 bootstrap_js_template = string.Template(bfile.read())
/external/chromium_org/ui/base/l10n/
H A Dl10n_util_android.cc21 jstring string) {
23 base::android::ConvertJavaStringToUTF16(env, string));
26 std::string GetDefaultLocale() {
53 std::string GetLocaleComponent(const std::string& locale,
56 std::string result;
70 const std::string& locale) {
72 std::string language = GetLocaleComponent(
74 std::string country = GetLocaleComponent(
76 std::string varian
20 GetFirstStrongCharacterDirection(JNIEnv* env, jclass clazz, jstring string) argument
[all...]
/external/clang/test/CodeGen/
H A Dglobalinit.c19 char string[8] = "string"; // extend init variable
20 char string2[4] = "string"; // truncate init
/external/clang/test/CodeGenCXX/
H A Dmangle-subst-std.cpp40 typedef std::basic_string<char, std::char_traits<char>, std::allocator<char> > string; typedef in namespace:std
44 void f(std::string) { }
92 // Make sure we don't treat the following like std::string
/external/clang/utils/analyzer/
H A DSumTimerInfo.py11 import string namespace
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DStringIdsSection.java34 * {@code non-null;} map from string constants to {@link
97 * @param string {@code non-null;} the string to intern, as a regular Java
99 * @return {@code non-null;} the interned string
101 public StringIdItem intern(String string) { argument
102 return intern(new StringIdItem(new CstString(string)));
108 * @param string {@code non-null;} the string to intern, as a constant
109 * @return {@code non-null;} the interned string
111 public StringIdItem intern(CstString string) { argument
121 intern(StringIdItem string) argument
156 indexOf(CstString string) argument
[all...]
/external/e2fsprogs/lib/ss/
H A Dexecute_cmd.c66 * If the command string in argv[0] is in the request table, execute
75 * argument string array
94 char *string = argv[0]; local
102 if (!strcmp(*name, string)) {
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
H A DStringPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor.string;
/external/eigen/bench/
H A Dcheck_cache_queries.cpp29 int string[8]; local
30 char* string_char = (char*)(string);
34 string[0] = abcd[1];
35 string[1] = abcd[3];
36 string[2] = abcd[2];
37 string[3] = 0;
/external/icu/icu4c/source/common/unicode/
H A Dusetiter.h42 * <p>Each item in the set is accessed as a string. Set elements
66 * Value of <tt>codepoint</tt> if the iterator points to a string.
68 * <tt>string</tt> for the current iteration result.
75 * the iterator points to a string.
92 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points
93 * to the current string. If <tt>codepoint != IS_STRING</tt>, the
94 * value of <tt>string</tt> is undefined.
97 const UnicodeString* string; member in class:UnicodeSetIterator
124 * Returns true if the current element is a string. If so, the
129 * Elements of types string an
[all...]
/external/icu/icu4c/source/samples/udata/
H A Dreader.c22 #include <string.h>
81 char *string = NULL; local
113 string = (char *) (intPointer+1);
115 printf("Read string %s from data file\n", string);
/external/libexif/libexif/fuji/
H A Dmnote-fuji-entry.c23 #include <string.h>
57 const char *string; member in struct:__anon23671::__anon23672
241 for (j = 0; items[i].elem[j].string &&
248 strncpy (val, _(items[i].elem[j].string), maxlen);
/external/libusb-compat/examples/
H A Dtestlibusb.c8 #include <string.h>
66 char string[256]; local
72 ret = usb_get_string_simple(udev, dev->descriptor.iManufacturer, string, sizeof(string));
74 snprintf(description, sizeof(description), "%s - ", string);
83 ret = usb_get_string_simple(udev, dev->descriptor.iProduct, string, sizeof(string));
86 strlen(description), "%s", string);
103 ret = usb_get_string_simple(udev, dev->descriptor.iSerialNumber, string, sizeof(string));
[all...]
/external/mesa3d/scons/
H A Dcrossmingw.py37 import string namespace
178 path = string.split(path, os.pathsep)
180 env['ENV']['PATH'] = string.join([dir] + path, os.pathsep)
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/write/
H A DCAVLCWriter.java40 public void writeU(int value, int n, String string) throws IOException { argument
41 Debug.print(string + "\t");
61 public void writeUE(int value, String string) throws IOException { argument
62 Debug.print(string + "\t");
67 public void writeSE(int value, String string) throws IOException { argument
68 Debug.print(string + "\t");
73 public void writeBool(boolean value, String string) throws IOException { argument
74 Debug.print(string + "\t");
83 public void writeNBit(long value, int n, String string) throws IOException { argument
84 Debug.print(string
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DMediaType.java47 * Returns a media type for {@code string}, or null if {@code string} is not a
50 public static MediaType parse(String string) { argument
51 Matcher typeSubtype = TYPE_SUBTYPE.matcher(string);
57 Matcher parameter = PARAMETER.matcher(string);
58 for (int s = typeSubtype.end(); s < string.length(); s = parameter.end()) {
59 parameter.region(s, string.length());
64 if (charset != null) throw new IllegalArgumentException("Multiple charsets: " + string);
67 : parameter.group(3); // Value is a quoted string.
70 return new MediaType(string, typ
[all...]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DMediaTypeTest.java143 private void assertMediaType(String string) { argument
144 MediaType mediaType = MediaType.parse(string);
145 assertEquals(string, mediaType.toString());
148 private void assertInvalid(String string) { argument
149 assertNull(string, MediaType.parse(string));
/external/proguard/src/proguard/
H A DFullyQualifiedClassNameChecker.java173 private static boolean containsWildCards(String string) argument
175 return string != null &&
176 (string.indexOf('!') >= 0 ||
177 string.indexOf('*') >= 0 ||
178 string.indexOf('?') >= 0 ||
179 string.indexOf(',') >= 0 ||
180 string.indexOf("///") >= 0);
H A DGPL.java123 * Returns a given string without the suffix, as defined by the given
126 private static String trimSuffix(String string, char separator) argument
128 int index = string.lastIndexOf(separator);
129 return index < 0 ? "" : string.substring(0, index);
/external/qemu/
H A Dgen-charmap.py8 import sys, os, string, re namespace
/external/qemu/proxy/
H A Dproxy_common.h53 const char* string; member in struct:__anon29922
/external/skia/gm/
H A Dverttext2.cpp74 void drawText(SkCanvas* canvas, const SkString& string, argument
84 canvas->drawText(string.c_str(), string.size(), y,
/external/skia/tools/
H A Dpicture_utils.cpp44 bool is_percentage(const char* const string) { argument
45 SkString skString(string);
/external/smack/src/org/xbill/DNS/
H A DDClass.java75 * @return The canonical string representation of the class
79 string(int i) { method in class:DClass
H A DFlags.java59 string(int i) { method in class:Flags

Completed in 2668 milliseconds

<<11121314151617181920>>