HomeSort by relevance Sort by last modified time
    Searched full:terminated (Results 476 - 500 of 2498) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/resources/
extensions_ui.html 336 'terminated': 'false',
372 'terminated': 'false',
807 <span jsdisplay="!enabled && !terminated"
809 <span jsdisplay="terminated"
850 jsdisplay="(enabled && allow_reload) || terminated"
865 jsdisplay="!enabled && !terminated"
  /external/kernel-headers/original/asm-mips/
uaccess.h 673 * __strncpy_from_user: - Copy a NUL terminated string from userspace, with less checking.
679 * Copies a NUL-terminated string from userspace to kernel space.
712 * strncpy_from_user: - Copy a NUL terminated string from userspace.
718 * Copies a NUL-terminated string from userspace to kernel space.
771 * Get the size of a NUL-terminated string in user space.
819 * Get the size of a NUL-terminated string in user space.
  /external/llvm/docs/CommandGuide/
llvm-ar.pod 50 of a file member index number as an LSB 4byte integer and a null-terminated
58 the data for the file. The path name is null terminated and may contain the
294 below), an optional newline-terminated "long file name" and the contents of
310 is contained directly in this field and terminated with a slash (/) character.
359 and the symbol itself. Symbols are not null or newline terminated. Here are
384 I<offset>. The symbol is not terminated by any character. Its length is provided
  /external/webkit/Source/JavaScriptCore/icu/unicode/
uset.h 137 * terminated
150 * terminated
190 * @param patternLength The length of the UChar string. -1 if NUL terminated.
346 * @param strLen the length of the string or -1 if null terminated.
378 * @param strLen the length of the string or -1 if null terminated.
505 * @param strLen the length of the string or -1 if null terminated.
  /external/webkit/Source/WebCore/icu/unicode/
uset.h 137 * terminated
150 * terminated
190 * @param patternLength The length of the UChar string. -1 if NUL terminated.
346 * @param strLen the length of the string or -1 if null terminated.
378 * @param strLen the length of the string or -1 if null terminated.
505 * @param strLen the length of the string or -1 if null terminated.
  /external/icu4c/i18n/unicode/
uspoof.h 268 * input string is zero terminated.
273 * -1 if the input string is zero terminated.
536 * zero terminated.
569 * zero terminated.
654 * zero terminated.
659 * zero terminated.
688 * if the string is zero terminated.
692 * if the string is zero terminated.
    [all...]
ucol.h 335 * @param rulesLength The length of rules, or -1 if null-terminated.
472 * @param sourceLength The length of source, or -1 if null-terminated.
474 * @param targetLength The length of target, or -1 if null-terminated.
494 * @param sourceLength The length of source, or -1 if null-terminated.
496 * @param targetLength The length of target, or -1 if null-terminated.
513 * @param sourceLength The length of source, or -1 if null-terminated.
515 * @param targetLength The length of target, or -1 if null-terminated.
532 * @param sourceLength The length of source, or -1 if null-terminated.
534 * @param targetLength The length of target, or -1 if null-terminated.
    [all...]
coll.h 149 * zero-terminated byte strings. They consist of several substrings, one for
409 * is equal to -1, the string array is null-terminated.
412 * is equal to -1, the string array is null-terminated.
428 * is equal to -1, the string array is null-terminated.
431 * is equal to -1, the string array is null-terminated.
463 * from a std::string or a NUL-terminated const char * string.
    [all...]
  /external/icu4c/common/unicode/
ures.h 354 * @return a pointer to a zero-terminated UChar array which lives in a memory mapped/DLL file.
406 * Always NUL-terminated unless the string was written to dest and
587 * @return a pointer to a zero-terminated UChar array which lives in a memory mapped/DLL file.
622 * @return a pointer to a zero-terminated UChar array which lives in a memory mapped/DLL file.
672 * Always NUL-terminated unless the string was written to dest and
713 * @return a pointer to a zero-terminated UChar array which lives in a memory mapped/DLL file.
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
EmulatorConnection.java 64 * the queries, and notification messages are all zero-terminated strings.
125 * @param msg Zero-terminated message string to send.
244 * @param msg Zero-terminated message string to send.
338 * @param msg Zero-terminated message string to send.
690 * @return Zero-terminated reply string. String must be formatted as such:
711 * @return Zero-terminated reply string. String must be formatted as such:
    [all...]
  /external/clang/include/clang/AST/
RecursiveASTVisitor.h 160 /// \returns false if the visitation was terminated early, true
167 /// \returns false if the visitation was terminated early, true
174 /// \returns false if the visitation was terminated early, true
181 /// \returns false if the visitation was terminated early, true
187 /// \returns false if the visitation was terminated early, true otherwise.
193 /// \returns false if the visitation was terminated early, true otherwise.
198 /// \returns false if the visitation was terminated early, true otherwise.
204 /// \returns false if the visitation was terminated early, true otherwise.
210 /// \returns false if the visitation was terminated early, true otherwise.
217 /// \returns false if the visitation was terminated early, true otherwise
    [all...]
  /external/clang/test/Analysis/
