HomeSort by relevance Sort by last modified time
    Searched defs:separator (Results 26 - 50 of 1484) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skqp/src/sksl/ir/
SkSLFunctionDeclaration.h 35 String separator; variable
37 result += separator;
38 separator = ", ";
SkSLVarDeclarations.h 73 String separator; variable
75 result += separator;
76 separator = ", ";
SkSLConstructor.h 66 String separator; variable
68 result += separator;
70 separator = ", ";
  /external/skqp/src/sksl/lex/
DFAState.h 30 const char* separator = ""; local
32 result += separator;
34 separator = ", ";
Main.cpp 102 const char* separator = ""; local
104 out << separator << std::to_string(m);
105 separator = ", ";
NFAState.h 97 const char* separator = ""; local
99 result += separator;
101 separator = ", ";
108 const char* separator = ""; local
110 result += separator;
112 separator = ", ";
119 const char* separator = ""; local
121 result += separator;
123 separator = ", ";
  /external/sl4a/Common/src/com/googlecode/android_scripting/language/
BeanShellLanguage.java 49 String separator = ""; local
51 result.append(separator).append(getValueText(parameter));
52 separator = getParameterSeparator();
HtmlLanguage.java 46 String separator = ""; local
48 result.append(separator).append(getValueText(parameter));
49 separator = getParameterSeparator();
  /external/v8/src/compiler/
operator.cc 50 std::string separator = ""; local
54 os << separator; \
56 separator = ", "; \
  /frameworks/native/cmds/lshal/
utils.h 58 std::string join(const A &components, const std::string &separator) {
63 out << separator; local
  /external/deqp/framework/delibs/decpp/
deFilePath.hpp 48 static const std::string separator; /*!< Path separator. */ member in class:de::FilePath
112 m_path += separator + b.m_path;
  /external/selinux/policycoreutils/hll/pp/
pp.c 140 char *separator = strrchr(cil_name, '.'); local
141 if (separator) {
142 *separator = '\0';
  /external/skia/src/sksl/lex/
Main.cpp 102 const char* separator = ""; local
104 out << separator << std::to_string(m);
105 separator = ", ";
NFAState.h 97 const char* separator = ""; local
99 result += separator;
101 separator = ", ";
108 const char* separator = ""; local
110 result += separator;
112 separator = ", ";
119 const char* separator = ""; local
121 result += separator;
123 separator = ", ";
  /libcore/luni/src/main/java/javax/xml/parsers/
FilePathToURI.java 60 char separator = java.io.File.separatorChar; local
61 path = path.replace(separator, '/');
  /libcore/luni/src/main/java/javax/xml/transform/stream/
FilePathToURI.java 60 char separator = java.io.File.separatorChar; local
61 path = path.replace(separator, '/');
  /libcore/ojluni/src/main/java/java/net/
JarURLConnection.java 85 * <p>{@code !/} is referred to as the <em>separator</em>.
93 * URL constructor doesn't contain a separator, the URL is considered
167 int separator = spec.indexOf("!/"); local
171 if (separator == -1) {
175 jarFileURL = new URL(spec.substring(0, separator++));
179 if (++separator != spec.length()) {
180 entryName = spec.substring(separator, spec.length());
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
ns_addr.c 66 char separator; local
80 separator = '#';
86 separator = ':';
88 separator = '.';
96 return (addr); /* No separator means net only */
98 socketname = strchr(hostname, separator);
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/test/
LoggingUtil.java 37 private String separator; field in class:LoggingUtil
90 private LoggingUtil(String title, String separator) {
93 this.separator = separator;
102 writeLogMessage(separator + " [ START: " + testTitle + " ] " + separator);
112 writeLogMessage(separator + " [ END: "
115 + "ms ] "+ separator + "\n");
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/test/
LoggingUtil.java 37 private String separator; field in class:LoggingUtil
90 private LoggingUtil(String title, String separator) {
93 this.separator = separator;
102 writeLogMessage(separator + " [ START: " + testTitle + " ] " + separator);
112 writeLogMessage(separator + " [ END: "
115 + "ms ] "+ separator + "\n");
  /external/parameter-framework/upstream/utility/test/
utility.cpp 74 string separator; member in struct:utility::Test
82 {"No separator", {"12", "ab", "+-"}, "", "12ab+-", "12\nab\n+-"},
87 WHEN ("Separator, " + test.title) {
88 CAPTURE(test.separator);
89 REQUIRE(asString(test.input, test.separator) == test.result);
91 THEN ("No separator, " + test.title) {
  /external/proguard/src/proguard/wtk/
ProGuardObfuscator.java 117 String separator = System.getProperty("path.separator"); local
122 // Find the next separator, or the end of the String.
123 int next_index = classPathString.indexOf(separator, index);
136 // Continue after the separator.
  /external/skia/src/sksl/
SkSLHCodeGenerator.cpp 94 void HCodeGenerator::writeExtraConstructorParams(const char* separator) {
122 this->writef("%s%s", separator, lastIdentifier);
123 separator = ", ";
132 this->writef("%s%s", separator, lastIdentifier);
138 const char* separator;
141 separator = "";
143 this->writef("%s%s %s", separator, ParameterType(fContext, param->fType,
146 separator = ", ";
148 this->writeSection(CONSTRUCTOR_PARAMS_SECTION, separator);
152 separator = ""
184 const char* separator = ""; local
    [all...]
  /external/skia/src/sksl/ir/
SkSLConstructor.h 66 String separator; variable
68 result += separator;
70 separator = ", ";
  /external/skqp/src/sksl/
SkSLHCodeGenerator.cpp 94 void HCodeGenerator::writeExtraConstructorParams(const char* separator) {
122 this->writef("%s%s", separator, lastIdentifier);
123 separator = ", ";
132 this->writef("%s%s", separator, lastIdentifier);
138 const char* separator;
141 separator = "";
143 this->writef("%s%s %s", separator, ParameterType(fContext, param->fType,
146 separator = ", ";
148 this->writeSection(CONSTRUCTOR_PARAMS_SECTION, separator);
152 separator = ""
184 const char* separator = ""; local
    [all...]

Completed in 1119 milliseconds

12 3 4 5 6 7 8 91011>>