HomeSort by relevance Sort by last modified time
    Searched full:suffix (Results 1 - 25 of 1169) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/ti/wlan/wl1271/utils/
bmtrace_api.h 48 int bm_act_register_event(char* module, char* context, char* group, unsigned char level, char* name, char* suffix, int is_param);
65 #define CL_TRACE_END(MODULE, CONTEXT, GROUP, LEVEL, SUFFIX) \
69 loc = bm_act_register_event(MODULE, CONTEXT, GROUP, LEVEL, (char*)__FUNCTION__, SUFFIX, 0); \
87 #define CL_TRACE_END_L1(MODULE, CONTEXT, GROUP, SUFFIX) CL_TRACE_END(MODULE, CONTEXT, GROUP, 1, SUFFIX)
88 #define CL_TRACE_END_L2(MODULE, CONTEXT, GROUP, SUFFIX)
89 #define CL_TRACE_END_L3(MODULE, CONTEXT, GROUP, SUFFIX)
90 #define CL_TRACE_END_L4(MODULE, CONTEXT, GROUP, SUFFIX)
91 #define CL_TRACE_END_L5(MODULE, CONTEXT, GROUP, SUFFIX)
103 #define CL_TRACE_END_L1(MODULE, CONTEXT, GROUP, SUFFIX) CL_TRACE_END(MODULE, CONTEXT, GROUP, 1, SUFFIX
    [all...]
  /system/wlan/ti/wilink_6_1/utils/
