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

1 2 3

  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
encodedstream.h 43 Ch Take() { Ch c = current_; current_ = Encoding::Take(is_); return c; }
81 Ch Take() { RAPIDJSON_ASSERT(false); }
114 static const TakeFunc f[] = { RAPIDJSON_ENCODINGS_FUNC(Take) };
123 Ch Take() { Ch c = current_; current_ = takeFunc_(*is_); return c; }
151 if (bom == 0xFFFE0000) { type_ = kUTF32BE; hasBOM_ = true; is_->Take(); is_->Take(); is_->Take(); is_->Take(); }
152 else if (bom == 0x0000FEFF) { type_ = kUTF32LE; hasBOM_ = true; is_->Take(); is_->Take(); is_->Take(); is_->Take(); }
    [all...]
encodings.h 67 //! Take a character from input byte stream, skip BOM if exist.
71 //! Take a character from input byte stream.
73 static Ch Take(InputByteStream& is);
125 #define COPY() c = is.Take(); *codepoint = (*codepoint << 6) | ((unsigned char)c & 0x3Fu)
128 Ch c = is.Take();
154 #define COPY() os.Put(c = is.Take())
199 Ch c = Take(is);
201 c = is.Take();
203 c = is.Take();
205 c = is.Take();
    [all...]
reader.h 252 s.Take();
469 is.Take(); // Skip '{'
477 is.Take();
492 if (is.Take() != ':')
504 switch (is.Take()) {
519 is.Take(); // Skip '['
527 is.Take();
540 switch (is.Take()) {
554 is.Take();
556 if (is.Take() == 'u' && is.Take() == 'l' && is.Take() == 'l') {
    [all...]
memorystream.h 40 Ch Take() { return (src_ == end_) ? '\0' : *src_++; }
filereadstream.h 44 Ch Take() { Ch c = *current_; Read(); return c; }
filewritestream.h 71 char Take() { RAPIDJSON_ASSERT(false); return 0; }
  /external/libchrome/base/files/
scoped_temp_dir.h 16 // intervening calls to Delete or Take, or the calls will fail.
40 // Don't call multiple times unless Take() has been called first.
48 FilePath Take();
scoped_temp_dir.cc 73 FilePath ScopedTempDir::Take() {
scoped_temp_dir_unittest.cc 35 FilePath path = dir.Take();
92 EXPECT_TRUE(other_dir.Set(dir.Take()));
  /external/libmojo/mojo/public/cpp/bindings/
struct_ptr.h 44 StructPtr(StructPtr&& other) : ptr_(nullptr) { Take(&other); }
46 Take(&other);
109 void Take(StructPtr* other) {
135 InlinedStructPtr(InlinedStructPtr&& other) : is_null_(true) { Take(&other); }
137 Take(&other);
197 void Take(InlinedStructPtr* other) {
wtf_array.h 43 WTFArray(WTFArray&& other) : is_null_(true) { Take(&other); }
51 Take(&other);
184 void Take(WTFArray* other) {
wtf_map.h 45 WTFMap(WTFMap&& other) : is_null_(true) { Take(&other); }
53 Take(&other);
187 void Take(WTFMap* other) {
array.h 54 Array(Array&& other) : is_null_(true) { Take(&other); }
62 Take(&other);
199 void Take(Array* other) {
map.h 60 Map(Map&& other) : is_null_(true) { Take(&other); }
68 Take(&other);
252 void Take(Map* other) {
  /external/libchrome/crypto/
scoped_test_nss_db.cc 52 temp_dir_.Take();
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
simdtest.cpp 59 EXPECT_EQ('X', s.Take());
filestreamtest.cpp 77 EXPECT_EQ(json_[i], s.Take());
102 EXPECT_EQ(json_[i], is.Take());
prettywritertest.cpp 107 Ch Take() { assert(false); return '\0'; }
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringTokenizer.cs 70 return new string[] { token, str[EnumerableExtensions.Sum(EnumerableExtensions.Select(EnumerableExtensions.Take(_tokens, i + 1),
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringTokenizer.cs 71 return new string[] { token, str[_tokens.Take( i + 1 ).Select( t => t.Length + 1 ).Sum() - 1].ToString() };
  /external/chromium-libpac/test/js-unittest/
passthrough.js 24 // Take care not to place multiple adjacent dots,
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 80 template<template<decltype(X)> class ...Take,
83 typedef types<typename Take<_>::type...> take; typedef in struct:ParameterPackExpansions::takedrop_impl::inner
88 template<unsigned N, typename...Ts> struct take { struct in namespace:ParameterPackExpansions
90 template inner<wrap<Ts>::template inner...>::take; // expected-error {{too few template arguments}}
97 using T1 = take<3, int, char, double, long>::type; // expected-note {{previous}}
104 using T2 = take<4, int, char, double, long>::type; // expected-note {{previous}}
112 using T3 = take<5, int, char, double, long>::type; // expected-note {{in instantiation of}}
  /external/python/cpython2/Mac/Modules/qd/
qdsupport.py 343 f.docstring = lambda: """Take (string, int, Rect) argument and create BitMap"""
371 f.docstring = lambda: """Take string BitMap and turn into BitMap object"""
  /frameworks/native/libs/vr/libpdx/
status_tests.cpp 116 TEST(Status, Take) {
121 auto data = status.take();
  /external/libchrome/base/
bind_helpers.h 267 T Take() const {
306 return o.Take();

Completed in 530 milliseconds

1 2 3