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

<<71727374757677787980>>

  /external/llvm/include/llvm/Support/
DOTGraphTraits.h 20 #include <string>
45 static std::string getGraphName(const GraphType &) { return ""; }
51 static std::string getGraphProperties(const GraphType &) {
71 std::string getNodeLabel(const void *, const GraphType &) {
75 // getNodeIdentifierLabel - Returns a string representing the
79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) {
84 static std::string getNodeDescription(const void *, const GraphType &) {
91 static std::string getNodeAttributes(const void *,
99 static std::string getEdgeAttributes(const void *, EdgeIter,
107 static std::string getEdgeSourceLabel(const void *, EdgeIter)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AlertInfo.java 56 /** String field
58 protected String string; field in class:AlertInfo
70 protected String encodeBody() {
74 } else if (string != null) {
75 encoding.append(string);
92 * Set the string member
93 * @param string String to set
95 public void setAlertInfo(String string)
    [all...]
  /external/parameter-framework/upstream/parameter/
FixedPointParameterType.h 34 #include <string>
39 CFixedPointParameterType(const std::string &strName);
54 // String
55 virtual bool toBlackboard(const std::string &strValue, uint32_t &uiValue,
57 virtual bool fromBlackboard(std::string &strValue, const uint32_t &uiValue,
66 virtual void showProperties(std::string &strResult) const;
69 virtual std::string getKind() const;
78 * Convert a decimal raw represented string into an unsigned long integer.
82 * @param[in] strValue Parameter read from the XML file representated as a string in decimal
87 * @return true if the string was successfully converted, false otherwise
    [all...]
XmlFileIncluderElement.cpp 39 CXmlFileIncluderElement::CXmlFileIncluderElement(const std::string &strName,
40 const std::string &strKind,
42 const std::string &schemaBaseUri)
57 std::string strPath;
62 std::string strIncludedElementType = getIncludedElementType();
118 std::string CXmlFileIncluderElement::getIncludedElementType() const
120 std::string strKind = getKind();
122 std::string::size_type pos = strKind.rfind("Include", std::string::npos);
124 assert(pos != std::string::npos)
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/
worker_cache_logger.h 19 #include <string>
60 const string& tensor_name, const string& src_device,
61 const string& dst_device, int64 bytes);
66 const string& tensor_name, const string& src_device,
67 const string& dst_device, int64 bytes,
68 const string& details,
69 const string& transfer_method_name);
84 void Save(const string& device, int64 step_id, NodeExecStats* ns)
    [all...]
  /external/v8/tools/clang/plugins/
ChromeClassTester.h 48 std::string GetNamespace(const clang::Decl* record);
77 std::string GetNamespaceImpl(const clang::DeclContext* context,
78 const std::string& candidate);
79 bool IsIgnoredType(const std::string& base_name);
83 bool GetFilename(clang::SourceLocation loc, std::string* filename);
89 std::set<std::string> banned_namespaces_;
93 std::set<std::string> allowed_directories_;
96 std::set<std::string> banned_directories_;
99 std::set<std::string> ignored_record_names_;
102 std::set<std::string> ignored_base_classes_
    [all...]
  /external/webrtc/webrtc/tools/frame_analyzer/
video_quality_analysis.h 14 #include <string>
73 void PrintAnalysisResults(const std::string& label, ResultsContainer* results);
76 void PrintAnalysisResults(FILE* output, const std::string& label,
81 void PrintMaxRepeatedAndSkippedFrames(const std::string& label,
82 const std::string& stats_file_name);
85 void PrintMaxRepeatedAndSkippedFrames(FILE* output, const std::string& label,
86 const std::string& stats_file_name);
96 int ExtractFrameSequenceNumber(std::string line);
99 bool IsThereBarcodeError(std::string line);
103 int ExtractDecodedFrameNumber(std::string line)
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
StringUtils.java 24 public static final String LINE_SEPARATOR = StandardSystemProperty.LINE_SEPARATOR.value();
26 private static final String AMP_ENTITY = "&amp;";
28 private static final String QUOT_ENTITY = "&quot;";
30 private static final String APOS_ENTITY = "&apos;";
32 private static final String LT_ENTITY = "&lt;";
34 private static final String GT_ENTITY = "&gt;";
36 private static final String TAB_ENTITY = "&#x9;";
38 private static final String CR_ENTITY = "&#xD;";
40 private static final String LFEED_ENTITY = "&#xA;";
42 public static boolean isNotBlank(CharSequence string) {
    [all...]
  /frameworks/native/cmds/dumpstate/
DumpstateUtil.h 20 #include <string>
85 std::string logging_message_;
110 CommandOptionsBuilder& Log(const std::string& message);
131 std::string LoggingMessage() const;
166 static std::string build_type_;
180 int RunCommandToFd(int fd, const std::string& title, const std::vector<std::string>& full_command,
191 int DumpFileToFd(int fd, const std::string& title, const std::string& path);
197 int GetPidByName(const std::string& ps_name)
    [all...]
  /frameworks/native/services/vr/performanced/
task.h 9 #include <string>
30 std::string name() const { return name_; }
35 const std::string& cpus_allowed_list() const { return cpus_allowed_list_; }
47 std::string GetCpuSetPath() const;
54 std::string name_;
61 std::string cpus_allowed_list_;
65 base::unique_fd OpenTaskFile(const std::string& name) const;
68 UniqueFile OpenTaskFilePointer(const std::string& name) const;
71 std::string GetStatusField(const std::string& field) const
    [all...]
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
omx_swvdec_utils.h 61 #define OMX_SWVDEC_LOG_LOW(string, ...) \
64 ALOGD("--- %s(): " string, __FUNCTION__, ##__VA_ARGS__); \
68 #define OMX_SWVDEC_LOG_HIGH(string, ...) \
71 ALOGI("--- %s(): " string, __FUNCTION__, ##__VA_ARGS__); \
75 #define OMX_SWVDEC_LOG_ERROR(string, ...) \
78 ALOGE("!!! %s(): " string, __FUNCTION__, ##__VA_ARGS__); \
82 #define OMX_SWVDEC_LOG_API(string, ...) \
85 ALOGI(">>> %s(): " string, __FUNCTION__, ##__VA_ARGS__); \
89 #define OMX_SWVDEC_LOG_CALLBACK(string, ...) \
92 ALOGI("<<< %s(): " string, __FUNCTION__, ##__VA_ARGS__);
    [all...]
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/inc/
omx_swvdec_utils.h 62 #define OMX_SWVDEC_LOG_LOW(string, ...) \
65 ALOGD("--- %s(): " string, __FUNCTION__, ##__VA_ARGS__); \
69 #define OMX_SWVDEC_LOG_HIGH(string, ...) \
72 ALOGI("--- %s(): " string, __FUNCTION__, ##__VA_ARGS__); \
76 #define OMX_SWVDEC_LOG_ERROR(string, ...) \
79 ALOGE("!!! %s(): " string, __FUNCTION__, ##__VA_ARGS__); \
83 #define OMX_SWVDEC_LOG_API(string, ...) \
86 ALOGI(">>> %s(): " string, __FUNCTION__, ##__VA_ARGS__); \
90 #define OMX_SWVDEC_LOG_CALLBACK(string, ...) \
93 ALOGI("<<< %s(): " string, __FUNCTION__, ##__VA_ARGS__);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
DOTGraphTraits.h 20 #include <string>
45 static std::string getGraphName(const GraphType &) { return ""; }
51 static std::string getGraphProperties(const GraphType &) {
71 std::string getNodeLabel(const void *, const GraphType &) {
75 // getNodeIdentifierLabel - Returns a string representing the
79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) {
84 static std::string getNodeDescription(const void *, const GraphType &) {
91 static std::string getNodeAttributes(const void *,
99 static std::string getEdgeAttributes(const void *, EdgeIter,
107 static std::string getEdgeSourceLabel(const void *, EdgeIter)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
DOTGraphTraits.h 20 #include <string>
45 static std::string getGraphName(const GraphType &) { return ""; }
51 static std::string getGraphProperties(const GraphType &) {
71 std::string getNodeLabel(const void *, const GraphType &) {
75 // getNodeIdentifierLabel - Returns a string representing the
79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) {
84 static std::string getNodeDescription(const void *, const GraphType &) {
91 static std::string getNodeAttributes(const void *,
99 static std::string getEdgeAttributes(const void *, EdgeIter,
107 static std::string getEdgeSourceLabel(const void *, EdgeIter)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
DOTGraphTraits.h 20 #include <string>
45 static std::string getGraphName(const GraphType &) { return ""; }
51 static std::string getGraphProperties(const GraphType &) {
71 std::string getNodeLabel(const void *, const GraphType &) {
75 // getNodeIdentifierLabel - Returns a string representing the
79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) {
84 static std::string getNodeDescription(const void *, const GraphType &) {
91 static std::string getNodeAttributes(const void *,
99 static std::string getEdgeAttributes(const void *, EdgeIter,
107 static std::string getEdgeSourceLabel(const void *, EdgeIter)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
DOTGraphTraits.h 20 #include <string>
45 static std::string getGraphName(const GraphType &) { return ""; }
51 static std::string getGraphProperties(const GraphType &) {
71 std::string getNodeLabel(const void *, const GraphType &) {
75 // getNodeIdentifierLabel - Returns a string representing the
79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) {
84 static std::string getNodeDescription(const void *, const GraphType &) {
91 static std::string getNodeAttributes(const void *,
99 static std::string getEdgeAttributes(const void *, EdgeIter,
107 static std::string getEdgeSourceLabel(const void *, EdgeIter)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
DOTGraphTraits.h 20 #include <string>
45 static std::string getGraphName(const GraphType &) { return ""; }
51 static std::string getGraphProperties(const GraphType &) {
71 std::string getNodeLabel(const void *, const GraphType &) {
75 // getNodeIdentifierLabel - Returns a string representing the
79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) {
84 static std::string getNodeDescription(const void *, const GraphType &) {
91 static std::string getNodeAttributes(const void *,
99 static std::string getEdgeAttributes(const void *, EdgeIter,
107 static std::string getEdgeSourceLabel(const void *, EdgeIter)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
DOTGraphTraits.h 20 #include <string>
45 static std::string getGraphName(const GraphType &) { return ""; }
51 static std::string getGraphProperties(const GraphType &) {
71 std::string getNodeLabel(const void *, const GraphType &) {
75 // getNodeIdentifierLabel - Returns a string representing the
79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) {
84 static std::string getNodeDescription(const void *, const GraphType &) {
91 static std::string getNodeAttributes(const void *,
99 static std::string getEdgeAttributes(const void *, EdgeIter,
107 static std::string getEdgeSourceLabel(const void *, EdgeIter)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
DOTGraphTraits.h 20 #include <string>
45 static std::string getGraphName(const GraphType &) { return ""; }
51 static std::string getGraphProperties(const GraphType &) {
71 std::string getNodeLabel(const void *, const GraphType &) {
75 // getNodeIdentifierLabel - Returns a string representing the
79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) {
84 static std::string getNodeDescription(const void *, const GraphType &) {
91 static std::string getNodeAttributes(const void *,
99 static std::string getEdgeAttributes(const void *, EdgeIter,
107 static std::string getEdgeSourceLabel(const void *, EdgeIter)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
DOTGraphTraits.h 20 #include <string>
45 static std::string getGraphName(const GraphType &) { return ""; }
51 static std::string getGraphProperties(const GraphType &) {
71 std::string getNodeLabel(const void *, const GraphType &) {
75 // getNodeIdentifierLabel - Returns a string representing the
79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) {
84 static std::string getNodeDescription(const void *, const GraphType &) {
91 static std::string getNodeAttributes(const void *,
99 static std::string getEdgeAttributes(const void *, EdgeIter,
107 static std::string getEdgeSourceLabel(const void *, EdgeIter)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
DOTGraphTraits.h 20 #include <string>
45 static std::string getGraphName(const GraphType &) { return ""; }
51 static std::string getGraphProperties(const GraphType &) {
71 std::string getNodeLabel(const void *, const GraphType &) {
75 // getNodeIdentifierLabel - Returns a string representing the
79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) {
84 static std::string getNodeDescription(const void *, const GraphType &) {
91 static std::string getNodeAttributes(const void *,
99 static std::string getEdgeAttributes(const void *, EdgeIter,
107 static std::string getEdgeSourceLabel(const void *, EdgeIter)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
DOTGraphTraits.h 20 #include <string>
45 static std::string getGraphName(const GraphType &) { return ""; }
51 static std::string getGraphProperties(const GraphType &) {
71 std::string getNodeLabel(const void *, const GraphType &) {
75 // getNodeIdentifierLabel - Returns a string representing the
79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) {
84 static std::string getNodeDescription(const void *, const GraphType &) {
91 static std::string getNodeAttributes(const void *,
99 static std::string getEdgeAttributes(const void *, EdgeIter,
107 static std::string getEdgeSourceLabel(const void *, EdgeIter)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
DOTGraphTraits.h 20 #include <string>
45 static std::string getGraphName(const GraphType &) { return ""; }
51 static std::string getGraphProperties(const GraphType &) {
71 std::string getNodeLabel(const void *, const GraphType &) {
75 // getNodeIdentifierLabel - Returns a string representing the
79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) {
84 static std::string getNodeDescription(const void *, const GraphType &) {
91 static std::string getNodeAttributes(const void *,
99 static std::string getEdgeAttributes(const void *, EdgeIter,
107 static std::string getEdgeSourceLabel(const void *, EdgeIter)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
DOTGraphTraits.h 20 #include <string>
45 static std::string getGraphName(const GraphType &) { return ""; }
51 static std::string getGraphProperties(const GraphType &) {
71 std::string getNodeLabel(const void *, const GraphType &) {
75 // getNodeIdentifierLabel - Returns a string representing the
79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) {
84 static std::string getNodeDescription(const void *, const GraphType &) {
91 static std::string getNodeAttributes(const void *,
99 static std::string getEdgeAttributes(const void *, EdgeIter,
107 static std::string getEdgeSourceLabel(const void *, EdgeIter)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
DOTGraphTraits.h 20 #include <string>
45 static std::string getGraphName(const GraphType &) { return ""; }
51 static std::string getGraphProperties(const GraphType &) {
71 std::string getNodeLabel(const void *, const GraphType &) {
75 // getNodeIdentifierLabel - Returns a string representing the
79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) {
84 static std::string getNodeDescription(const void *, const GraphType &) {
91 static std::string getNodeAttributes(const void *,
99 static std::string getEdgeAttributes(const void *, EdgeIter,
107 static std::string getEdgeSourceLabel(const void *, EdgeIter)
    [all...]

Completed in 1142 milliseconds

<<71727374757677787980>>