HomeSort by relevance Sort by last modified time
    Searched refs:Add (Results 51 - 75 of 1065) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
RewriteRuleElementStream.cs 46 * Once you start next()ing, do not try to add more elements. It will
49 * TODO: add mechanism to detect/puke on modification after reading from stream
65 /** <summary>Track single elements w/o creating a list. Upon 2nd add, alloc list */
98 Add( oneElement );
122 public virtual void Add( object el )
124 //System.out.println("add '"+elementDescription+"' is "+el);
130 { // if in list, just add
131 elements.Add( el );
141 elements.Add( singleElement );
143 elements.Add( el )
    [all...]
  /external/chromium/chrome/browser/prefs/
pref_change_registrar_unittest.cc 61 registrar.Add("test.pref.1", observer());
62 registrar.Add("test.pref.2", observer());
87 registrar.Add("test.pref.1", observer());
104 registrar.Add("test.pref.1", observer());
105 registrar.Add("test.pref.2", observer());
  /external/v8/src/
preparse-data.cc 70 function_store_.Add(start_pos);
72 function_store_.Add(end_pos);
74 function_store_.Add((arg_opt == NULL) ? 0 : 1);
83 function_store_.Add(str.length());
85 function_store_.Add(str[i]);
144 // Add terminator to symbols, then pad to unsigned size.
174 symbol_store_.Add(static_cast<byte>(number >> i) | 0x80u);
179 symbol_store_.Add(static_cast<byte>(number));
string-stream.h 129 void Add(Vector<const char> format, Vector<FmtElm> elms);
130 void Add(const char* format);
131 void Add(Vector<const char> format);
132 void Add(const char* format, FmtElm arg0);
133 void Add(const char* format, FmtElm arg0, FmtElm arg1);
134 void Add(const char* format, FmtElm arg0, FmtElm arg1, FmtElm arg2);
135 void Add(const char* format,
dateparser-inl.h 109 time.Add(n);
110 time.Add(0);
113 if (!time.Add(n)) return false;
117 time.Add(n);
134 if (!day.Add(n)) return false;
235 day->Add(sign * year);
237 day->Add(scanner->Next().number());
244 day->Add(scanner->Next().number());
248 day->Add(scanner->Next().number());
263 time->Add(scanner->Next().number())
    [all...]
ast.cc 143 case Token::ASSIGN_ADD: return Token::ADD;
258 // Add key to the table.
266 // Add the label to the collector, but discard duplicates.
271 targets_.Add(target);
298 case Token::ADD:
424 receiver_types_.Add(oracle->LoadMonomorphicReceiverType(this));
444 receiver_types_.Add(oracle->StoreMonomorphicReceiverType(this));
457 receiver_types_.Add(oracle->StoreMonomorphicReceiverType(this));
805 stream()->Add("(|");
807 stream()->Add(" ");
    [all...]
serialize.cc 107 Add(address, type, id, name);
111 void ExternalReferenceTable::Add(Address address,
121 refs_.Add(entry);
195 Add(Debug_Address(Debug::k_after_break_target_address).address(isolate),
199 Add(Debug_Address(Debug::k_debug_break_slot_address).address(isolate),
203 Add(Debug_Address(Debug::k_debug_break_return_address).address(isolate),
207 Add(Debug_Address(Debug::k_restarter_frame_function_pointer).address(isolate),
233 Add(reinterpret_cast<Address>(GetInternalPointer(
251 Add(isolate->get_address_from_id((Isolate::AddressId)i),
257 Add((Address)&Accessors::name,
    [all...]
func-name-inferrer.cc 51 names_stack_.Add(Name(name, kEnclosingConstructorName));
58 names_stack_.Add(Name(name, kLiteralName));
65 names_stack_.Add(Name(name, kVariableName));
  /external/chromium/base/
id_map_unittest.cc 33 int32 id1 = map.Add(&obj1);
38 int32 id2 = map.Add(&obj2);
66 map.Add(&obj1);
67 map.Add(&obj2);
68 map.Add(&obj3);
95 ids[i] = map.Add(&obj[i]);
141 map_external_ids[i] = map_external.Add(external_obj[i]);
144 map_owned_ids[i] = map_owned.Add(owned_obj[i]);
180 map_external_ids[i] = map_external.Add(external_obj[i]);
183 map_owned_ids[i] = map_owned.Add(owned_obj[i])
    [all...]
  /external/chromium/net/base/
ssl_client_auth_cache_unittest.cc 36 // Add client certificate for server1.
37 cache.Add(server1, cert1);
42 // Add client certificate for server2.
43 cache.Add(server2, cert2);
52 cache.Add(server1, cert3);
93 cache.Add(server1, cert1.get());
94 cache.Add(server2, cert2.get());
114 cache.Add(server1, NULL);
127 // Add a new preference for a specific certificate.
128 cache.Add(server1, cert1)
    [all...]
ssl_client_auth_cache.cc 33 void SSLClientAuthCache::Add(const std::string& server,
ssl_client_auth_cache.h 39 // Add a client certificate for |server| to the cache. If there is already
43 void Add(const std::string& server, X509Certificate* client_cert);
  /external/chromium/net/ftp/
ftp_auth_cache_unittest.cc 40 // Add entry for origin1.
41 cache.Add(origin1, kUsername1, kPassword1);
48 // Add an entry for origin2.
49 cache.Add(origin2, kUsername2, kPassword2);
60 cache.Add(origin1, kUsername3, kPassword3);
84 cache.Add(origin1, kUsername, kPassword);
85 cache.Add(origin2, kUsername, kPassword);
97 // Add.
98 cache.Add(GURL("ftp://HoSt:21"), kUsername, kPassword);
107 cache.Add(GURL("ftp://host"), kOthername, kOtherword)
    [all...]
  /external/clang/lib/Driver/
SanitizerArgs.h 121 unsigned &Add, unsigned &Remove, bool DiagnoseErrors) {
122 Add = 0;
126 Add = Address;
132 Add = Thread;
138 Add = UndefinedTrap;
143 Add = Bounds;
146 Add = parse(D, A, DiagnoseErrors);
169 unsigned Add, Remove;
170 if (parse(D, Args, *I, Add, Remove, false) &&
171 (Add & Kind)
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 98 case Instruction::Add:
162 Abbv->Add(BitCodeAbbrevOp(bitc::VST_CODE_ENTRY));
163 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
165 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
166 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7));
237 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
238 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
240 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
245 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION_OLD));
246 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvarar
    [all...]
  /frameworks/base/tools/aidl/
generate_java_rpc.cpp 144 this->processMethod->statements->Add(new VariableDeclaration(requestData,
148 this->processMethod->statements->Add(new VariableDeclaration(this->resultData,
164 this->processMethod->statements->Add(dispatchIfStatement);
183 block->Add(new VariableDeclaration(v));
189 block->Add(new Assignment(v, new NewExpression(v->type)));
200 // Add that parameter to the method call
206 // Add a final parameter: RpcContext. Contains data about
219 block->Add(realCall);
223 block->Add(new VariableDeclaration(_result, realCall));
227 block->Add(new Assignment(this->resultData
    [all...]
  /external/chromium/chrome/browser/automation/
automation_tab_tracker.cc 21 registrar_.Add(this, NotificationType::TAB_CLOSING,
23 registrar_.Add(this, NotificationType::EXTERNAL_TAB_CLOSED,
27 registrar_.Add(this, NotificationType::LOAD_STOP,
  /external/llvm/lib/Transforms/InstCombine/
InstCombineWorklist.h 36 /// Add - Add the specified instruction to the worklist if it isn't already
38 void Add(Instruction *I) {
40 DEBUG(errs() << "IC: ADD: " << *I << '\n');
47 Add(I);
50 /// AddInitialGroup - Add the specified batch of stuff in reverse order.
54 assert(Worklist.empty() && "Worklist must be empty to add initial group");
83 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 Add(cast<Instruction>(*UI));
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 83 case Instruction::Add:
108 case AtomicRMWInst::Add: return bitc::RMW_ADD;
188 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
189 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
191 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
196 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION_OLD));
197 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
198 Abbv->Add(BitCodeAbbrevOp(0)); // FIXME: DEAD value, remove in LLVM 3.0
199 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
200 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 90 case Instruction::Add:
115 case AtomicRMWInst::Add: return bitc::RMW_ADD;
243 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
244 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
245 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
250 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
251 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
252 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
253 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
259 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_STRUCT_ANON))
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 92 case Instruction::Add:
117 case AtomicRMWInst::Add: return bitc::RMW_ADD;
199 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
200 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
201 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
206 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
207 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
208 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
209 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
215 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_STRUCT_ANON))
    [all...]
  /external/chromium/chrome/browser/content_settings/
stub_settings_observer.cc 13 registrar_.Add(this, NotificationType::CONTENT_SETTINGS_CHANGED,
  /external/chromium/chrome/browser/extensions/
extension_special_storage_policy.cc 43 protected_apps_.Add(extension);
45 unlimited_extensions_.Add(extension);
47 file_handler_extensions_.Add(extension);
104 void ExtensionSpecialStoragePolicy::SpecialCollection::Add(
  /external/chromium/chrome/browser/notifications/
balloon_collection_base.h 30 virtual void Add(Balloon* balloon);
  /external/chromium/chrome/browser/search_engines/
template_url_scraper_unittest.cc 30 registrar_.Add(this, NotificationType::TEMPLATE_URL_MODEL_LOADED,

Completed in 972 milliseconds

1 23 4 5 6 7 8 91011>>