HomeSort by relevance Sort by last modified time
    Searched refs:String8 (Results 51 - 75 of 724) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/libs/hwui/
ProgramCache.h 22 #include <utils/String8.h>
52 String8 generateVertexShader(const ProgramDescription& description);
53 String8 generateFragmentShader(const ProgramDescription& description);
54 void generateBlend(String8& shader, const char* name, SkXfermode::Mode mode);
55 void generateTextureWrap(String8& shader, GLenum wrapS, GLenum wrapT);
57 void printLongString(const String8& shader) const;
  /frameworks/native/services/surfaceflinger/RenderEngine/
GLExtensions.h 23 #include <utils/String8.h>
41 String8 mVendor;
42 String8 mRenderer;
43 String8 mVersion;
44 String8 mExtensions;
45 SortedVector<String8> mExtensionList;
  /cts/suite/audio_quality/lib/include/
FileUtil.h 23 #include <utils/String8.h>
38 static bool prepare(android::String8& dirPath);
56 static android::String8 mDirPath;
  /cts/suite/audio_quality/lib/src/
ClientImpl.cpp 34 bool ClientImpl::init(const android::String8& param)
41 android::String8 clientBinary("client/CtsAudioClient.apk");
42 android::String8 componentName("com.android.cts.audiotest/.CtsAudioClientActivity");
SignalProcessingImpl.h 21 #include <utils/String8.h>
32 static const android::String8 MAIN_PROCESSING_SCRIPT;
38 virtual bool init(const android::String8& script);
40 virtual TaskGeneric::ExecutionResult run(const android::String8& functionScript,
  /cts/suite/audio_quality/test/
SimpleScriptExecTest.cpp 32 android::String8 pass1("___CTS_AUDIO_PASS___");
33 android::String8 match1;
36 android::String8 fail1;
StringUtilTest.cpp 26 android::String8 str("hello");
32 android::String8 str("hello there");
34 android::String8 sub1 = StringUtil::substr(str, 0, 5);
37 android::String8 sub2 = StringUtil::substr(str, 10, 5);
40 android::String8 sub3 = StringUtil::substr(str, 6, 5);
43 android::String8 sub4 = StringUtil::substr(str, 100, 5);
48 android::String8 str("hello there");
55 android::String8 str("hello:there:break:this:");
56 std::vector<android::String8>* tokens = StringUtil::split(str, ':');
65 android::String8 str2("::::")
    [all...]
  /frameworks/av/drm/common/
DrmInfo.cpp 21 DrmInfo::DrmInfo(int infoType, const DrmBuffer& drmBuffer, const String8& mimeType) :
32 String8 DrmInfo::getMimeType(void) const {
44 status_t DrmInfo::put(const String8& key, const String8& value) {
49 String8 DrmInfo::get(const String8& key) const {
53 return String8("");
56 int DrmInfo::indexOfKey(const String8& key) const {
78 const String8& DrmInfo::KeyIterator::next() {
79 const String8& key = mDrmInfo->mAttributes.keyAt(mIndex)
    [all...]
  /frameworks/base/include/androidfw/
AssetDir.h 24 #include <utils/String8.h>
53 const String8& getFileName(int idx) {
56 const String8& getSourceName(int idx) {
80 FileInfo(const String8& path) // useful for e.g. svect.indexOf
109 void set(const String8& path, FileType type) {
114 const String8& getFileName(void) const { return mFileName; }
115 void setFileName(const String8& path) { mFileName = path; }
120 const String8& getSourceName(void) const { return mSourceName; }
121 void setSourceName(const String8& path) { mSourceName = path; }
128 const String8& fileName)
    [all...]
AssetManager.h 29 #include <utils/String8.h>
95 bool addAssetPath(const String8& path, void** cookie);
116 String8 getAssetPath(void* cookie) const;
219 void getLocales(Vector<String8>* locales) const;
224 String8 path;
226 String8 idmap;
235 String8 createPathNameLocked(const asset_path& path, const char* locale,
237 String8 createPathNameLocked(const asset_path& path, const char* rootDir);
238 String8 createZipSourceNameLocked(const String8& zipFileName
    [all...]
  /frameworks/base/media/jni/
android_media_Utils.h 25 #include <utils/String8.h>
34 KeyedVector<String8, String8>* vector);
  /frameworks/base/tools/aapt/
FileFinder.cpp 9 #include <utils/String8.h>
20 using android::String8;
41 bool SystemFileFinder::findFiles(String8 basePath, Vector<String8>& extensions,
42 KeyedVector<String8,time_t>& fileStore,
56 String8 entryName(entry->d_name);
60 String8 fullPath = basePath.appendPathCopy(entryName);
80 void SystemFileFinder::checkAndAddFile(String8 path, const struct stat* stats,
81 Vector<String8>& extensions,
82 KeyedVector<String8,time_t>& fileStore
    [all...]
  /frameworks/native/services/surfaceflinger/
Colorizer.h 41 void colorize(String8& out, color c) {
47 void bold(String8& out) {
53 void reset(String8& out) {
  /frameworks/av/include/drm/
DrmMetadata.h 27 * As a result of DrmManagerClient::getMetadata(const String8*)
47 const String8& next();
69 String8 next();
82 String8 key = keyIt.next();
94 status_t put(const String8* key, const char* value);
95 String8 get(const String8& key) const;
96 const char* getAsByteArray(const String8* key) const;
101 const char* getValue(const String8* key) const;
104 typedef KeyedVector<String8, const char*> DrmMetadataMap
    [all...]
DrmManagerClient.h 93 sp<DecryptHandle> openDecryptSession(const DrmBuffer& buf, const String8& mimeType);
195 bool validateAction(const String8& path, int action, const ActionDescription& description);
223 DrmConstraints* getConstraints(const String8* path, const int action);
234 DrmMetadata* getMetadata(const String8* path);
244 bool canHandle(const String8& path, const String8& mimeType);
276 const DrmRights& drmRights, const String8& rightsPath, const String8& contentPath);
283 * @return String8
286 String8 getOriginalMimeType(const String8& path, int fd)
    [all...]
  /system/core/include/utils/
Tokenizer.h 23 #include <utils/String8.h>
31 Tokenizer(const String8& filename, FileMap* fileMap, char* buffer,
43 static status_t open(const String8& filename, Tokenizer** outTokenizer);
51 static status_t fromContents(const String8& filename,
67 inline String8 getFilename() const { return mFilename; }
78 String8 getLocation() const;
89 String8 peekRemainderOfLine() const;
104 String8 nextToken(const char* delimiters);
121 String8 mFilename;
  /device/generic/goldfish/camera/
EmulatedCameraHotplugThread.h 29 #include <utils/String8.h>
56 int getCameraId(String8 filePath) const;
59 String8 getFilePath(int cameraId) const;
60 int readFile(String8 filePath) const;
  /frameworks/av/drm/libdrmframework/include/
DrmManagerService.h 30 class String8;
60 DrmConstraints* getConstraints(int uniqueId, const String8* path, const int action);
62 DrmMetadata* getMetadata(int uniqueId, const String8* path);
64 bool canHandle(int uniqueId, const String8& path, const String8& mimeType);
71 const String8& rightsPath, const String8& contentPath);
73 String8 getOriginalMimeType(int uniqueId, const String8& path, int fd);
75 int getDrmObjectType(int uniqueId, const String8& path, const String8& mimeType)
    [all...]
  /frameworks/base/services/input/
InputApplication.h 24 #include <utils/String8.h>
32 String8 name;
49 inline String8 getName() const {
50 return mInfo ? mInfo->name : String8("<invalid>");
  /frameworks/native/libs/gui/
GuiConfig.cpp 21 void appendGuiConfigString(String8& configStr)
  /cts/suite/audio_quality/lib/include/task/
TaskInput.h 30 virtual bool parseAttribute(const android::String8& name, const android::String8& value);
TaskOutput.h 28 virtual bool parseAttribute(const android::String8& name, const android::String8& value);
  /cts/suite/audio_quality/lib/src/task/
TaskMessage.cpp 32 bool TaskMessage::parseAttribute(const android::String8& name, const android::String8& value)
  /frameworks/av/media/libmediaplayerservice/
SharedLibrary.h 21 #include <utils/String8.h>
27 SharedLibrary(const String8 &path);
  /frameworks/native/include/input/
Keyboard.h 23 #include <utils/String8.h>
45 String8 keyLayoutFile;
48 String8 keyCharacterMapFile;
70 bool probeKeyMap(const InputDeviceIdentifier& deviceIdentifier, const String8& name);
71 status_t loadKeyLayout(const InputDeviceIdentifier& deviceIdentifier, const String8& name);
73 const String8& name);
74 String8 getPath(const InputDeviceIdentifier& deviceIdentifier,
75 const String8& name, InputDeviceConfigurationFileType type);

Completed in 643 milliseconds

1 23 4 5 6 7 8 91011>>