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

1234567891011>>

/frameworks/base/rs/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;
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSStubsWhiteList.cpp21 std::vector<std::string> stubList = {
H A DRSStubsWhiteList.h22 #include <string>
24 extern std::vector<std::string> stubList;
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglShaderSource.java1 // C function void glShaderSource ( GLuint shader, GLsizei count, const GLchar ** string, const GLint* length )
5 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/av/services/audiopolicy/engineconfigurable/wrapper/
H A Daudio_policy_criteria_conf.h19 #include <string>
36 static const std::string &gPolicyConfTag = "Policy";
37 static const std::string &gDefaultTag = "Default";
38 static const std::string &gTypeTag = "Type";
43 static const std::string &gInclusiveCriterionTypeTag = "InclusiveCriterionType";
44 static const std::string &gExclusiveCriterionTypeTag = "ExclusiveCriterionType";
45 static const std::string &gCriterionTag = "Criterion";
50 static const std::string &gInputDeviceCriterionTag = "AvailableInputDevices";
51 static const std::string &gOutputDeviceCriterionTag = "AvailableOutputDevices";
52 static const std::string
[all...]
/frameworks/support/v8/renderscript/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/rs/api/
H A DUtilities.h22 #include <string>
25 std::string capitalize(const std::string& source);
27 // Trim trailing and leading spaces from a string.
28 void trimSpaces(std::string* s);
30 // Replaces in string s all occurences of match with rep.
31 std::string stringReplace(std::string s, std::string match, std::string re
[all...]
H A DScanner.h21 #include <string>
27 std::string mFileName;
33 std::string mTag;
35 std::string mValue;
48 void readUpTo(char delimiter, std::string* segment);
52 void readRestOfLine(std::string* segment);
65 Scanner(const std::string& fileName, FILE* file);
67 std::string getValue() { return mValue; }
68 std::string getNextTag() {
90 * Erases that documention from the input string
[all...]
H A DGenerator.h21 bool generateHeaderFiles(const std::string& directory);
24 bool generateTestFiles(const std::string& directory, int versionOfTestFiles);
30 bool generateDocumentation(const std::string& director, bool forVerification);
36 bool generateStubsWhiteList(const std::string& slangTestDirectory, int maxApiLevel);
/frameworks/compile/mclinker/include/mcld/Support/
H A DDemangle.h12 #include <string>
16 std::string demangleName(const std::string& mangled_name);
/frameworks/compile/slang/
H A Dslang_rs_reflect_utils.h21 #include <string>
45 const std::string *licenseNote;
54 static std::string GetFileNameStem(const char *fileName);
59 static std::string ComputePackagedPath(const char *prefixPath,
67 static std::string JavaClassNameFromRSFileName(const char *rsFileName);
78 static std::string BCFileNameFromRSFileName(const char *rsFileName);
85 static std::string JavaBitcodeClassNameFromRSFileName(const char *rsFileName);
95 std::string JoinPath(const std::string &path1, const std::string
[all...]
/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.java37 CallStateException(String string) argument
39 super(string);
43 CallStateException(int error, String string) argument
45 super(string);
/frameworks/base/core/java/android/webkit/
H A DLegacyErrorStrings.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/base/tools/aapt2/
H A DConfigDescription_test.cpp21 #include <string>
50 EXPECT_EQ(std::string(""), config.toString().string());
53 EXPECT_EQ(std::string("fr-land"), config.toString().string());
57 EXPECT_EQ(std::string("mcc310-pl-sw720dp-normal-long-port-night-"
58 "xhdpi-keyssoft-qwerty-navexposed-nonav-v13"), config.toString().string());
64 EXPECT_EQ(std::string("en-rUS"), config.toString().string());
70 EXPECT_EQ(std::string("sw600d
[all...]

Completed in 1641 milliseconds

1234567891011>>