HomeSort by relevance Sort by last modified time
    Searched refs:string (Results 3626 - 3650 of 46739) sorted by null

<<141142143144145146147148149150>>

  /build/kati/
stats.h 19 #include <string>
29 string String() const;
41 unordered_map<string, double> detailed_;
  /dalvik/dx/src/com/android/dx/dex/file/
StringIdsSection.java 33 * {@code non-null;} map from string constants to {@link
96 * @param string {@code non-null;} the string to intern, as a regular Java
97 * {@code String}
98 * @return {@code non-null;} the interned string
100 public StringIdItem intern(String string) {
101 return intern(new StringIdItem(new CstString(string)));
107 * @param string {@code non-null;} the string to intern, as a constan
    [all...]
  /development/vndk/tools/header-checker/header-abi-dumper/src/
abi_wrappers.h 45 static std::string GetDeclSourceFile(const clang::Decl *decl,
48 static std::string GetMangledNameDecl(const clang::NamedDecl *decl,
52 std::string GetCachedDeclSourceFile(const clang::Decl *decl,
55 std::string GetKeyForTypeId(clang::QualType qual_type);
57 std::string TypeNameWithFinalDestination(clang::QualType qual_type);
61 const std::string &source_file);
66 const std::string &source_file,
69 std::string QualTypeToString(const clang::QualType &sweet_qt);
71 std::string GetTagDeclQualifiedName(const clang::TagDecl *decl);
74 const std::string &source_file)
    [all...]
  /device/google/contexthub/util/nanotool/
logevent.cpp 32 std::string LogEvent::GetMessage() const {
39 return std::string();
43 return std::string(message);
  /device/google/cuttlefish_common/common/libs/net/
network_interface_manager.h 20 #include <string>
42 std::unique_ptr<NetworkInterface> Open(const std::string& if_name,
43 const std::string& if_name_alt);
  /external/ImageMagick/Magick++/lib/Magick++/
Blob.h 13 #include <string>
45 // Update object contents from Base64-encoded string representation.
46 void base64(const std::string base64_);
47 // Return Base64-encoded string representation.
48 std::string base64(void) const;
  /external/bsdiff/include/bsdiff/
patch_writer_factory.h 9 #include <string>
22 const std::string& patch_filename);
28 const std::string& patch_filename,
  /external/chromium-libpac/src/
net_util.h 17 #include <string>
35 bool ParseIPLiteralToNumber(const std::string& ip_literal,
48 bool ParseCIDRBlock(const std::string& cidr_literal,
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/
offset_token.py 21 A token is represented by a type defined in Python's token module, a string
26 def __init__(self, token_type, string, offset):
28 self._string = string
40 def string(self): member in class:OffsetToken
43 @string.setter
44 def string(self, value): member in class:OffsetToken
52 return str((self.type_name, self.string, self.offset))
70 token_type, string, (srow, scol), _, _ = next_token
72 offset_tokens.append(OffsetToken(token_type, string, (0, 0)))
76 offset_tokens.append(OffsetToken(token_type, string, (0, scol - ecol))
    [all...]
  /external/clang/include/clang/Lex/
PreprocessorOptions.h 20 #include <string>
46 std::vector<std::pair<std::string, bool/*isUndef*/> > Macros;
47 std::vector<std::string> Includes;
48 std::vector<std::string> MacroIncludes;
59 std::string ImplicitPCHInclude;
62 std::vector<std::string> ChainedIncludes;
76 std::set<std::string> DeserializedPCHDeclsToErrorOn;
87 std::string ImplicitPTHInclude;
90 std::string TokenCache;
100 std::vector<std::pair<std::string, std::string>> RemappedFiles
    [all...]
  /external/clang/include/clang/Rewrite/Frontend/
ASTConsumers.h 19 #include <string>
31 CreateObjCRewriter(const std::string &InFile, raw_ostream *OS,
35 CreateModernObjCRewriter(const std::string &InFile, raw_ostream *OS,
  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p7.cpp 5 struct string {}; struct in namespace:std
14 std::string operator "" _w(const char16_t*, size_t);
23 same_type<decltype(v2), std::string> test2;
  /external/clang/test/SemaCXX/
PR9461.cpp 7 typedef basic_string<char> string; typedef
27 {string a(c);}
29 struct runtime_error{runtime_error(string);};
  /external/compiler-rt/test/asan/TestCases/Linux/
init-order-dlopen.cc 25 #include <string>
38 std::string path = std::string(argv[0]) + "-so.so";
  /external/compiler-rt/test/lsan/TestCases/
use_tls_dynamic.cc 14 #include <string>
17 std::string path = std::string(argv[0]) + "-so.so";
  /external/compiler-rt/test/tsan/
dlclose.cc 22 #include <string>
36 lib = dlopen((std::string(argv[0]) + std::string("-so.so")).c_str(),
  /external/deqp/external/openglcts/modules/glesext/draw_buffers_indexed/
esextcDrawBuffersIndexedBlending.hpp 33 #include <string>
59 std::string GenVS();
60 std::string GenFS(int maxDrawBuffers);
  /external/deqp/external/openglcts/modules/glesext/gpu_shader5/
esextcGPUShader5ImagesArrayIndexing.hpp 126 std::string getComputeShaderCode(const std::string& layout_size_x, const std::string& layout_size_y);
  /external/deqp/external/vulkancts/framework/vulkan/
vkDeviceUtil.hpp 30 #include <string>
45 const std::vector<std::string>& enabledLayers,
46 const std::vector<std::string>& enabledExtensions,
  /external/deqp/framework/delibs/debase/
deString.c 21 * \brief Basic string operations.
26 #include <string.h>
35 * \brief Compute hash from string.
36 * \param str String to compute hash value for.
86 * \param a First string.
87 * \param b Second string.
110 int deVsprintf (char* string, size_t size, const char* format, va_list list)
114 DE_ASSERT(string && format);
118 res = _vsnprintf(string, size, format, list);
120 res = vsnprintf_s(string, size, _TRUNCATE, format, list)
    [all...]
  /external/deqp/framework/randomshaders/
rsgNameAllocator.cpp 38 inline std::string nameNdxToStr (deUint32 name)
40 std::string str = "";
54 std::string NameAllocator::allocate (void)
  /external/deqp/modules/gles2/functional/
es2fShaderExecuteTest.cpp 31 #include <string>
57 string fileName = string("shaders/") + getName() + ".test";
  /external/e2fsprogs/lib/e2p/
feature.c 15 #include <string.h>
26 const char *string; member in struct:feature
137 for (f = feature_list; f->string; f++) {
140 return f->string;
161 int e2p_string2feature(char *string, int *compat_type, unsigned int *mask)
167 for (f = feature_list; f->string; f++) {
168 if (!strcasecmp(string, f->string)) {
174 if (strncasecmp(string, "FEATURE_", 8))
177 switch (string[8])
    [all...]
  /external/flatbuffers/samples/
sample_text.cpp 28 std::string schemafile;
29 std::string jsonfile;
48 std::string jsongen;
  /external/freetype/src/base/
ftsnames.c 63 if ( entry->stringLength > 0 && !entry->string )
69 if ( FT_NEW_ARRAY ( entry->string, entry->stringLength ) ||
71 FT_STREAM_READ( entry->string, entry->stringLength ) )
73 FT_FREE( entry->string );
82 aname->string = (FT_Byte*)entry->string;
119 if ( entry->stringLength > 0 && !entry->string )
125 if ( FT_NEW_ARRAY ( entry->string, entry->stringLength ) ||
127 FT_STREAM_READ( entry->string, entry->stringLength ) )
129 FT_FREE( entry->string );
    [all...]

Completed in 1749 milliseconds

<<141142143144145146147148149150>>