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

1 23 4 5 6 7 8 910

  /build/kati/
var.h 178 Var* Lookup(Symbol name) const;
eval.cc 295 Var* v = current_scope_->Lookup(name);
304 return current_scope_->Lookup(name);
  /external/clang/lib/Sema/
SemaAttr.cpp 21 #include "clang/Sema/Lookup.h"
450 LookupResult Lookup(*this, Name, IdTok.getLocation(), LookupOrdinaryName);
451 LookupParsedName(Lookup, curScope, nullptr, true);
453 if (Lookup.empty()) {
459 VarDecl *VD = Lookup.getAsSingle<VarDecl>();
  /external/harfbuzz_ng/src/
main.cc 157 printf (" %d lookup(s) found in feature\n", num_lookups);
159 printf (" Lookup index %2d of %2d: %d\n", n_lookup, num_lookups,
165 printf (" %d lookup(s) found in table\n", num_lookups);
167 const Lookup &lookup = g.get_lookup (n_lookup); local
168 printf (" Lookup %2d of %2d: type %d, props 0x%04X\n", n_lookup, num_lookups,
169 lookup.get_type(), lookup.get_props());
hb-ot-layout-gsub-table.hh 494 /* Note: This breaks badly if two features enabled this lookup together. */
993 * calls us through a Context lookup. */
    [all...]
  /external/libchrome/base/trace_event/
trace_event_synthetic_delay_unittest.cc 36 TraceEventSyntheticDelay* delay = TraceEventSyntheticDelay::Lookup(name);
  /external/pdfium/core/include/fxcrt/
fx_xml.h 22 const CFX_WideString* Lookup(const CFX_ByteStringC& space,
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DataMatrixDetector.cpp 117 if (!pointCount.Lookup(pointA, value)) {
119 } else if (!pointCount.Lookup(pointB, value)) {
121 } else if (!pointCount.Lookup(pointC, value)) {
309 if (table.Lookup(key, value)) {
  /external/v8/src/ast/
scopeinfo.h 21 // Lookup context slot index for (data, name).
23 int Lookup(Object* data, String* name, VariableMode* mode,
  /external/v8/src/
bootstrapper.h 30 bool Lookup(Vector<const char> name, Handle<SharedFunctionInfo>* handle) {
contexts.cc 40 bool ScriptContextTable::Lookup(Handle<ScriptContextTable> table,
222 Handle<Object> Context::Lookup(Handle<String> name,
237 PrintF("Context::Lookup(");
265 if (ScriptContextTable::Lookup(script_contexts, name, &r)) {
282 // to only do a local lookup for context extension objects.
391 Handle<Object> result = Context::cast(obj)->Lookup(
dateparser.cc 153 int DateParser::KeywordTable::Lookup(const uint32_t* pre, int len) {
handles-inl.h 118 return canonical ? canonical->Lookup(value) : CreateHandle(isolate, value);
effects.h 81 Effect Lookup(Var var) {
88 Effect effect = Lookup(var);
  /external/v8/src/compiler/
liveness-analyzer.h 84 void Lookup(int var) { entries_.push_back(Entry(Entry::kLookup, var)); }
  /external/v8/test/cctest/compiler/
test-loop-assignment-analysis.cc 52 i::Variable* var = scope->Lookup(name);
  /external/v8/test/cctest/
test-hashmap.cc 65 map_.Lookup(reinterpret_cast<void*>(x), hash_(x));
  /external/webrtc/webrtc/base/
flags.h 202 // Lookup a flag by name. Returns the matching flag or NULL.
203 static Flag* Lookup(const char* name);
  /external/webrtc/webrtc/examples/peerconnection/server/
main.cc 101 ChannelMember* member = clients.Lookup(s);
  /external/v8/test/mjsunit/compiler/
variables.js 62 // Lookup slots. 'With' forces x to be looked up at runtime.
  /external/v8/test/mjsunit/regress/
regress-crbug-323942.js 50 // Lookup of o.f during graph creation fails.
  /external/v8/src/runtime/
runtime-scopes.cc 49 ScriptContextTable::LookupResult lookup; local
50 if (ScriptContextTable::Lookup(script_contexts, name, &lookup) &&
51 IsLexicalVariableMode(lookup.mode)) {
59 // Do the lookup own properties only, see ES5 erratum.
183 // Lookup the property as own on the global object.
234 context_arg->Lookup(name, LEXICAL_TEST, &index, &attributes, &binding_flags);
245 Handle<Object> holder = context->Lookup(name, DONT_FOLLOW_CHAINS, &index,
609 ScriptContextTable::LookupResult lookup; local
610 if (ScriptContextTable::Lookup(script_context, name, &lookup))
    [all...]
  /prebuilts/tools/common/netbeans-visual/
org-openide-util.jar 
  /external/fonttools/Lib/fontTools/
subset.py 585 lookup = s.table.LookupList.Lookup[ll.LookupListIndex]
586 chaos = chaos or lookup.may_have_non_1to1()
587 lookup.closure_glyphs(s, cur_glyphs=pos_glyphs)
612 lookup = s.table.LookupList.Lookup[ll.LookupListIndex]
613 chaos = chaos or lookup.may_have_non_1to1()
614 lookup.closure_glyphs(s, cur_glyphs=pos_glyphs)
630 lookup = s.table.LookupList.Lookup[ll.LookupListIndex
    [all...]
  /external/llvm/lib/DebugInfo/PDB/
PDBExtras.cpp 270 static const char *Lookup = "0123456789ABCDEF";
279 OS << Lookup[HighNibble] << Lookup[LowNibble];

Completed in 616 milliseconds

1 23 4 5 6 7 8 910