Searched defs:apply (Results 276 - 298 of 298) sorted by relevance

<<1112

/external/harfbuzz_ng/src/
H A Dhb-ot-layout-gpos-table.hh387 inline bool apply (hb_apply_context_t *c, function in struct:OT::MarkArray
439 inline bool apply (hb_apply_context_t *c) const function in struct:OT::SinglePosFormat1
484 inline bool apply (hb_apply_context_t *c) const function in struct:OT::SinglePosFormat2
586 inline bool apply (hb_apply_context_t *c, function in struct:OT::PairSet
659 inline bool apply (hb_apply_context_t *c) const function in struct:OT::PairPosFormat1
670 return TRACE_RETURN ((this+pairSet[index]).apply (c, &valueFormat1, skippy_iter.idx));
731 inline bool apply (hb_apply_context_t *c) const function in struct:OT::PairPosFormat2
877 inline bool apply (hb_apply_context_t *c) const function in struct:OT::CursivePosFormat1
1025 inline bool apply (hb_apply_context_t *c) const function in struct:OT::MarkBasePosFormat1
1047 return TRACE_RETURN ((this+markArray).apply (
1129 inline bool apply (hb_apply_context_t *c) const function in struct:OT::MarkLigPosFormat1
1245 inline bool apply (hb_apply_context_t *c) const function in struct:OT::MarkMarkPosFormat1
[all...]
H A Dhb-ot-layout-gsubgpos-private.hh244 inline return_t dispatch (const T &obj) { return obj.apply (this); }
908 USHORT lookupListIndex; /* Lookup to apply to that
1126 inline bool apply (hb_apply_context_t *c, ContextApplyLookupContext &lookup_context) const function in struct:OT::Rule
1186 inline bool apply (hb_apply_context_t *c, ContextApplyLookupContext &lookup_context) const function in struct:OT::RuleSet
1192 if ((this+rule[i]).apply (c, lookup_context))
1265 inline bool apply (hb_apply_context_t *c) const function in struct:OT::ContextFormat1
1277 return TRACE_RETURN (rule_set.apply (c, lookup_context));
1356 inline bool apply (hb_apply_context_t *c) const function in struct:OT::ContextFormat2
1369 return TRACE_RETURN (rule_set.apply (c, lookup_context));
1446 inline bool apply (hb_apply_context_ function in struct:OT::ContextFormat3
1677 inline bool apply (hb_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const function in struct:OT::ChainRule
1748 inline bool apply (hb_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const function in struct:OT::ChainRuleSet
1824 inline bool apply (hb_apply_context_t *c) const function in struct:OT::ChainContextFormat1
1927 inline bool apply (hb_apply_context_t *c) const function in struct:OT::ChainContextFormat2
2048 inline bool apply (hb_apply_context_t *c) const function in struct:OT::ChainContextFormat3
[all...]
/external/llvm/include/llvm/Support/
H A DCommandLine.h289 void apply(Option &O) const { O.setDescription(Desc); } function in struct:llvm::cl::desc
297 void apply(Option &O) const { O.setValueStr(Desc); } function in struct:llvm::cl::value_desc
310 void apply(Opt &O) const { O.setInitialValue(Init); } function in struct:llvm::cl::initializer
329 void apply(Opt &O) const { O.setLocation(O, Loc); } function in struct:llvm::cl::LocationClass
342 void apply(Opt &O) const { O.setCategory(Category); } function in struct:llvm::cl::cat
499 void apply(Opt &O) const { function in class:llvm::cl::ValuesClass
997 // not correctly respond to the apply method). Because the syntax to use this
998 // is a pain, we have the 'apply' method below to handle the nastiness...
1002 static void opt(const Mod &M, Opt &O) { M.apply(O); }
1037 // apply metho
1039 void apply(const Mod &M, Opt *O) { function in namespace:llvm::cl
1436 void apply(list<D, S, P> &L) const { L.setNumAdditionalVals(AdditionalVals); } function in struct:llvm::cl::multi_val
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-layout-gsubgpos-private.hh244 inline return_t dispatch (const T &obj) { return obj.apply (this); }
908 USHORT lookupListIndex; /* Lookup to apply to that
1126 inline bool apply (hb_apply_context_t *c, ContextApplyLookupContext &lookup_context) const function in struct:OT::Rule
1186 inline bool apply (hb_apply_context_t *c, ContextApplyLookupContext &lookup_context) const function in struct:OT::RuleSet
1192 if ((this+rule[i]).apply (c, lookup_context))
1265 inline bool apply (hb_apply_context_t *c) const function in struct:OT::ContextFormat1
1277 return TRACE_RETURN (rule_set.apply (c, lookup_context));
1356 inline bool apply (hb_apply_context_t *c) const function in struct:OT::ContextFormat2
1369 return TRACE_RETURN (rule_set.apply (c, lookup_context));
1446 inline bool apply (hb_apply_context_ function in struct:OT::ContextFormat3
1677 inline bool apply (hb_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const function in struct:OT::ChainRule
1748 inline bool apply (hb_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const function in struct:OT::ChainRuleSet
1824 inline bool apply (hb_apply_context_t *c) const function in struct:OT::ChainContextFormat1
1927 inline bool apply (hb_apply_context_t *c) const function in struct:OT::ChainContextFormat2
2048 inline bool apply (hb_apply_context_t *c) const function in struct:OT::ChainContextFormat3
[all...]
/external/chromium_org/v8/src/
H A Dbootstrapper.cc1934 // Install Function.prototype.call and apply.
1942 // Install the call and the apply functions.
1948 Handle<JSFunction> apply = local
1949 InstallFunction(proto, "apply", JS_OBJECT_TYPE, JSObject::kHeaderSize,
1960 // Set the expected parameters for apply to 2; required by builtin.
1961 apply->shared()->set_formal_parameter_count(2);
1965 apply->shared()->set_length(2);
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java4727 public final V apply(K key) { method in class:LocalCache.LoadingSerializationProxy
4728 return autoDelegate.apply(key);
4840 public final V apply(K key) { method in class:LocalCache.LocalManualCache
/external/v8/src/
H A Dbootstrapper.cc1683 // Install Function.prototype.call and apply.
1690 // Install the call and the apply functions.
1696 Handle<JSFunction> apply = local
1697 InstallFunction(proto, "apply", JS_OBJECT_TYPE, JSObject::kHeaderSize,
1708 // Set the expected parameters for apply to 2; required by builtin.
1709 apply->shared()->set_formal_parameter_count(2);
1713 apply->shared()->set_length(2);
/external/droiddriver/libs/
H A Dguava-13.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/hash/ ...
/external/llvm/lib/CodeGen/
H A DMachineScheduler.cpp606 Mutations[i]->apply(this);
796 virtual void apply(ScheduleDAGMI *DAG);
856 void LoadClusterMutation::apply(ScheduleDAGMI *DAG) { function in class:LoadClusterMutation
899 virtual void apply(ScheduleDAGMI *DAG);
905 void MacroFusion::apply(ScheduleDAGMI *DAG) { function in class:MacroFusion
948 virtual void apply(ScheduleDAGMI *DAG);
1098 void CopyConstrain::apply(ScheduleDAGMI *DAG) { function in class:CopyConstrain
1174 // Set of reasons that apply to multiple candidates.
1638 // Now that potential stalls have been considered, apply preemptive heuristics
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/guava/guava-tests/lib/
H A Dlibtruth.jar ... public org.junit.runners.model.Statement apply (org.junit.runners.model.Statement, org ...
/external/robolectric/lib/main/
H A Djunit-dep-4.8.2.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
H A Dcommons-codec-1.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.filebuffers_3.5.100.v20100520-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 591 milliseconds

<<1112