bmtrace_api.h 48 int bm_act_register_event(char* module, char* context, char* group, unsigned char level, char* name, char* suffix, int is_param);
65 #define CL_TRACE_END(MODULE, CONTEXT, GROUP, LEVEL, SUFFIX) \
69 loc = bm_act_register_event(MODULE, CONTEXT, GROUP, LEVEL, (char*)__FUNCTION__, SUFFIX, 0); \
87 #define CL_TRACE_END_L1(MODULE, CONTEXT, GROUP, SUFFIX) CL_TRACE_END(MODULE, CONTEXT, GROUP, 1, SUFFIX)
88 #define CL_TRACE_END_L2(MODULE, CONTEXT, GROUP, SUFFIX)
89 #define CL_TRACE_END_L3(MODULE, CONTEXT, GROUP, SUFFIX)
90 #define CL_TRACE_END_L4(MODULE, CONTEXT, GROUP, SUFFIX)
91 #define CL_TRACE_END_L5(MODULE, CONTEXT, GROUP, SUFFIX)
103 #define CL_TRACE_END_L1(MODULE, CONTEXT, GROUP, SUFFIX) CL_TRACE_END(MODULE, CONTEXT, GROUP, 1, SUFFIX
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
SuffixFileFilter.java 26 * Filters files based on the suffix (what the filename ends with).
57 * Constructs a new Suffix file filter for a single extension.
59 * @param suffix the suffix to allow, must not be null
60 * @throws IllegalArgumentException if the suffix is null
62 public SuffixFileFilter(String suffix) {
63 this(suffix, IOCase.SENSITIVE);
67 * Constructs a new Suffix file filter for a single extension
70 * @param suffix the suffix to allow, must not be null
    [all...]
  /external/easymock/src/org/easymock/internal/matchers/
EndsWith.java 26 private final String suffix; field in class:EndsWith
28 public EndsWith(String suffix) {
29 this.suffix = suffix;
33 return (actual instanceof String) && ((String) actual).endsWith(suffix);
37 buffer.append("endsWith(\"" + suffix + "\")");
  /dalvik/dx/src/com/android/dx/dex/code/
OutputCollector.java 24 * list and a suffix (generally consisting of adjunct data referred to
37 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
40 private ArrayList<DalvInsn> suffix; field in class:OutputCollector
47 * suffix
53 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity);
80 * Adds an instruction to the output suffix.
85 suffix.add(insn);
97 if (suffix == null) {
106 * Helper for {@link #getFinisher}, which appends the suffix t
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/util/
TempPath.java 35 * The prefix will be empty and the suffix will be
45 * The prefix and suffix can be set by the user.
48 * @param suffix the suffix to use. <code>null</code> gives
52 TempFile createTempFile(String prefix, String suffix) throws IOException;
59 * The prefix and suffix can be set by the user.
62 * @param suffix the suffix to use. <code>null</code> gives
69 TempFile createTempFile(String prefix, String suffix,
  /external/skia/src/utils/
SkOSFile.cpp 5 static uint16_t* concat_to_16(const char src[], const char suffix[])
8 size_t len2 = 3 + (suffix ? strlen(suffix) : 0);
18 if (suffix)
20 while (*suffix)
21 dst[i++] = *suffix++;
45 SkOSFile::Iter::Iter(const char path[], const char suffix[]) : fHandle(0), fPath16(nil)
47 this->reset(path, suffix);
57 void SkOSFile::Iter::reset(const char path[], const char suffix[])
68 fPath16 = concat_to_16(path, suffix);
    [all...]
  /build/core/
filter_symbols.sh 9 SUFFIX=$1
20 echo "$PREFIX${line[0]}$SUFFIX # ${line[1]}"
  /frameworks/base/include/media/stagefright/foundation/
ADebug.h 38 #define MAKE_COMPARATOR(suffix,op) \
40 AString Compare_##suffix(const A &a, const B &b) { \
57 #define CHECK_OP(x,y,suffix,op) \
59 AString ___res = Compare_##suffix(x, y); \
63 " CHECK_" #suffix "( " #x "," #y ") failed: %s", \
  /frameworks/base/opengl/tools/glgen/src/
GenerateGLES.java 87 for(String suffix: new String[] {"GLES10", "GLES10Ext",
92 + suffix + ".spec"));
93 String gl11Filename = "android/opengl/" + suffix + ".java";
94 String gl11cFilename = "android_opengl_" + suffix + ".cpp";
101 copy("stubs/gles11/" + suffix + "Header.java-if", gl11Stream);
102 copy("stubs/gles11/" + suffix + "cHeader.cpp", gl11cStream);
104 "android/opengl/" + suffix,
108 + suffix);
  /libcore/luni/src/main/java/org/apache/xml/utils/res/
XResourceBundle.java 60 String suffix = getResourceSuffix(locale); local
62 //System.out.println("resource " + className + suffix);
67 String resourceName = className + suffix;
97 * @return an String suffix which canbe appended to a resource name
105 String suffix = "_" + locale.getLanguage(); local
108 suffix += "_" + country;
111 suffix += "_" + country + "_" + variant;
113 return suffix;
  /external/proguard/src/proguard/util/
ExtensionMatcher.java 53 * Returns whether the given string ends with the given suffix, ignoring its
56 private static boolean endsWithIgnoreCase(String string, String suffix)
59 int suffixLength = suffix.length();
61 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
  /external/chromium/third_party/icu/source/test/cintltst/
nfsprep.c 176 const char **suffix, int32_t *suffixLen,
185 *suffix = NULL;
190 *suffix = src + i;
198 if((findStringIndex(special_prefixes,LENGTHOF(special_prefixes), *prefix, *prefixLen-1) != -1) && (*suffix != NULL)){
211 const char *prefix = NULL, *suffix = NULL; local
231 getPrefixSuffix(src, srcLength, &prefix, &prefixLen, &suffix, &suffixLen, status);
245 /* prepare the suffix */
246 if(suffix != NULL){
247 sLen = nfs4_prepare(suffix, suffixLen, s, sCapacity, NFS4_MIXED_PREP_SUFFIX, parseError, status);
255 sLen = nfs4_prepare(suffix, suffixLen, s, sLen, NFS4_MIXED_PREP_SUFFIX, parseError, status)
    [all...]
  /external/icu4c/test/cintltst/
nfsprep.c 176 const char **suffix, int32_t *suffixLen,
185 *suffix = NULL;
190 *suffix = src + i;
198 if((findStringIndex(special_prefixes,LENGTHOF(special_prefixes), *prefix, *prefixLen-1) != -1) && (*suffix != NULL)){
211 const char *prefix = NULL, *suffix = NULL; local
231 getPrefixSuffix(src, srcLength, &prefix, &prefixLen, &suffix, &suffixLen, status);
245 /* prepare the suffix */
246 if(suffix != NULL){
247 sLen = nfs4_prepare(suffix, suffixLen, s, sCapacity, NFS4_MIXED_PREP_SUFFIX, parseError, status);
255 sLen = nfs4_prepare(suffix, suffixLen, s, sLen, NFS4_MIXED_PREP_SUFFIX, parseError, status)
    [all...]
  /external/qemu/
softmmu_header.h 20 #define SUFFIX q
24 #define SUFFIX l
28 #define SUFFIX w
33 #define SUFFIX b
95 res = glue(glue(__ld, SUFFIX), MMUSUFFIX)(addr, mmu_idx);
104 static inline int glue(glue(lds, SUFFIX), MEMSUFFIX)(target_ulong ptr)
116 res = (DATA_STYPE)glue(glue(__ld, SUFFIX), MMUSUFFIX)(addr, mmu_idx);
119 res = glue(glue(lds, SUFFIX), _raw)((uint8_t *)physaddr);
129 static inline void glue(glue(st, SUFFIX), MEMSUFFIX)(target_ulong ptr, RES_TYPE v)
141 glue(glue(__st, SUFFIX), MMUSUFFIX)(addr, v, mmu_idx)
    [all...]
  /external/skia/src/core/
SkBitmapProcState.cpp 82 #define MAKENAME(suffix) S32_opaque_D32 ## suffix
94 #define MAKENAME(suffix) S32_alpha_D32 ## suffix
113 #define MAKENAME(suffix) S16_opaque_D32 ## suffix
129 #define MAKENAME(suffix) S16_alpha_D32 ## suffix
144 #define MAKENAME(suffix) SI8_opaque_D32 ## suffix
    [all...]
  /development/tools/findunused/
findunusedtranslations 29 $suffix = $3;
32 $pattern1 = "$prefix/values$1$2-??$3/$suffix";
33 $pattern2 = "$prefix/values$1$2-??-r??$3/$suffix";
35 $pattern1 = "$prefix/values-??$values/$suffix";
36 $pattern2 = "$prefix/values-??-r??$values/$suffix";
  /frameworks/base/core/java/android/text/format/
Formatter.java 52 int suffix = com.android.internal.R.string.byteShort; local
54 suffix = com.android.internal.R.string.kilobyteShort;
58 suffix = com.android.internal.R.string.megabyteShort;
62 suffix = com.android.internal.R.string.gigabyteShort;
66 suffix = com.android.internal.R.string.terabyteShort;
70 suffix = com.android.internal.R.string.petabyteShort;
93 value, context.getString(suffix));
  /libcore/luni/src/main/java/org/apache/harmony/archive/util/
Util.java 26 * Returns whether the given source string ends with the suffix, ignoring
31 * @param suffix
32 * the suffix to test.
33 * @return {@code true} if the source does end with the given suffix, or
36 public static boolean asciiEndsWithIgnoreCase(String source, String suffix) {
37 int length = suffix.length();
44 char c2 = suffix.charAt(i);
  /dalvik/dx/src/com/android/dx/util/
FixedSizeList.java 99 * @param suffix {@code null-ok;} suffix for the end of the result
102 public String toString(String prefix, String separator, String suffix) {
103 return toString0(prefix, separator, suffix, false);
113 * @param suffix {@code null-ok;} suffix for the end of the result
116 public String toHuman(String prefix, String separator, String suffix) {
117 return toString0(prefix, separator, suffix, true);
244 * @param suffix {@code null-ok;} suffix for the end of the resul
    [all...]
  /external/bluetooth/bluez/tools/
dfutool.c 113 static struct usb_dev_handle *open_device(char *device, struct dfu_suffix *suffix)
213 if (suffix) {
214 suffix->idVendor = cpu_to_le16(0x0000);
215 suffix->idProduct = cpu_to_le16(0x0000);
216 suffix->bcdDevice = cpu_to_le16(0x0000);
229 if (suffix) {
230 suffix->idVendor = cpu_to_le16(dfu_dev[sel]->descriptor.idVendor);
231 suffix->idProduct = cpu_to_le16(dfu_dev[sel]->descriptor.idProduct);
232 suffix->bcdDevice = cpu_to_le16(dfu_dev[sel]->descriptor.bcdDevice);
265 if (suffix && dev->descriptor.idVendor != le16_to_cpu(suffix->idVendor)
319 struct dfu_suffix *suffix; local
420 struct dfu_suffix suffix; local
593 struct dfu_suffix suffix; local
    [all...]
  /external/chromium/base/test/
test_file_util_posix.cc 67 // the suffix after source_dir onto dest_dir to create the target_path.
68 std::string suffix(&current.value().c_str()[source_dir.value().size()]);
70 if (!suffix.empty()) {
71 DCHECK_EQ('/', suffix[0]);
72 suffix.erase(0, 1);
74 const FilePath target_path = dest_dir.Append(suffix);
  /external/chromium/third_party/icu/source/i18n/
unesctrn.h 23 * characters they represent. Escape forms have a prefix, a suffix, a
37 * zero or more forms. Each form consists of a prefix, suffix,
42 * characters, then suffix characters are stored. Each form thus
44 * and suffix. The end is marked by a header of length one
  /external/icu4c/i18n/
unesctrn.h 23 * characters they represent. Escape forms have a prefix, a suffix, a
37 * zero or more forms. Each form consists of a prefix, suffix,
42 * characters, then suffix characters are stored. Each form thus
44 * and suffix. The end is marked by a header of length one
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameSplitter.java 71 public String suffix; field in class:NameSplitter.Name
85 String suffix) {
90 this.suffix = suffix;
110 return suffix;
138 suffix = values.getAsString(StructuredName.SUFFIX);
156 putValueIfPresent(values, StructuredName.SUFFIX, suffix);
175 suffix = null
    [all...]

Completed in 2137 milliseconds

1 2 3 4 5 6 7 8 91011>>