string.c 63 return strlen((char*)&strlen_fn); // expected-warning{{Argument to string length function is the address of the function 'strlen_fn', which is not a null-terminated string}}
68 return strlen((char*)&&label); // expected-warning{{Argument to string length function is the address of the label 'label', which is not a null-terminated string}}
206 return strnlen((char*)&strlen_fn, 3); // expected-warning{{Argument to string length function is the address of the function 'strlen_fn', which is not a null-terminated string}}
211 return strnlen((char*)&&label, 3); // expected-warning{{Argument to string length function is the address of the label 'label', which is not a null-terminated string}}
297 strcpy(x, (char*)&strcpy_fn); // expected-warning{{Argument to string copy function is the address of the function 'strcpy_fn', which is not a null-terminated string}}
301 strcpy(x, (const char*)&strcpy_fn); // expected-warning{{Argument to string copy function is the address of the function 'strcpy_fn', which is not a null-terminated string}}
401 strcat(x, (char*)&strcat_fn); // expected-warning{{Argument to string copy function is the address of the function 'strcat_fn', which is not a null-terminated string}}
510 strncpy(x, (char*)&strcpy_fn, 5); // expected-warning{{Argument to string copy function is the address of the function 'strcpy_fn', which is not a null-terminated string}}
609 strncat(x, (char*)&strncat_fn, 4); // expected-warning{{Argument to string copy function is the address of the function 'strncat_fn', which is not a null-terminated string}}
  /external/nist-sip/java/gov/nist/javax/sip/
DialogFilter.java 542 * and you do not get transaction terminated events on ACK.
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_service.h 234 // Looks up a terminated (crashed) extension by ID. GetExtensionById does
235 // not include terminated extensions.
504 // Keep track of terminated extensions.
549 // The list of installed extensions that have been terminated.
552 // Used to quickly check if an extension was terminated.
  /external/llvm/lib/Object/
COFFObjectFile.cpp 478 // Check that the string table is null terminated if has any in it.
617 // Null terminated, let ::strlen figure out the length.
620 // Not null terminated, use all 8 bytes.
629 // Null terminated, let ::strlen figure out the length.
632 // Not null terminated, use all 8 bytes.
  /bionic/libc/unistd/
fnmatch.c 181 /* Patterns must be terminated with ']', not EOS */
186 /* Patterns must be terminated with ']' not '/' */
207 /* NOT a properly balanced [expr] pattern, EOS terminated
  /dalvik/vm/native/
dalvik_system_Zygote.cpp 78 "Process %d terminated by signal (%d)",
83 "Process %d terminated by signal (%d)",
102 "Exit zygote because system server (%d) has terminated",
  /external/apache-http/src/org/apache/http/impl/entity/
LaxContentLengthStrategy.java 65 * and 304 responses and any response to a HEAD request) is always terminated by the first
72 * coding (section 3.6), unless the message is terminated by closing the connection.
140 * include "chunked", unless the message is terminated by closing the connection. When the
  /external/bluetooth/glib/gio/
gioenums.h 87 * @G_FILE_ATTRIBUTE_TYPE_STRING: a null terminated UTF8 string.
88 * @G_FILE_ATTRIBUTE_TYPE_BYTE_STRING: a zero terminated string of non-zero bytes.
101 G_FILE_ATTRIBUTE_TYPE_BYTE_STRING, /* zero terminated string of non-zero bytes */
  /external/bluetooth/glib/glib/
gconvert.c 560 * nul-terminated<footnoteref linkend="nul-unsafe"/>.
593 * nul-terminated string, which must be freed with
715 * nul-terminated<footnote id="nul-unsafe">
743 * nul-terminated string, which must be freed with
788 * nul-terminated<footnoteref linkend="nul-unsafe"/>.
818 * nul-terminated string, which must be freed with
1068 * nul-terminated<footnoteref linkend="nul-unsafe"/>.
1109 * nul-terminated<footnoteref linkend="nul-unsafe"/>.
1167 * @charsets: return location for the %NULL-terminated list of encoding names
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-string.h 94 // Clones a 0-terminated C string, allocating memory using new. The
194 // Constructs a String by cloning a 0-terminated C string.
272 // Gets the 0-terminated C string this String object represents.
  /external/gtest/include/gtest/internal/
gtest-string.h 94 // Clones a 0-terminated C string, allocating memory using new. The
194 // Constructs a String by cloning a 0-terminated C string.
272 // Gets the 0-terminated C string this String object represents.
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 78 // First check: is we have constant array terminated with zero
84 return false; // Not null terminated.
165 // If initializer is a null-terminated string, put it in a "cstring"
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-string.h 94 // Clones a 0-terminated C string, allocating memory using new. The
194 // Constructs a String by cloning a 0-terminated C string.
272 // Gets the 0-terminated C string this String object represents.
  /external/protobuf/gtest/include/gtest/internal/
gtest-string.h 92 // Clones a 0-terminated C string, allocating memory using new. The
192 // Constructs a String by cloning a 0-terminated C string.
272 // Gets the 0-terminated C string this String object represents.

Completed in 970 milliseconds

<<11121314151617181920>>