Searched refs:string (Results 1 - 25 of 912) 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/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DAccessibilityContentDescriptions.java14 R.string.accessibility_no_phone,
15 R.string.accessibility_phone_one_bar,
16 R.string.accessibility_phone_two_bars,
17 R.string.accessibility_phone_three_bars,
18 R.string.accessibility_phone_signal_full
22 R.string.accessibility_no_data,
23 R.string.accessibility_data_one_bar,
24 R.string.accessibility_data_two_bars,
25 R.string.accessibility_data_three_bars,
26 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.h7 #include <string>
11 int generate_java(const string& filename, const string& originalSrc,
17 string gather_comments(extra_text_type* extra);
18 string append(const char* a, const char* b);
23 VariableFactory(const string& base); // base must be short
28 string m_base;
H A Dsearch_path.h8 #include <string>
19 void set_import_paths(const vector<string>& importPaths);
/frameworks/native/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/support/renderscript/v8/java/src/android/support/v8/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/ml/bordeaux/learning/multiclass_pa/native/
H A Dutil.h22 #include <string>
28 MulticlassPA* CreateMulticlassPA(const string& version,
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCallStateException.java30 CallStateException(String string) argument
32 super(string);
/frameworks/compile/slang/
H A Dslang_rs_reflection_base.h24 #include <string>
49 std::string mLicenseNote;
50 std::string mInputFileName;
52 std::string mClassName;
53 std::string mOutputPath;
54 std::string mOutputBCFileName;
56 std::vector< std::string > mText;
57 std::string mIndent;
59 bool openFile(const std::string &name, std::string
[all...]
H A Dslang_rs_reflect_utils.h20 #include <string>
52 static std::string GetFileNameStem(const char* fileName);
57 static std::string ComputePackagedPath(const char *prefixPath,
65 static std::string JavaClassNameFromRSFileName(const char *rsFileName);
76 static std::string BCFileNameFromRSFileName(const char *rsFileName);
H A Dslang_rs_reflection_cpp.h32 bool reflect(const std::string &OutputPathBase,
33 const std::string &InputFileName,
34 const std::string &OutputBCFileName);
38 bool makeHeader(const std::string &baseClass);
39 bool makeImpl(const std::string &baseClass);
H A Dslang_utils.cpp19 #include <string>
26 std::string* Error) {
/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...]
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86.h11 #include <string>
19 TargetLDBackend *createX86LDBackend(const llvm::Target&, const std::string&);
/frameworks/compile/libbcc/include/bcc/Support/
H A DLinkerConfig.h20 #include <string>
34 const std::string mTriple;
36 std::string mSOName;
56 inline const std::string &getTriple() const
71 inline std::string getSOName() const
78 void setSOName(const std::string &pSOName);
80 void setDyld(const std::string &pDyld);
82 void setSysRoot(const std::string &pSysRoot);
84 void addWrap(const std::string &pWrapSymbol);
86 void addPortable(const std::string
[all...]
/frameworks/compile/mclinker/tools/mcld/include/alone/Support/
H A DLinkerConfig.h13 #include <string>
27 const std::string mTriple;
29 std::string mSOName;
49 inline const std::string &getTriple() const
64 inline std::string getSOName() const
71 void setSOName(const std::string &pSOName);
73 void setDyld(const std::string &pDyld);
75 void setSysRoot(const std::string &pSysRoot);
77 void addWrap(const std::string &pWrapSymbol);
79 void addPortable(const std::string
[all...]

Completed in 5193 milliseconds

1234567891011>>