HomeSort by relevance Sort by last modified time
    Searched refs:CHAR (Results 1 - 25 of 210) sorted by null

1 2 3 4 5 6 7 8 9

  /external/webkit/Source/JavaScriptCore/wtf/url/src/
RawURLBuffer.h 40 template<typename CHAR, int inlineCapacity = 1024>
41 class RawURLBuffer : public URLBuffer<CHAR> {
43 RawURLBuffer() : URLBuffer<CHAR>()
57 CHAR* newBuffer = new CHAR[size];
58 memcpy(newBuffer, this->m_buffer, sizeof(CHAR) * (this->m_length < size ? this->m_length : size));
66 CHAR m_inlineBuffer[inlineCapacity];
URLBuffer.h 42 template<typename CHAR>
55 inline char at(int offset) const { return m_buffer[offset]; }
56 inline void set(int offset, CHAR ch)
71 const CHAR* data() const { return m_buffer; }
72 CHAR* data() { return m_buffer; }
86 void append(CHAR ch)
103 void append(const CHAR* str, int strLength)
129 CHAR* m_buffer;
  /external/okhttp/src/main/java/libcore/io/
SizeOf.java 20 public static final int CHAR = 2;
  /libcore/luni/src/main/java/libcore/io/
SizeOf.java 20 public static final int CHAR = 2;
  /external/chromium/googleurl/src/
url_file.h 54 template<typename CHAR>
55 inline int FindNextSlash(const CHAR* spec, int begin_index, int spec_len) {
70 template<typename CHAR>
71 inline bool DoesBeginWindowsDriveSpec(const CHAR* spec, int start_offset,
90 template<typename CHAR>
91 inline bool DoesBeginUNCPath(const CHAR* text,
url_canon_internal_file.h 52 template<typename CHAR>
53 static int FileDoDriveSpec(const CHAR* spec, int begin, int end,
70 output->push_back(static_cast<char>(spec[after_slashes]));
80 template<typename CHAR, typename UCHAR>
81 static void FileDoPath(const CHAR* spec, int begin, int end,
98 URLCanonInternal<CHAR, UCHAR>::DoPath(
103 template<typename CHAR, typename UCHAR>
104 static bool DoCanonicalizeFileURL(const URLComponentSource<CHAR>& source,
132 bool success = URLCanonInternal<CHAR, UCHAR>::DoHost(
145 FileDoPath<CHAR, UCHAR>(source.path, after_drive, parsed.path.end(), output)
    [all...]
url_parse_internal.h 55 template<typename CHAR>
56 inline void TrimURL(const CHAR* spec, int* begin, int* len) {
69 template<typename CHAR>
70 inline int CountConsecutiveSlashes(const CHAR *str,
86 void ParsePathInternal(const char* spec,
101 void ParseAfterScheme(const char* spec,
url_canon_query.cc 69 template<typename CHAR, typename UCHAR>
70 bool IsAllASCII(const CHAR* spec, const url_parse::Component& query) {
83 template<typename CHAR>
84 void AppendRaw8BitQueryString(const CHAR* source, int length,
87 if (!IsQueryChar(static_cast<unsigned char>(source[i])))
88 AppendEscapedChar(static_cast<unsigned char>(source[i]), output);
90 output->push_back(static_cast<char>(source[i]));
96 void RunConverter(const char* spec,
117 template<typename CHAR, typename UCHAR>
118 void DoConvertToQueryEncoding(const CHAR* spec
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
uuidutil.h 57 VOID UUID_UuidToString(IN struct DSP_UUID * pUuid, OUT CHAR * pszUuid,
75 extern VOID UUID_UuidFromString(IN CHAR * pszUuid,
DSPProcessor_OEM.h 97 IN CONST CHAR ** aArgv,
98 IN CONST CHAR ** aEnvp);
csl.h 71 * Convert an ansi string to a wide char string.
73 * wpstrDest: wide char buffer pointer.
77 * Number of characters copied into wpstrDest, excluding the NULL char.
102 extern INT CSL_Atoi(IN CONST CHAR * ptstrSrc);
107 * Convert an ansi string to a wide char string.
211 * Ptr to first char matching the substring in the main string.
291 extern CHAR *CSL_Strtok(IN CHAR * ptstrSrc,
292 IN CONST CHAR * szSeparators);
311 extern CHAR *CSL_Strtokr(IN CHAR * pstrSrc
    [all...]
dbdcd.h 76 IN CHAR * pszCoffPath);
102 IN CHAR * pszCoffPath);
122 extern DSP_STATUS DCD_CreateManager(IN CHAR * pszZlDllName,
331 IN CHAR * pszCoffPath,
369 IN CHAR * pszPathName);
dbtype.h 106 typedef unsigned char BYTE; /* b */
111 typedef char CHAR; /* ch */
122 typedef CHAR SZ[]; /* sz */
123 typedef CHAR *PSTR; /* pstr */
128 typedef unsigned char UCHAR; /* uch */
151 typedef CHAR TCHAR;
179 typedef CHAR TCHAR;
  /dalvik/hit/src/com/android/hit/
Types.java 24 public static final int CHAR = 5;
41 case 'C': return 2; // char
51 case CHAR: return 2;
68 case 'C': return "char";
78 case CHAR: return "char";
  /hardware/ti/omap3/dspbridge/libbridge/inc/
DSPProcessor_OEM.h 97 IN CONST CHAR ** aArgv,
98 IN CONST CHAR ** aEnvp);
csl.h 72 * Convert an ansi string to a wide char string.
74 * wpstrDest: wide char buffer pointer.
78 * Number of characters copied into wpstrDest, excluding the NULL char.
103 extern INT CSL_Atoi(IN CONST CHAR * ptstrSrc);
108 * Convert an ansi string to a wide char string.
212 * Ptr to first char matching the substring in the main string.
292 extern CHAR *CSL_Strtok(IN CHAR * ptstrSrc,
293 IN CONST CHAR * szSeparators);
312 extern CHAR *CSL_Strtokr(IN CHAR * pstrSrc
    [all...]
dbdcd.h 76 IN CHAR * pszCoffPath);
102 IN CHAR * pszCoffPath);
122 extern DSP_STATUS DCD_CreateManager(IN CHAR * pszZlDllName,
331 IN CHAR * pszCoffPath,
369 IN CHAR * pszPathName);
dbtype.h 106 typedef unsigned char BYTE; /* b */
111 typedef char CHAR; /* ch */
122 typedef CHAR SZ[]; /* sz */
123 typedef CHAR *PSTR; /* pstr */
128 typedef unsigned char UCHAR; /* uch */
151 typedef CHAR TCHAR;
179 typedef CHAR TCHAR;
  /libcore/luni/src/main/java/java/nio/
CharToByteBufferAdapter.java 22 * This class wraps a byte buffer to be a char buffer.
45 super(byteBuffer.capacity() / SizeOf.CHAR);
66 byteBuffer.limit(limit * SizeOf.CHAR);
67 byteBuffer.position(position * SizeOf.CHAR);
87 public char get() {
91 return byteBuffer.getChar(position++ * SizeOf.CHAR);
95 public char get(int index) {
97 return byteBuffer.getChar(index * SizeOf.CHAR);
101 public CharBuffer get(char[] dst, int dstOffset, int charCount) {
102 byteBuffer.limit(limit * SizeOf.CHAR);
    [all...]
  /external/kernel-headers/original/asm-mips/fw/arc/
types.h 15 typedef char CHAR;
19 typedef unsigned char UCHAR;
40 typedef char CHAR;
44 typedef unsigned char UCHAR;
51 typedef CHAR *_PCHAR;
62 typedef CHAR *PCHAR;
  /external/okhttp/src/main/java/libcore/util/
EmptyArray.java 25 public static final char[] CHAR = new char[0];
  /external/webkit/Tools/android/flex-2.5.4a/MISC/
parse.h 1 #define CHAR 257
  /libcore/luni/src/main/java/libcore/util/
EmptyArray.java 24 public static final char[] CHAR = new char[0];
  /external/zlib/src/as400/
compile.clp 13 DCL VAR(&SRCLIB) TYPE(*CHAR) LEN(10) +
15 DCL VAR(&SRCFILE) TYPE(*CHAR) LEN(10) +
17 DCL VAR(&CTLFILE) TYPE(*CHAR) LEN(10) +
20 DCL VAR(&MODLIB) TYPE(*CHAR) LEN(10) +
23 DCL VAR(&SRVLIB) TYPE(*CHAR) LEN(10) +
26 DCL VAR(&CFLAGS) TYPE(*CHAR) +
29 DCL VAR(&TGTRLS) TYPE(*CHAR) +
36 DCL VAR(&CMD) TYPE(*CHAR) LEN(512)
37 DCL VAR(&FIXDCMD) TYPE(*CHAR) LEN(512)
  /external/elfutils/backends/
linux-core-note.c 31 #define CHAR int8_t
88 FIELD (CHAR, pr_state);
89 FIELD (CHAR, pr_sname);
90 FIELD (CHAR, pr_zomb);
91 FIELD (CHAR, pr_nice);
99 FIELD (CHAR, pr_fname[FNAMESZ]);
100 FIELD (CHAR, pr_psargs[PRARGSZ]);
151 FIELD (state, CHAR, state, 'd'),
152 FIELD (state, CHAR, sname, 'c'),
153 FIELD (state, CHAR, zomb, 'd')
    [all...]

Completed in 661 milliseconds

1 2 3 4 5 6 7 8 9