HomeSort by relevance Sort by last modified time
    Searched full:suffix (Results 401 - 425 of 4184) sorted by null

<<11121314151617181920>>

  /system/update_engine/
boot_control_android.cc 99 // to mask the suffix).
106 // |partition_name| and suffix corresponding to |slot|, e.g.
126 const char* suffix = module_->getSuffix(module_, slot); local
127 if (suffix == nullptr) {
128 LOG(ERROR) << "boot_control impl returned no suffix for slot "
133 base::FilePath path = misc_device.DirName().Append(partition_name + suffix);
  /external/eigen/unsupported/Eigen/
OpenGLSupport 71 #define EIGEN_GL_FUNC_SPECIALIZATION_MAT(FUNC,SCALAR,ROWS,COLS,SUFFIX) \
74 inline static void run(const XprType& p) { FUNC##SUFFIX(p.data()); } \
79 #define EIGEN_GL_FUNC_SPECIALIZATION_VEC(FUNC,SCALAR,SIZE,SUFFIX) \
82 inline static void run(const XprType& p) { FUNC##SUFFIX(p.data()); } \
85 inline static void run(const XprType& p) { FUNC##SUFFIX(p.data()); } \
223 #define EIGEN_GL_FUNC1_SPECIALIZATION_MAT(FUNC,ARG1,CONST,SCALAR,ROWS,COLS,SUFFIX) \
226 inline static void run(ARG1 a, EIGEN_GL_EVAL(EIGEN_GL_MAKE_CONST_##CONST) XprType& p) { FUNC##SUFFIX(a,p.data()); } \
231 #define EIGEN_GL_FUNC1_SPECIALIZATION_VEC(FUNC,ARG1,CONST,SCALAR,SIZE,SUFFIX) \
234 inline static void run(ARG1 a, EIGEN_GL_EVAL(EIGEN_GL_MAKE_CONST_##CONST) XprType& p) { FUNC##SUFFIX(a,p.data()); } \
237 inline static void run(ARG1 a, EIGEN_GL_EVAL(EIGEN_GL_MAKE_CONST_##CONST) XprType& p) { FUNC##SUFFIX(a,p.data()); }
    [all...]
  /prebuilts/go/darwin-x86/doc/codewalk/
markov.xml 16 A chain consists of a prefix and a suffix. Each prefix is a set
17 number of words, while a suffix is a single word.
141 <step title="Adding a prefix and suffix to the chain" src="doc/codewalk/markov.go:/ key/,/key\], s\)">
142 The word stored in <code>s</code> is a new suffix. We add the new
143 prefix/suffix combination to the <code>chain</code> map by computing
144 the map key with <code>p.String</code> and appending the suffix
161 <step title="Pushing the suffix onto the prefix" src="doc/codewalk/markov.go:/p\.Shift/">
163 first word from the prefix and push the current suffix onto the prefix.
189 // suffix == "not"
190 p[len(p)-1] = suffix
    [all...]
  /prebuilts/go/linux-x86/doc/codewalk/
markov.xml 16 A chain consists of a prefix and a suffix. Each prefix is a set
17 number of words, while a suffix is a single word.
141 <step title="Adding a prefix and suffix to the chain" src="doc/codewalk/markov.go:/ key/,/key\], s\)">
142 The word stored in <code>s</code> is a new suffix. We add the new
143 prefix/suffix combination to the <code>chain</code> map by computing
144 the map key with <code>p.String</code> and appending the suffix
161 <step title="Pushing the suffix onto the prefix" src="doc/codewalk/markov.go:/p\.Shift/">
163 first word from the prefix and push the current suffix onto the prefix.
189 // suffix == "not"
190 p[len(p)-1] = suffix
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
RegexUtilitiesTest.java 124 final String suffix = "b";
125 String shouldMatch = prefix + UTF16.valueOf(temp.charAt(0)) + suffix;
127 String shouldNotMatch = prefix + UTF16.valueOf(temp.charAt(0)) + suffix;
130 String rawPattern = prefix + "[:" + propName + "=" + valueName + ":]" + suffix;
131 String rawNegativePattern = prefix + "[:^" + propName + "=" + valueName + ":]" + suffix;
136 rawPattern = prefix + "\\p{" + propName + "=" + valueName + "}" + suffix;
137 rawNegativePattern = prefix + "\\P{" + propName + "=" + valueName + "}" + suffix;
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
RegexUtilitiesTest.java 120 final String suffix = "b";
121 String shouldMatch = prefix + UTF16.valueOf(temp.charAt(0)) + suffix;
123 String shouldNotMatch = prefix + UTF16.valueOf(temp.charAt(0)) + suffix;
126 String rawPattern = prefix + "[:" + propName + "=" + valueName + ":]" + suffix;
127 String rawNegativePattern = prefix + "[:^" + propName + "=" + valueName + ":]" + suffix;
132 rawPattern = prefix + "\\p{" + propName + "=" + valueName + "}" + suffix;
133 rawNegativePattern = prefix + "\\P{" + propName + "=" + valueName + "}" + suffix;
  /external/opencv3/modules/java/generator/
gen_java.py 183 # "simple" : { j_type : "?", jn_type : "?", jni_type : "?", suffix : "?" },
188 "bool" : { "j_type" : "boolean", "jn_type" : "boolean", "jni_type" : "jboolean", "suffix" : "Z" },
189 "int" : { "j_type" : "int", "jn_type" : "int", "jni_type" : "jint", "suffix" : "I" },
190 "long" : { "j_type" : "int", "jn_type" : "int", "jni_type" : "jint", "suffix" : "I" },
191 "float" : { "j_type" : "float", "jn_type" : "float", "jni_type" : "jfloat", "suffix" : "F" },
192 "double" : { "j_type" : "double", "jn_type" : "double", "jni_type" : "jdouble", "suffix" : "D" },
193 "size_t" : { "j_type" : "long", "jn_type" : "long", "jni_type" : "jlong", "suffix" : "J" },
194 "__int64" : { "j_type" : "long", "jn_type" : "long", "jni_type" : "jlong", "suffix" : "J" },
195 "int64" : { "j_type" : "long", "jn_type" : "long", "jni_type" : "jlong", "suffix" : "J" },
196 "double[]": { "j_type" : "double[]", "jn_type" : "double[]", "jni_type" : "jdoubleArray", "suffix" : "_3D" }
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_pack.py 684 suffix = 'unsigned'
687 generate_format_unpack(format, channel, native_type, suffix)
688 generate_format_pack(format, channel, native_type, suffix)
689 generate_format_fetch(format, channel, native_type, suffix)
693 suffix = 'signed'
694 generate_format_unpack(format, channel, native_type, suffix)
695 generate_format_pack(format, channel, native_type, suffix)
698 suffix = 'signed'
701 generate_format_unpack(format, channel, native_type, suffix)
702 generate_format_pack(format, channel, native_type, suffix)
    [all...]
  /external/v8/src/
string-search.h 25 // search will not be optimal, since we only build tables for a suffix
168 // Store for the BoyerMoore good suffix shift table.
175 // Table used temporarily while building the BoyerMoore good suffix
384 int suffix = pattern_length + 1; local
389 while (suffix <= pattern_length && c != pattern[suffix - 1]) {
390 if (shift_table[suffix] == length) {
391 shift_table[suffix] = suffix - i;
393 suffix = suffix_table[suffix]
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAContext.java 161 /** Two contexts conflict() if they are equals() or one is a stack suffix
172 * Two contexts conflict if they are the same or if one is a suffix
184 return this.suffix(other); // || this.equals(other);
187 /** [$] suffix any context
188 * [21 $] suffix [21 12 $]
189 * [21 12 $] suffix [21 $]
190 * [21 18 $] suffix [21 18 12 9 $]
191 * [21 18 12 9 $] suffix [21 18 $]
192 * [21 12 $] not suffix [21 9 $]
194 * Example "[21 $] suffix [21 12 $]" means: rule r invoked current rul
207 protected boolean suffix(NFAContext other) { method in class:NFAContext
    [all...]
  /external/libdivsufsort/lib/
divsufsort.c 58 type A, B and B* suffix. Moreover, store the beginning position of all
61 /* type A suffix. */
64 /* type B* suffix. */
67 /* type B suffix. */
76 A type B* suffix is lexicographically smaller than a type B suffix that
158 /* Construct the inverse suffix array of type B* suffixes using trsort. */
192 /* Constructs the suffix array by using the sorted order of type B* suffixes. */
206 /* Scan the suffix array from right to left. */
232 /* Construct the suffix array by usin
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
Messages.java 53 * The name should not have any language suffix
86 * in a errorResourceClass with a language suffix.
105 /** The class name of the error message string table with no language suffix. */
115 * The class name is without a language suffix. If the value passed
299 * without language suffix.
352 * @return an String suffix which can be appended to a resource name
358 String suffix = "_" + locale.getLanguage(); local
362 suffix += "_" + country;
364 return suffix;
  /external/bison/m4/
locale-zh.m4 33 not at the environment variables. Also, when an encoding suffix such
59 /* On Cygwin, avoid locale names without encoding suffix, because the
60 locale_charset() function relies on the encoding suffix. Note that
107 # Test for the locale name without encoding suffix.
111 # Test for the locale name with explicit encoding suffix.
  /external/clang/include/clang/Tooling/
FileMatchTrie.h 34 /// database in order of matching suffix length.
49 /// of matching suffix length. For each suffix length, there might be one or
52 /// be zero or more entries with the same matching suffix length that are
54 /// 0 equivalent files: Continue with the next suffix length.
  /external/icu/icu4c/source/i18n/
compactdecimalformat.cpp 64 // CDFUnit represents a prefix-suffix pair for a particular variant
68 UnicodeString suffix; member in struct:CDFUnit
69 inline CDFUnit() : prefix(), suffix() {
95 // Prefix and suffix to use at cdfUnits[log10(x)]
278 appendTo += unit->suffix;
803 // populatePrefixSuffix Adds a specific prefix-suffix pair to result for a
806 // formatStr is the format string from which the prefix and suffix are
807 // extracted. It is usually of form 'Pefix 000 suffix'.
811 // and suffix, populatePrefixSuffix returns log10Value + 1.
831 // Everything beyond the last 0 is the suffix
    [all...]
decimalformatpattern.cpp 161 // 2=suffix, 3=prefix in quote, 4=suffix in quote. Subpart 0 is
162 // between the prefix and suffix, and consists of pattern
163 // characters. In the prefix and suffix, percent, perMill, and
172 // prefix and suffix.
174 UnicodeString suffix; local
187 // The affix is either the prefix or the suffix.
198 case 0: // Pattern proper subpart (between prefix & suffix)
290 // pattern, then jump into suffix subpart.
312 // Transition to suffix subpar
    [all...]
esctrn.cpp 95 this->suffix = _suffix;
108 suffix(o.suffix),
151 buf.append(supplementalHandler->suffix);
162 buf.append(suffix);
  /external/icu/icu4c/source/tools/toolutil/
pkg_icu.cpp 25 const char *suffix; member in struct:__anon12266
37 const char *suffix; local
40 suffix=listFileSuffixes[i].suffix;
42 if((listNameEnd-listname)>length && 0==memcmp(listNameEnd-length, suffix, length)) {
  /external/llvm/lib/IR/
Mangler.cpp 88 /// Microsoft fastcall and stdcall functions require a suffix on their name
156 // If we are supposed to add a microsoft-style suffix for stdcall, fastcall,
157 // or vectorcall, add it. These functions have a suffix of @N where N is the
160 OS << '@'; // vectorcall functions use a double @ suffix.
163 // "Pure" variadic functions do not receive @0 suffix.
  /external/parameter-framework/
LibParameter.mk 30 SUFFIX := _host
32 SUFFIX :=
35 LOCAL_MODULE := libparameter$(SUFFIX)
145 LOCAL_SHARED_LIBRARIES := libremote-processor$(PFW_NETWORKING_SUFFIX)$(SUFFIX)
153 libpfw_utility$(SUFFIX) \
  /frameworks/av/include/media/stagefright/foundation/
ADebug.h 63 #define MAKE_COMPARATOR(suffix,op) \
65 AString Compare_##suffix(const A &a, const B &b) { \
82 #define CHECK_OP(x,y,suffix,op) \
84 AString ___res = Compare_##suffix(x, y); \
88 " CHECK_" #suffix "( " #x "," #y ") failed: "; \
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DataUsageDetailView.java 129 String suffix; local
132 suffix = "GB";
135 suffix = "MB";
138 suffix = "KB";
140 return FORMAT.format(val * (bytes < 0 ? -1 : 1)) + " " + suffix;
  /system/extras/bootctl/
bootctl.c 48 " %s get-suffix SLOT - Prints suffix for SLOT.\n"
129 const char* suffix = module->getSuffix(module, slot_number); local
130 fprintf(stdout, "%s\n", suffix);
202 } else if (strcmp(argv[1], "get-suffix") == 0) {
  /external/autotest/frontend/tko/
models.py 352 suffix=None, exclude=False):
353 if suffix is None:
354 suffix = self._get_include_exclude_suffix(exclude)
358 suffix=suffix, exclude=exclude)
361 def _add_label_pivot_table_join(self, query_set, suffix, join_condition='',
366 suffix=suffix, exclude=exclude,
370 def _add_label_joins(self, query_set, suffix=''):
372 query_set, suffix=suffix, force_left_join=True
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUBinary.java 106 static void addBaseNamesInFolder(ByteBuffer bytes, String folder, String suffix, Set<String> names) {
116 while (index < count && addBaseName(bytes, index, folder, suffix, sb, names)) {
169 String folder, String suffix, StringBuilder sb, Set<String> names) {
184 // Collect the NUL-terminated name and test for a subfolder, then test for the suffix.
194 int nameLimit = sb.length() - suffix.length();
195 if (sb.lastIndexOf(suffix, nameLimit) >= 0) {
217 * @param suffix Usually ".res".
218 * @param names File base names relative to the folder are added without the suffix,
221 abstract void addBaseNamesInFolder(String folder, String suffix, Set<String> names);
246 void addBaseNamesInFolder(String folder, String suffix, Set<String> names)
    [all...]

Completed in 1754 milliseconds

<<11121314151617181920>>