Searched refs:text (Results 101 - 125 of 5442) sorted by last modified time

1234567891011>>

/external/srec/portable/src/
H A DpLastError.c23 void printGetLastErrorInternal(const LCHAR* text, char* file, int line) argument
46 PLogError(L("%s: %s"), text, msg);
48 pfprintf(PSTDERR, L("[%s:%d] %s: %s\n"), file, line, text, msg);
58 pfprintf(PSTDERR, "[%s:%d] %s, errno = %x\n", file, line, text, err);
H A Dplog.c336 LCHAR text[P_MAX_STACKTRACE]; local
340 rc = PStackTraceGetValue((LCHAR*) & text, &len);
345 rc = PStackTracePopLevel((LCHAR*) & text);
352 index = text;
365 LSTRCPY(text, L(""));
371 rc = psprintf(buffer + LSTRLEN(buffer), L("Module=%s|"), text);
/external/srec/seti/sltsEngine/include/
H A DCSWIslts.h41 SWIsltsResult textToPhone(const char *text,
H A DSWIslts.h66 const char *text,
88 const char *text,
94 const char *text,
/external/srec/seti/sltsEngine/src/
H A DSWIslts.c186 const char *text,
204 if (text == NULL) {
218 if((strlen(text)+1) > MAX_INPUT_LEN){
222 new_text = MALLOC((strlen(text)+1)*sizeof(char), MTAG);
229 strcpy(new_text, text);
269 const char *text,
288 nRes = SWIsltsTextToPhone(hLts, text, phone_string, &num_phones, MAX_PRON_LEN);
185 SWIsltsTextToPhone(SWIsltsHand hLts, const char *text, char *output_phone_string[], int *output_phone_len, int max_phone_len) argument
268 SWIsltsG2PGetWordTranscriptions(SWIsltsHand hLts, const char *text, SWIsltsTranscription **ppTranscriptions, int *pnNbrOfTranscriptions) argument
/external/srec/shared/src/
H A DSessionTypeImpl.c1010 * @param text Text containing integers
1014 LCHAR* text, IntArrayList* list)
1020 size = LSTRLEN(text);
1025 for (; pos < size && LISSPACE(text[pos]); ++pos);
1035 for (; pos < size && !LISSPACE(text[pos]); ++pos);
1036 text[pos] = L('\0');
1037 CHKLOG(rc, lstrtoi(text + beginning, &value, 10));
1013 parseIntList(ESR_SessionType* self, LCHAR* text, IntArrayList* list) argument
/external/srec/srec/Semproc/src/
H A DSemanticProcessorImpl.c189 static const LCHAR* LSTRNCHR2(const LCHAR* text, LCHAR c, LCHAR c2, size_t len) argument
191 for (; *text != c && *text != c2 && len > 0 && *text; text++, len--)
193 if (len) return text;
/external/srec/srec/ca/
H A Drec_resu.c68 ESR_ReturnCode CA_ResultStripSlotMarkers(char *text) argument
70 srec_result_strip_slot_markers(text);
/external/srec/srec/cfront/
H A Dnisthdr.h161 void setPromptText(char *text);
162 void setPronunciationText(char *text);
163 void setRecordingMode(char *text);
/external/srec/srec/include/
H A Dsimapi.h2151 * @param text String to filter
2153 ESR_ReturnCode CA_ResultStripSlotMarkers(char *text);
2159 * @param text String to filter
2493 * The file is an ASCII text file usually of the type .PAR or .INI
2532 * The file is an ASCII text file usually of the type .PAR or .INI
2573 * The file is an ASCII text file usually of the type .PAR or .INI
2606 * key parameter key (text label)
2607 * value pointer to store parameter value (text)
2633 * key parameter key (text label)
2634 * value pointer to store parameter value (text)
[all...]
/external/srec/srec/test/SRecTest/src/
H A DSRecTest.c756 * @param text String containing command
1761 int srec_test_execute_command ( ApplicationData *data, LCHAR *text, FILE *results_file, size_t *recognition_count ) argument
1771 current_command_start = text;
/external/srec/srec/test/SRecTestAudio/src/
H A DSRecTestAudio.c749 * @param text String containing command
1538 int srec_test_execute_command ( ApplicationData *data, AUDIOIN_H audio_input_handle, LCHAR *text, FILE *results_file, size_t *recognition_count ) argument
1548 current_command_start = text;
/external/srec/tools/grxmlcompile/
H A Dgrxmldoc.cpp160 const char* text = node.Value();
161 if(!text) text = "__NULL__";
162 printf("processing node type %d text %s\n", node.Type(), text);
704 // Count of reps applies to the text elements in this count node
/external/sonivox/arm-hybrid-22k/lib_src/
H A DARM-E_filter_gnu.s30 .text
H A DARM-E_interpolate_loop_gnu.s31 .text
H A DARM-E_interpolate_noloop_gnu.s31 .text
H A DARM-E_mastergain_gnu.s41 .text
H A DARM-E_voice_gain_gnu.s34 .text
/external/sonivox/arm-wt-22k/lib_src/
H A DARM-E_filter_gnu.s30 .text
H A DARM-E_interpolate_loop_gnu.s31 .text
H A DARM-E_interpolate_noloop_gnu.s31 .text
H A DARM-E_mastergain_gnu.s41 .text
H A DARM-E_voice_gain_gnu.s34 .text
/external/skia/platform_tools/android/examples/hello_skia_app/jni/
H A Dhelloskia.cpp40 // Setup a SkPaint for drawing our text
42 paint.setColor(SK_ColorBLACK); // This is a solid black color for our text
43 paint.setTextSize(SkIntToScalar(30)); // Sets the text size to 30 pixels
44 paint.setAntiAlias(true); // We turn on anti-aliasing so that the text to looks good.
46 // Draw some text
47 SkString text("Skia is Best!");
49 canvas->drawText(text.c_str(), text.size(), // text's data and length
50 10, fontHeight, // X and Y coordinates to place the text
[all...]
/external/skia/platform_tools/nacl/src/
H A Dnacl_hello.cpp32 static void doDraw(SkCanvas* canvas, const SkPaint& paint, const char text[]) { argument
39 canvas->drawText(text, strlen(text),

Completed in 245 milliseconds

1234567891011>>