/external/chromium_org/v8/test/mjsunit/compiler/ |
D | expression-trees.js | 60 var identifiers = ['a','b','c','d','e','f']; variable 61 var or_trees = makeTrees("|", identifiers); 62 var and_trees = makeTrees("&", identifiers); 78 eval(identifiers[j] + "+= ''"); 81 eval(identifiers[j] + "= +" + identifiers[j]); 99 eval(identifiers[j] + "+= ''"); 102 eval(identifiers[j] + "= +" + identifiers[j]);
|
/external/chromium_org/third_party/jinja2/ |
D | compiler.py | 143 self.identifiers = Identifiers() 173 self.identifiers.declared.update( 174 parent.identifiers.declared | 175 parent.identifiers.declared_parameter | 178 self.identifiers.outer_undeclared.update( 179 parent.identifiers.undeclared - 180 self.identifiers.declared 188 rv.identifiers = object.__new__(self.identifiers.__class__) 189 rv.identifiers.__dict__.update(self.identifiers.__dict__) 197 visitor = FrameIdentifierVisitor(self.identifiers) [all …]
|
/external/srec/srec/Semproc/src/ |
D | ExpressionParser.c | 218 self->ptokenBuf = self->identifiers[self->idCount]; in handle_OpAssign() 237 self->ptokenBuf = self->identifiers[self->idCount]; in handle_OpConcat() 254 self->ptokenBuf = self->identifiers[self->idCount]; in handle_LBracket() 262 …rc = EP_LookUpFunction(self, self->identifiers[self->idCount-1], &self->userData, &self->pfunction… in handle_LBracket() 273 LSTRCPY(self->functionName, self->identifiers[self->idCount-1]); in handle_LBracket() 276 self->ptokenBuf = self->identifiers[self->idCount]; in handle_LBracket() 292 self->ptokenBuf = self->identifiers[self->idCount]; in handle_ParamDelim() 321 self->ptokenBuf = self->identifiers[self->idCount]; in handle_ConditionalExpression_IfTrue() 338 self->ptokenBuf = self->identifiers[self->idCount]; in handle_ConditionalExpression_Else() 372 if (self->identifiers[i][0] != STRING_DELIM) in handle_EndOfStatement() [all …]
|
/external/chromium_org/chrome/browser/ui/autofill/ |
D | autofill_popup_controller_impl.cc | 130 const std::vector<int>& identifiers) { in Show() argument 131 SetValues(names, subtexts, icons, identifiers); in Show() 350 top += GetRowHeightFromId(identifiers()[i]); in GetRowBounds() 357 GetRowHeightFromId(identifiers()[index])); in GetRowBounds() 398 const std::vector<int>& AutofillPopupControllerImpl::identifiers() const { in identifiers() function in autofill::AutofillPopupControllerImpl 446 !CanAccept(identifiers()[new_selected_line])) { in SelectNextLine() 461 !CanAccept(identifiers()[new_selected_line])) { in SelectPreviousLine() 506 for (size_t i = 0; i < identifiers().size(); ++i) { in LineFromY() 507 current_height += GetRowHeightFromId(identifiers()[i]); in LineFromY() 514 return identifiers().size() - 1; in LineFromY() [all …]
|
D | autofill_popup_controller_unittest.cc | 90 using AutofillPopupControllerImpl::identifiers; 352 EXPECT_EQ(ids, autofill_popup_controller_->identifiers()); in TEST_F() 368 EXPECT_EQ(ids, autofill_popup_controller_->identifiers()); in TEST_F() 381 EXPECT_EQ(ids, autofill_popup_controller_->identifiers()); in TEST_F() 395 EXPECT_EQ(ids, autofill_popup_controller_->identifiers()); in TEST_F() 408 EXPECT_EQ(ids, autofill_popup_controller_->identifiers()); in TEST_F() 419 EXPECT_EQ(ids, autofill_popup_controller_->identifiers()); in TEST_F()
|
D | chrome_autofill_client.cc | 123 const std::vector<int>& identifiers, in ShowAutofillPopup() argument 139 popup_controller_->Show(values, labels, icons, identifiers); in ShowAutofillPopup()
|
D | autofill_popup_controller_impl.h | 44 const std::vector<int>& identifiers); 95 virtual const std::vector<int>& identifiers() const OVERRIDE;
|
/external/chromium_org/tools/grit/grit/tool/ |
D | toolbar_postprocess.py | 41 identifiers = grit.node.empty.IdentifiersNode() 42 identifiers.StartParsing('identifiers', release) 43 identifiers.EndParsing() 44 release.AddChild(identifiers) 101 self.AddIdentifiers(rctext, identifiers)
|
/external/chromium_org/v8/test/mjsunit/ |
D | keywords-and-reserved_words.js | 108 var identifiers = [ variable 122 for (var i = 0; i < identifiers.length; i++) { 123 assertEquals ("identifier", classifyIdentifier(identifiers[i]));
|
/external/chromium_org/android_webview/native/ |
D | aw_autofill_client.cc | 86 const std::vector<int>& identifiers, in ShowAutofillPopup() argument 89 identifiers_ = identifiers; in ShowAutofillPopup() 98 element_bounds_in_screen_space, values, labels, identifiers); in ShowAutofillPopup() 105 const std::vector<int>& identifiers) { in ShowAutofillPopupImpl() argument 122 env, data_array.obj(), i, name.obj(), label.obj(), identifiers[i]); in ShowAutofillPopupImpl()
|
D | aw_autofill_client.h | 77 const std::vector<int>& identifiers, 99 const std::vector<int>& identifiers);
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
D | t013parser.g | 7 this.identifiers = []; 11 this.identifiers.push(name);
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t013parser.g | 7 self.identifiers = [] 13 self.identifiers.append(name)
|
D | t013parser.py | 18 assert parser.identifiers == ['foobar']
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
D | python.js | 13 var identifiers = parserConf.identifiers|| new RegExp("^[_A-Za-z][_A-Za-z0-9]*"); 153 if (stream.match(identifiers)) { 263 style = stream.match(identifiers, false) ? null : ERRORCLASS; 274 return stream.match(identifiers, false) ? 'meta' : ERRORCLASS;
|
/external/chromium_org/chrome/browser/extensions/api/declarative/ |
D | rules_registry.cc | 311 RuleIdentifiersMap::const_iterator identifiers = in IsUniqueId() local 313 if (identifiers == used_rule_identifiers_.end()) in IsUniqueId() 315 return identifiers->second.find(rule_id) == identifiers->second.end(); in IsUniqueId() 370 const std::vector<std::string>& identifiers) { in RemoveUsedRuleIdentifiers() argument 372 for (i = identifiers.begin(); i != identifiers.end(); ++i) in RemoveUsedRuleIdentifiers()
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
D | basic.rb | 45 parser.identifiers.should == %w(blah_de_blah) 69 parser.identifiers.should == %w(blah_de_blah)
|
/external/chromium_org/content/renderer/pepper/ |
D | ppb_var_deprecated_impl.cc | 214 NPIdentifier* identifiers = NULL; in EnumerateProperties() local 217 NULL, accessor.object()->np_object(), &identifiers, &count)) { in EnumerateProperties() 228 (*properties)[i] = NPIdentifierToPPVar(identifiers[i]); in EnumerateProperties() 230 free(identifiers); in EnumerateProperties()
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | npruntime.cpp | 188 void _NPN_GetStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier* identifiers) in _NPN_GetStringIdentifiers() argument 191 ASSERT(identifiers); in _NPN_GetStringIdentifiers() 193 if (names && identifiers) { in _NPN_GetStringIdentifiers() 195 identifiers[i] = _NPN_GetStringIdentifier(names[i]); in _NPN_GetStringIdentifiers()
|
/external/llvm/test/TableGen/ |
D | ValidIdentifiers.td | 4 // Ensure that generated names for anonymous records are valid identifiers via the ctags index.
|
/external/eigen/doc/ |
D | A10_Eigen2SupportModes.dox | 27 … stage 20". This mode forces you to add eigen2_ prefixes to the Eigen2 identifiers that conflict w… 62 The eigen2_-prefixed identifiers are still available, but at this stage you should now replace them… 88 … (it remains available with eigen2_ prefix). So at this stage, all the identifiers that exist in E… 89 \li Stage 30 introduces the remaining Eigen 3 identifiers. So at this stage, you have the full Eige…
|
/external/sepolicy/ |
D | initial_sids | 4 # Define initial security identifiers
|
/external/llvm/test/Verifier/ |
D | module-flags-1.ll | 29 ; CHECK: module flag identifiers must be unique (or of 'require' type) 32 ; CHECK-NOT: module flag identifiers must be unique
|
/external/chromium_org/third_party/icu/source/data/translit/ |
D | en.txt | 17 // This list is currently incomplete, and care should be taken to translate these identifiers.
|
/external/icu/icu4c/source/data/translit/ |
D | en.txt | 17 // This list is currently incomplete, and care should be taken to translate these identifiers.
|