Searched refs:string (Results 1 - 25 of 701) sorted by relevance

1234567891011>>

/frameworks/base/graphics/java/android/renderscript/
H A DRSDriverException.java25 public RSDriverException(String string) { argument
26 super(string);
H A DRSIllegalArgumentException.java25 public RSIllegalArgumentException(String string) { argument
26 super(string);
H A DRSInvalidStateException.java25 public RSInvalidStateException(String string) { argument
26 super(string);
H A DRSRuntimeException.java26 public RSRuntimeException(String string) { argument
27 super(string);
/frameworks/base/tools/localize/
H A DXMLNode.h4 #include <string>
10 string ns;
11 string name;
12 string value;
14 static string Find(const vector<XMLAttribute>& list,
15 const string& ns, const string& name, const string& def);
H A Dlocalize.h7 #include <string>
13 string file;
14 string name;
15 string comment;
20 string id;
21 string oldVersion;
22 string currentVersion;
23 vector<string> apps;
27 int read_settings(const string& filename, map<string,Setting
[all...]
H A Dxmb.h4 #include <string>
9 int do_xlb_export(const string& outFile, const vector<string>& resFiles);
H A DPerforce.h4 #include <string>
12 static int RunCommand(const string& cmd, string* result, bool printOnFailure);
13 static int GetResourceFileNames(const string& version, const string& base,
14 const vector<string>& apps, vector<string>* result,
16 static int GetFile(const string& file, const string& version, string* resul
[all...]
H A Dfile_utils.h6 #include <string>
11 string translated_file_name(const string& file, const string& locale);
13 ValuesFile* get_values_file(const string& filename, const Configuration& configuration,
14 int version, const string& versionString, bool printOnFailure);
15 ValuesFile* get_local_values_file(const string& filename, const Configuration& configuration,
16 int version, const string& versionString, bool printOnFailure);
18 void print_file_status(size_t j, size_t J, const string& message = "Reading");
19 int write_to_file(const string
[all...]
H A DConfiguration.h4 #include <string>
10 string locale;
11 string vendor;
12 string orientation;
13 string density;
14 string touchscreen;
15 string keyboard;
16 string navigation;
17 string screenSize;
30 bool ParseDiectoryName(const string
[all...]
H A DXMLHandler.h7 #include <string>
15 string trim_string(const string& str);
19 string ns;
20 string name;
21 string value;
25 XMLAttribute(string ns, string name, string value);
37 static string Fin
[all...]
H A Dres_check.h5 #include <string>
10 int do_rescheck(const vector<string>& files);
H A DSourcePos.h4 #include <string>
11 string file;
14 SourcePos(const string& f, int l);
19 string ToString() const;
H A DValuesFile.h9 #include <string>
21 static ValuesFile* ParseFile(const string& filename, const Configuration& config,
22 int version, const string& versionString);
23 static ValuesFile* ParseString(const string& filename, const string& text,
25 int version, const string& versionString);
36 // writes the ValuesFile out to a string in the canonical format (i.e. writes the contents of
38 string ToString() const;
49 map<string,set<StringResource> > m_arrays;
H A Dmerge_res_and_xliff.h9 const string& filename, const XLIFFFile* xliff);
11 int do_merge(const vector<string>& xliffFilenames);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DAccessibilityContentDescriptions.java15 R.string.accessibility_no_phone,
16 R.string.accessibility_phone_one_bar,
17 R.string.accessibility_phone_two_bars,
18 R.string.accessibility_phone_three_bars,
19 R.string.accessibility_phone_signal_full
23 R.string.accessibility_no_data,
24 R.string.accessibility_data_one_bar,
25 R.string.accessibility_data_two_bars,
26 R.string.accessibility_data_three_bars,
27 R.string
[all...]
/frameworks/base/tools/aidl/
H A Doptions.h4 #include <string.h>
5 #include <string>
20 vector<string> importPaths;
21 vector<string> preprocessedFiles;
22 string inputFileName;
23 string outputFileName;
24 string outputBaseFolder;
25 string depFileName;
28 vector<string> filesToPreprocess;
H A Dgenerate_java.h6 #include <string>
10 int generate_java(const string& filename, const string& originalSrc,
H A Dsearch_path.h8 #include <string>
19 void set_import_paths(const vector<string>& importPaths);
/frameworks/base/opengl/tools/glgen/stubs/gles11/
H A DglShaderSource.java17 // C function void glShaderSource ( GLuint shader, GLsizei count, const GLchar ** string, const GLint* length )
21 String string
H A DglShaderSource.cpp2 /* void glShaderSource ( GLuint shader, GLsizei count, const GLchar ** string, const GLint * length ) */
6 (JNIEnv *_env, jobject _this, jint shader, jstring string) {
8 if (!string) {
9 jniThrowException(_env, "java/lang/IllegalArgumentException", "string == null");
13 const char* nativeString = _env->GetStringUTFChars(string, 0);
16 _env->ReleaseStringUTFChars(string, nativeString);
5 android_glShaderSource(JNIEnv *_env, jobject _this, jint shader, jstring string) argument
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallStateException.java30 CallStateException(String string) argument
32 super(string);
/frameworks/compile/slang/
H A Dslang_rs_reflect_utils.h20 #include <string>
51 static std::string GetFileNameStem(const char* fileName);
56 static std::string ComputePackagedPath(const char *prefixPath,
64 static std::string JavaClassNameFromRSFileName(const char *rsFileName);
75 static std::string BCFileNameFromRSFileName(const char *rsFileName);
/frameworks/base/core/java/android/webkit/
H A DL10nUtils.java33 com.android.internal.R.string.autofill_address_name_separator, // IDS_AUTOFILL_DIALOG_ADDRESS_NAME_SEPARATOR
34 com.android.internal.R.string.autofill_address_summary_name_format, // IDS_AUTOFILL_DIALOG_ADDRESS_SUMMARY_NAME_FORMAT
35 com.android.internal.R.string.autofill_address_summary_separator, // IDS_AUTOFILL_DIALOG_ADDRESS_SUMMARY_SEPARATOR
36 com.android.internal.R.string.autofill_address_summary_format, // IDS_AUTOFILL_DIALOG_ADDRESS_SUMMARY_FORMAT
37 com.android.internal.R.string.autofill_attention_ignored_re, // IDS_AUTOFILL_ATTENTION_IGNORED_RE
38 com.android.internal.R.string.autofill_region_ignored_re, // IDS_AUTOFILL_REGION_IGNORED_RE
39 com.android.internal.R.string.autofill_company_re, // IDS_AUTOFILL_COMPANY_RE
40 com.android.internal.R.string.autofill_address_line_1_re, // IDS_AUTOFILL_ADDRESS_LINE_1_RE
41 com.android.internal.R.string.autofill_address_line_1_label_re, // IDS_AUTOFILL_ADDRESS_LINE_1_LABEL_RE
42 com.android.internal.R.string
[all...]
/frameworks/base/core/java/android/net/http/
H A DErrorStrings.java47 return com.android.internal.R.string.httpErrorOk;
50 return com.android.internal.R.string.httpError;
53 return com.android.internal.R.string.httpErrorLookup;
56 return com.android.internal.R.string.httpErrorUnsupportedAuthScheme;
59 return com.android.internal.R.string.httpErrorAuth;
62 return com.android.internal.R.string.httpErrorProxyAuth;
65 return com.android.internal.R.string.httpErrorConnect;
68 return com.android.internal.R.string.httpErrorIO;
71 return com.android.internal.R.string.httpErrorTimeout;
74 return com.android.internal.R.string
[all...]

Completed in 308 milliseconds

1234567891011>>