HomeSort by relevance Sort by last modified time
    Searched refs:from (Results 76 - 100 of 12021) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/tools/python/google/
platform_utils.py 7 Any functions whose implementations or values differ from one platform to
19 from platform_utils_win import *
21 from platform_utils_mac import *
23 from platform_utils_linux import *
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre.py 9 from re import *
10 from re import __all__
13 from re import _compile
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre.py 9 from re import *
10 from re import __all__
13 from re import _compile
  /external/smack/src/org/jivesoftware/smack/filter/
FromContainsFilter.java 26 * Filters for packets where the "from" field contains a specified value.
32 private String from; field in class:FromContainsFilter
35 * Creates a "from" contains filter using the "from" field part.
37 * @param from the from field value the packet must contain.
39 public FromContainsFilter(String from) {
40 if (from == null) {
43 this.from = from.toLowerCase()
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
__init__.py 14 # contributors may be used to endorse or promote products derived from
30 from webkitpy.tool.steps.confirmdiff import ConfirmDiff
31 from webkitpy.tool.steps.options import Options
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
dump.py 24 # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
30 from parse import *
  /external/harfbuzz_ng/test/shaping/
hb-diff-ngrams 3 from hb_test_tools import *
hb-diff-stat 3 from hb_test_tools import *
hb-unicode-decode 3 from hb_test_tools import *
hb-unicode-encode 3 from hb_test_tools import *
  /external/mesa3d/src/gallium/tools/trace/
dump.py 24 # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
30 from parse import *
  /external/valgrind/main/drd/tests/
omp_matinv_racy.stderr.exp 1 ERROR SUMMARY: 76 errors from 7 contexts
omp_prime_racy.stderr.exp 1 ERROR SUMMARY: 3 errors from 3 contexts
pth_barrier.stderr.exp 1 ERROR SUMMARY: 1 errors from 1 contexts
pth_once.stderr.exp 1 ERROR SUMMARY: 0 errors from 0 contexts
tc05_simple_race.stderr.exp 1 ERROR SUMMARY: 2 errors from 2 contexts
tc06_two_races.stderr.exp 1 ERROR SUMMARY: 4 errors from 4 contexts
threaded-fork.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /prebuilts/python/darwin-x86/2.7.5/bin/
idle 3 from idlelib.PyShell import main
  /prebuilts/python/linux-x86/2.7.5/bin/
idle 3 from idlelib.PyShell import main
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
stream.py 15 # contributors may be used to endorse or promote products derived from
35 from mod_pywebsocket._stream_base import BadOperationException
36 from mod_pywebsocket._stream_base import ConnectionTerminatedException
37 from mod_pywebsocket._stream_base import InvalidFrameException
38 from mod_pywebsocket._stream_base import InvalidUTF8Exception
39 from mod_pywebsocket._stream_base import UnsupportedFrameException
40 from mod_pywebsocket._stream_hixie75 import StreamHixie75
41 from mod_pywebsocket._stream_hybi import Frame
42 from mod_pywebsocket._stream_hybi import Stream
43 from mod_pywebsocket._stream_hybi import StreamOption
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
stream.py 15 # contributors may be used to endorse or promote products derived from
35 from mod_pywebsocket._stream_base import BadOperationException
36 from mod_pywebsocket._stream_base import ConnectionTerminatedException
37 from mod_pywebsocket._stream_base import InvalidFrameException
38 from mod_pywebsocket._stream_base import InvalidUTF8Exception
39 from mod_pywebsocket._stream_base import UnsupportedFrameException
40 from mod_pywebsocket._stream_hixie75 import StreamHixie75
41 from mod_pywebsocket._stream_hybi import Frame
42 from mod_pywebsocket._stream_hybi import Stream
43 from mod_pywebsocket._stream_hybi import StreamOption
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicTokenIterator.java 56 /** The iterator from which to obtain the next header. */
102 * Obtains the next token from this iteration.
157 * will be obtained from {@link #headerIt}.
160 * @param from the position in the current header at which to
168 protected int findNext(int from)
171 if (from < 0) {
172 // called from the constructor, initialize the first header
177 from = 0;
180 from = findTokenSeparator(from);
    [all...]
  /external/chromium_org/components/enhanced_bookmarks/
image_store.cc 15 void ImageStore::ChangeImageURL(const GURL& from, const GURL& to) {
18 if (!HasKey(from))
21 std::pair<gfx::Image, GURL> image_info = Get(from);
22 Erase(from);
  /external/chromium_org/third_party/WebKit/Source/platform/text/
LineEnding.h 16 * contributors may be used to endorse or promote products derived from
42 PLATFORM_EXPORT CString normalizeLineEndingsToCRLF(const CString& from);
45 PLATFORM_EXPORT void normalizeLineEndingsToCR(const CString& from, Vector<char>& result);
48 PLATFORM_EXPORT void normalizeLineEndingsToLF(const CString& from, Vector<char>& result);
52 PLATFORM_EXPORT void normalizeLineEndingsToNative(const CString& from, Vector<char>& result);

Completed in 353 milliseconds

1 2 34 5 6 7 8 91011>>