Searched refs:string (Results 1 - 25 of 1573) 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/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, unsigned int versionOfTestFiles);
30 bool generateDocumentation(const std::string& director, bool forVerification);
36 bool generateStubsWhiteList(const std::string& slangTestDirectory, unsigned 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_pragma_list.h21 #include <string>
26 typedef std::list< std::pair<std::string, std::string> > PragmaList;
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...]
H A Dslang_rs_reflection.h24 #include <string>
46 std::string mPackageName;
50 std::string mRSPackageName;
54 std::string mOutputBaseDirectory;
58 std::string mOutputDirectory;
61 std::string mRSSourceFileName;
63 std::string mBitCodeFileName;
67 std::string mResourceId;
70 std::string mScriptClassName;
74 std::string mClassNam
[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/native/vulkan/include/vulkan/
H A Dvulkan_loader_data.h20 #include <string>
26 std::string layer_path;

Completed in 514 milliseconds

1234567891011>>